Merge branch 'mainstream'
[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 if INCLUDE_PYTHON_COMPAT
31 run_python = PYTHONPATH=$(top_srcdir)/python:$(top_srcdir)/python/compat:$$PYTHONPATH
32 else
33 run_python = PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH
34 endif
35 run_python += PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
36
37
38 ALL_LOCAL =
39 BUILT_SOURCES =
40 CLEANFILES =
41 CLEAN_LOCAL =
42 DISTCLEANFILES =
43 PYCOV_CLEAN_FILES = build-aux/check-structs,cover
44 EXTRA_DIST = \
45         CodingStyle \
46         DESIGN \
47         FAQ \
48         INSTALL \
49         INSTALL.Debian \
50         INSTALL.Fedora \
51         INSTALL.KVM \
52         INSTALL.Libvirt \
53         INSTALL.RHEL \
54         INSTALL.SSL \
55         INSTALL.XenServer \
56         INSTALL.userspace \
57         IntegrationGuide \
58         NOTICE \
59         OPENFLOW-1.1+ \
60         PORTING \
61         README-OFTest \
62         README-gcov \
63         README-lisp \
64         REPORTING-BUGS \
65         SubmittingPatches \
66         WHY-OVS \
67         boot.sh \
68         build-aux/sodepends.pl \
69         build-aux/soexpand.pl \
70         $(MAN_FRAGMENTS) \
71         $(MAN_ROOTS)
72 bin_PROGRAMS =
73 sbin_PROGRAMS =
74 bin_SCRIPTS =
75 DIST_HOOKS =
76 dist_man_MANS =
77 dist_pkgdata_DATA =
78 dist_pkgdata_SCRIPTS =
79 dist_sbin_SCRIPTS =
80 dist_scripts_SCRIPTS =
81 dist_scripts_DATA =
82 INSTALL_DATA_LOCAL =
83 UNINSTALL_LOCAL =
84 man_MANS =
85 MAN_FRAGMENTS =
86 MAN_ROOTS =
87 noinst_DATA =
88 noinst_HEADERS =
89 noinst_LIBRARIES =
90 noinst_man_MANS =
91 noinst_PROGRAMS =
92 noinst_SCRIPTS =
93 OVSIDL_BUILT =
94 pkgdata_DATA =
95 sbin_SCRIPTS =
96 scripts_SCRIPTS =
97 scripts_DATA =
98 SUFFIXES =
99 check_DATA =
100
101 scriptsdir = $(pkgdatadir)/scripts
102
103 # This ensures that files added to EXTRA_DIST are always distributed,
104 # even if they are inside an Automake if...endif conditional block that is
105 # disabled by some particular "configure" run.  For more information, see:
106 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
107 noinst_HEADERS += $(EXTRA_DIST)
108
109 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
110 ro_shell = printf '\043 Generated automatically -- do not modify!    -*- buffer-read-only: t -*-\n'
111
112 SUFFIXES += .in
113 .in:
114         @mkdir -p $$(dirname $@)
115         $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
116             sed \
117                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
118                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
119                 -e 's,[@]DBDIR[@],$(DBDIR),g' \
120                 -e 's,[@]PERL[@],$(PERL),g' \
121                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
122                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
123                 -e 's,[@]VERSION[@],$(VERSION),g' \
124                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
125                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
126                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
127                 -e 's,[@]bindir[@],$(bindir),g' \
128                 -e 's,[@]sbindir[@],$(sbindir),g' \
129                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
130                 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
131             > $@.tmp
132         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
133             echo chmod +x $@.tmp; \
134             chmod +x $@.tmp; \
135         fi
136         mv $@.tmp $@
137
138 .PHONY: clean-pycov
139 clean-pycov:
140         cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
141 CLEAN_LOCAL += clean-pycov
142
143 # If we're checked out from a Git repository, make sure that every
144 # file that is in Git is distributed.
145 #
146 # We only enable this check when GNU make is in use because the
147 # Makefile in datapath/linux, needed to get the list of files to
148 # distribute, requires GNU make extensions.
149 if GNU_MAKE
150 ALL_LOCAL += dist-hook-git
151 dist-hook-git: distfiles
152         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
153           (cd datapath && $(MAKE) distfiles);                               \
154           (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) |        \
155             sort -u > all-distfiles;                                        \
156           (cd $(srcdir) && git ls-files) | grep -vFf $(srcdir)/.non-distfiles |     \
157             sort -u > all-gitfiles;                                         \
158           comm -1 -3 all-distfiles all-gitfiles > missing-distfiles;        \
159           if test -s missing-distfiles; then                                \
160             echo "The distribution is missing the following files:";        \
161             cat missing-distfiles;                                          \
162             exit 1;                                                         \
163           fi;                                                               \
164         fi
165 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
166 # The following is based on commands for the Automake "distdir" target.
167 distfiles: Makefile
168         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
169         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
170         list='$(DISTFILES)'; \
171         for file in $$list; do echo $$file; done | \
172           sed -e "s|^$$srcdirstrip/||;t" \
173               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
174 CLEANFILES += distfiles
175 endif
176 .PHONY: dist-hook-git
177
178 # Check that every .c file includes <config.h>.
179 ALL_LOCAL += config-h-check
180 config-h-check:
181         @cd $(srcdir); \
182         if test -e .git && (git --version) >/dev/null 2>&1 && \
183            git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
184                grep -vE '^datapath|^lib/sflow|^third-party'`; \
185         then \
186             echo "See above for list of violations of the rule that"; \
187             echo "every C source file must #include <config.h>."; \
188             exit 1; \
189         fi
190 .PHONY: config-h-check
191
192 # Check that certain data structures are always declared "static".
193 ALL_LOCAL += static-check
194 static-check:
195         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
196             git --no-pager grep -n -E '^[       ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
197          then \
198             echo "See above for list of violations of the rule that "; \
199             echo "certain data structures must always be 'static'"; \
200             exit 1; \
201          fi
202 .PHONY: static-check
203
204 # Check that assert.h is not used outside a whitelist of files.
205 ALL_LOCAL += check-assert-h-usage
206 check-assert-h-usage:
207         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
208             (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
209             $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
210          then \
211             echo "Files listed above unexpectedly #include <""assert.h"">."; \
212             echo "Please use ovs_assert (from util.h) instead of assert."; \
213             exit 1; \
214          fi
215 .PHONY: check-assert-h-usage
216
217 ALL_LOCAL += thread-safety-check
218 thread-safety-check:
219         @if test -e '$(srcdir)'/.git && (git --version) >/dev/null 2>&1 && \
220            grep -n -f '$(srcdir)'/build-aux/thread-safety-blacklist \
221                `git ls-files '$(srcdir)' | grep '\.[ch]$$' \
222                 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` \
223                | $(EGREP) -v ':[        ]*/?\*'; \
224         then \
225             echo "See above for list of calls to functions that are"; \
226             echo "blacklisted due to thread safety issues"; \
227             exit 1; \
228         fi
229 EXTRA_DIST += build-aux/thread-safety-blacklist
230
231 if HAVE_GROFF
232 ALL_LOCAL += manpage-check
233 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
234         @error=false; \
235         for manpage in $?; do \
236                 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; \
237                 if grep warning: $@.tmp; then error=:; fi; \
238                 rm -f $@.tmp; \
239         done; \
240         if $$error; then exit 1; else echo touch $@; touch $@; fi
241 CLEANFILES += manpage-check
242 endif
243
244 include $(srcdir)/manpages.mk
245 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
246         @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
247         @if cmp -s $(@F).tmp $@; then \
248                 touch $@; \
249                 rm -f $(@F).tmp; \
250         else \
251                 mv $(@F).tmp $@; \
252         fi
253 CLEANFILES += manpage-dep-check
254
255 dist-hook: $(DIST_HOOKS)
256 all-local: $(ALL_LOCAL)
257 clean-local: $(CLEAN_LOCAL)
258 install-data-local: $(INSTALL_DATA_LOCAL)
259 uninstall-local: $(UNINSTALL_LOCAL)
260 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
261
262 modules_install:
263 if LINUX_ENABLED
264         cd datapath/linux && $(MAKE) modules_install
265 endif
266
267 include lib/automake.mk
268 include ofproto/automake.mk
269 include utilities/automake.mk
270 include tests/automake.mk
271 include include/automake.mk
272 include third-party/automake.mk
273 include debian/automake.mk
274 include vswitchd/automake.mk
275 include ovsdb/automake.mk
276 include rhel/automake.mk
277 include xenserver/automake.mk
278 include python/automake.mk
279 include python/compat/automake.mk
280 include planetlab/automake.mk
281 include tutorial/automake.mk
282 include vtep/automake.mk