1 # Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
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.
8 AUTOMAKE_OPTIONS = foreign subdir-objects
9 ACLOCAL_AMFLAGS = -I m4
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
17 AM_CFLAGS = -Wstrict-prototypes
18 AM_CFLAGS += $(WARNING_FLAGS)
21 AM_CPPFLAGS += -DNDEBUG
22 AM_CFLAGS += -fomit-frame-pointer
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
33 run_python = PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH
35 run_python += PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
43 PYCOV_CLEAN_FILES = build-aux/check-structs,cover
68 build-aux/sodepends.pl \
69 build-aux/soexpand.pl \
78 dist_pkgdata_SCRIPTS =
80 dist_scripts_SCRIPTS =
101 scriptsdir = $(pkgdatadir)/scripts
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)
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'
114 $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
116 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
117 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
118 -e 's,[@]DBDIR[@],$(DBDIR),g' \
119 -e 's,[@]PERL[@],$(PERL),g' \
120 -e 's,[@]PYTHON[@],$(PYTHON),g' \
121 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
122 -e 's,[@]VERSION[@],$(VERSION),g' \
123 -e 's,[@]localstatedir[@],$(localstatedir),g' \
124 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
125 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
126 -e 's,[@]bindir[@],$(bindir),g' \
127 -e 's,[@]sbindir[@],$(sbindir),g' \
128 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
129 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
131 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
132 echo chmod +x $@.tmp; \
139 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
140 CLEAN_LOCAL += clean-pycov
142 # If we're checked out from a Git repository, make sure that every
143 # file that is in Git is distributed.
145 # We only enable this check when GNU make is in use because the
146 # Makefile in datapath/linux, needed to get the list of files to
147 # distribute, requires GNU make extensions.
149 ALL_LOCAL += dist-hook-git
150 dist-hook-git: distfiles
151 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
152 (cd datapath && $(MAKE) distfiles); \
153 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
154 sort -u > all-distfiles; \
155 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
156 sort -u > all-gitfiles; \
157 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
158 if test -s missing-distfiles; then \
159 echo "The distribution is missing the following files:"; \
160 cat missing-distfiles; \
164 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
165 # The following is based on commands for the Automake "distdir" target.
167 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
168 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
169 list='$(DISTFILES)'; \
170 for file in $$list; do echo $$file; done | \
171 sed -e "s|^$$srcdirstrip/||;t" \
172 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
173 CLEANFILES += distfiles
175 .PHONY: dist-hook-git
177 # Check that every .c file includes <config.h>.
178 ALL_LOCAL += config-h-check
181 if test -e .git && (git --version) >/dev/null 2>&1 && \
182 git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
183 grep -vE '^datapath|^lib/sflow|^third-party'`; \
185 echo "See above for list of violations of the rule that"; \
186 echo "every C source file must #include <config.h>."; \
189 .PHONY: config-h-check
191 # Check that certain data structures are always declared "static".
192 ALL_LOCAL += static-check
194 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
195 git --no-pager grep -n -E '^[ ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
197 echo "See above for list of violations of the rule that "; \
198 echo "certain data structures must always be 'static'"; \
203 # Check that assert.h is not used outside a whitelist of files.
204 ALL_LOCAL += check-assert-h-usage
205 check-assert-h-usage:
206 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
207 (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
208 $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
210 echo "Files listed above unexpectedly #include <""assert.h"">."; \
211 echo "Please use ovs_assert (from util.h) instead of assert."; \
214 .PHONY: check-assert-h-usage
216 ALL_LOCAL += thread-safety-check
218 @if test -e '$(srcdir)'/.git && (git --version) >/dev/null 2>&1 && \
219 grep -n -f '$(srcdir)'/build-aux/thread-safety-blacklist \
220 `git ls-files '$(srcdir)' | grep '\.[ch]$$' \
221 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` \
222 | $(EGREP) -v ':[ ]*/?\*'; \
224 echo "See above for list of calls to functions that are"; \
225 echo "blacklisted due to thread safety issues"; \
228 EXTRA_DIST += build-aux/thread-safety-blacklist
231 ALL_LOCAL += manpage-check
232 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
234 for manpage in $?; do \
235 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; \
236 if grep warning: $@.tmp; then error=:; fi; \
239 if $$error; then exit 1; else echo touch $@; touch $@; fi
240 CLEANFILES += manpage-check
243 include $(srcdir)/manpages.mk
244 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
245 @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
246 @if cmp -s $(@F).tmp $@; then \
252 CLEANFILES += manpage-dep-check
254 dist-hook: $(DIST_HOOKS)
255 all-local: $(ALL_LOCAL)
256 clean-local: $(CLEAN_LOCAL)
257 install-data-local: $(INSTALL_DATA_LOCAL)
258 uninstall-local: $(UNINSTALL_LOCAL)
259 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
263 cd datapath/linux && $(MAKE) modules_install
266 include lib/automake.mk
267 include ofproto/automake.mk
268 include utilities/automake.mk
269 include tests/automake.mk
270 include include/automake.mk
271 include third-party/automake.mk
272 include debian/automake.mk
273 include vswitchd/automake.mk
274 include ovsdb/automake.mk
275 include rhel/automake.mk
276 include xenserver/automake.mk
277 include python/automake.mk
278 include python/compat/automake.mk
279 include tutorial/automake.mk
280 include vtep/automake.mk