Merge commit '10a89ef04df5669c5cdd02f786150a7ab8454e01'
[sliver-openvswitch.git] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
2 #
3 # Copying and distribution of this file, with or without modification,
4 # are permitted in any medium without royalty provided the copyright
5 # notice and this notice are preserved.  This file is offered as-is,
6 # without warranty of any kind.
7
8 AUTOMAKE_OPTIONS = foreign subdir-objects
9 ACLOCAL_AMFLAGS = -I m4
10 SUBDIRS = datapath
11
12 AM_CPPFLAGS = $(SSL_CFLAGS)
13 AM_CPPFLAGS += -I $(top_srcdir)/include
14 AM_CPPFLAGS += -I $(top_srcdir)/lib
15 AM_CPPFLAGS += -I $(top_builddir)/lib
16
17 AM_CFLAGS = -Wstrict-prototypes
18 AM_CFLAGS += $(WARNING_FLAGS)
19
20 if NDEBUG
21 AM_CPPFLAGS += -DNDEBUG
22 AM_CFLAGS += -fomit-frame-pointer
23 endif
24
25 # PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo
26 # files.  Creating .py[co] works OK for any given version of Open
27 # vSwitch, but it causes trouble if you switch from a version with
28 # foo/__init__.py into an (older) version with plain foo.py, since
29 # foo/__init__.pyc will cause Python to ignore foo.py.
30 run_python = \
31         PYTHONDONTWRITEBYTECODE=yes \
32         PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH \
33         $(PYTHON)
34
35 ALL_LOCAL =
36 BUILT_SOURCES =
37 CLEANFILES =
38 CLEAN_LOCAL =
39 DISTCLEANFILES =
40 PYCOV_CLEAN_FILES = build-aux/check-structs,cover
41 EXTRA_DIST = \
42         CodingStyle \
43         DESIGN \
44         FAQ \
45         INSTALL \
46         INSTALL.Debian \
47         INSTALL.Fedora \
48         INSTALL.KVM \
49         INSTALL.Libvirt \
50         INSTALL.RHEL \
51         INSTALL.SSL \
52         INSTALL.XenServer \
53         INSTALL.userspace \
54         IntegrationGuide \
55         NOTICE \
56         OPENFLOW-1.1+ \
57         PORTING \
58         README-OFTest \
59         README-gcov \
60         README-lisp \
61         REPORTING-BUGS \
62         SubmittingPatches \
63         WHY-OVS \
64         boot.sh \
65         build-aux/sodepends.pl \
66         build-aux/soexpand.pl \
67         $(MAN_FRAGMENTS) \
68         $(MAN_ROOTS)
69 bin_PROGRAMS =
70 sbin_PROGRAMS =
71 bin_SCRIPTS =
72 DIST_HOOKS =
73 dist_man_MANS =
74 dist_pkgdata_DATA =
75 dist_pkgdata_SCRIPTS =
76 dist_sbin_SCRIPTS =
77 dist_scripts_SCRIPTS =
78 dist_scripts_DATA =
79 INSTALL_DATA_LOCAL =
80 UNINSTALL_LOCAL =
81 man_MANS =
82 MAN_FRAGMENTS =
83 MAN_ROOTS =
84 noinst_DATA =
85 noinst_HEADERS =
86 noinst_LIBRARIES =
87 noinst_man_MANS =
88 noinst_PROGRAMS =
89 noinst_SCRIPTS =
90 OVSIDL_BUILT =
91 pkgdata_DATA =
92 sbin_SCRIPTS =
93 scripts_SCRIPTS =
94 scripts_DATA =
95 SUFFIXES =
96 check_DATA =
97
98 scriptsdir = $(pkgdatadir)/scripts
99
100 # This ensures that files added to EXTRA_DIST are always distributed,
101 # even if they are inside an Automake if...endif conditional block that is
102 # disabled by some particular "configure" run.  For more information, see:
103 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
104 noinst_HEADERS += $(EXTRA_DIST)
105
106 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
107 ro_shell = printf '\043 Generated automatically -- do not modify!    -*- buffer-read-only: t -*-\n'
108
109 SUFFIXES += .in
110 .in:
111         @mkdir -p $$(dirname $@)
112         $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
113             sed \
114                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
115                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
116                 -e 's,[@]DBDIR[@],$(DBDIR),g' \
117                 -e 's,[@]PERL[@],$(PERL),g' \
118                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
119                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
120                 -e 's,[@]VERSION[@],$(VERSION),g' \
121                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
122                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
123                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
124                 -e 's,[@]bindir[@],$(bindir),g' \
125                 -e 's,[@]sbindir[@],$(sbindir),g' \
126                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
127                 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
128             > $@.tmp
129         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
130             echo chmod +x $@.tmp; \
131             chmod +x $@.tmp; \
132         fi
133         mv $@.tmp $@
134
135 .PHONY: clean-pycov
136 clean-pycov:
137         cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
138 CLEAN_LOCAL += clean-pycov
139
140 # If we're checked out from a Git repository, make sure that every
141 # file that is in Git is distributed.
142 #
143 # We only enable this check when GNU make is in use because the
144 # Makefile in datapath/linux, needed to get the list of files to
145 # distribute, requires GNU make extensions.
146 if GNU_MAKE
147 ALL_LOCAL += dist-hook-git
148 dist-hook-git: distfiles
149         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
150           (cd datapath && $(MAKE) distfiles);                               \
151           (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) |        \
152             sort -u > all-distfiles;                                        \
153           (cd $(srcdir) && git ls-files) | grep -vFf $(srcdir)/.non-distfiles |     \
154             sort -u > all-gitfiles;                                         \
155           comm -1 -3 all-distfiles all-gitfiles > missing-distfiles;        \
156           if test -s missing-distfiles; then                                \
157             echo "The distribution is missing the following files:";        \
158             cat missing-distfiles;                                          \
159             exit 1;                                                         \
160           fi;                                                               \
161         fi
162 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
163 # The following is based on commands for the Automake "distdir" target.
164 distfiles: Makefile
165         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
166         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
167         list='$(DISTFILES)'; \
168         for file in $$list; do echo $$file; done | \
169           sed -e "s|^$$srcdirstrip/||;t" \
170               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
171 CLEANFILES += distfiles
172 endif
173 .PHONY: dist-hook-git
174
175 # Check that every .c file includes <config.h>.
176 ALL_LOCAL += config-h-check
177 config-h-check:
178         @cd $(srcdir); \
179         if test -e .git && (git --version) >/dev/null 2>&1 && \
180            git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
181                grep -vE '^datapath|^lib/sflow|^third-party'`; \
182         then \
183             echo "See above for list of violations of the rule that"; \
184             echo "every C source file must #include <config.h>."; \
185             exit 1; \
186         fi
187 .PHONY: config-h-check
188
189 # Check that certain data structures are always declared "static".
190 ALL_LOCAL += static-check
191 static-check:
192         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
193             git --no-pager grep -n -E '^[       ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
194          then \
195             echo "See above for list of violations of the rule that "; \
196             echo "certain data structures must always be 'static'"; \
197             exit 1; \
198          fi
199 .PHONY: static-check
200
201 # Check that assert.h is not used outside a whitelist of files.
202 ALL_LOCAL += check-assert-h-usage
203 check-assert-h-usage:
204         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
205             (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
206             $(EGREP) -v '^lib/(sflow_receiver|vlog|worker).c$$|^tests/'; \
207          then \
208             echo "Files listed above unexpectedly #include <""assert.h"">."; \
209             echo "Please use ovs_assert (from util.h) instead of assert."; \
210             exit 1; \
211          fi
212 .PHONY: check-assert-h-usage
213
214 if HAVE_GROFF
215 ALL_LOCAL += manpage-check
216 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
217         @error=false; \
218         for manpage in $?; do \
219                 LANG=en_US.UTF-8 groff -w mac -w delim -w escape -w input -w missing -w tab -T utf8 -man -p -z $$manpage >$@.tmp 2>&1; \
220                 if grep warning: $@.tmp; then error=:; fi; \
221                 rm -f $@.tmp; \
222         done; \
223         if $$error; then exit 1; else echo touch $@; touch $@; fi
224 CLEANFILES += manpage-check
225 endif
226
227 include $(srcdir)/manpages.mk
228 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
229         @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
230         @if cmp -s $(@F).tmp $@; then \
231                 touch $@; \
232                 rm -f $(@F).tmp; \
233         else \
234                 mv $(@F).tmp $@; \
235         fi
236 CLEANFILES += manpage-dep-check
237
238 dist-hook: $(DIST_HOOKS)
239 all-local: $(ALL_LOCAL)
240 clean-local: $(CLEAN_LOCAL)
241 install-data-local: $(INSTALL_DATA_LOCAL)
242 uninstall-local: $(UNINSTALL_LOCAL)
243 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
244
245 modules_install:
246 if LINUX_ENABLED
247         cd datapath/linux && $(MAKE) modules_install
248 endif
249
250 include lib/automake.mk
251 include ofproto/automake.mk
252 include utilities/automake.mk
253 include tests/automake.mk
254 include include/automake.mk
255 include third-party/automake.mk
256 include debian/automake.mk
257 include vswitchd/automake.mk
258 include ovsdb/automake.mk
259 include rhel/automake.mk
260 include xenserver/automake.mk
261 include python/automake.mk
262 include python/compat/automake.mk
263 include planetlab/automake.mk
264 include tutorial/automake.mk