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