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.
31 PYTHONDONTWRITEBYTECODE=yes \
32 PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH \
40 PYCOV_CLEAN_FILES = build-aux/check-structs,cover
65 build-aux/sodepends.pl \
66 build-aux/soexpand.pl \
75 dist_pkgdata_SCRIPTS =
77 dist_scripts_SCRIPTS =
98 scriptsdir = $(pkgdatadir)/scripts
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)
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'
111 $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
113 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
114 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
115 -e 's,[@]DBDIR[@],$(DBDIR),g' \
116 -e 's,[@]PERL[@],$(PERL),g' \
117 -e 's,[@]PYTHON[@],$(PYTHON),g' \
118 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
119 -e 's,[@]VERSION[@],$(VERSION),g' \
120 -e 's,[@]localstatedir[@],$(localstatedir),g' \
121 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
122 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
123 -e 's,[@]bindir[@],$(bindir),g' \
124 -e 's,[@]sbindir[@],$(sbindir),g' \
125 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
126 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
128 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
129 echo chmod +x $@.tmp; \
136 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
137 CLEAN_LOCAL += clean-pycov
139 # If we're checked out from a Git repository, make sure that every
140 # file that is in Git is distributed.
142 # We only enable this check when GNU make is in use because the
143 # Makefile in datapath/linux, needed to get the list of files to
144 # distribute, requires GNU make extensions.
146 ALL_LOCAL += dist-hook-git
147 dist-hook-git: distfiles
148 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
149 (cd datapath && $(MAKE) distfiles); \
150 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
151 sort -u > all-distfiles; \
152 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
153 sort -u > all-gitfiles; \
154 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
155 if test -s missing-distfiles; then \
156 echo "The distribution is missing the following files:"; \
157 cat missing-distfiles; \
161 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
162 # The following is based on commands for the Automake "distdir" target.
164 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
165 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
166 list='$(DISTFILES)'; \
167 for file in $$list; do echo $$file; done | \
168 sed -e "s|^$$srcdirstrip/||;t" \
169 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
170 CLEANFILES += distfiles
172 .PHONY: dist-hook-git
174 # Check that every .c file includes <config.h>.
175 ALL_LOCAL += config-h-check
178 if test -e .git && (git --version) >/dev/null 2>&1 && \
179 git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
180 grep -vE '^datapath|^lib/sflow|^third-party'`; \
182 echo "See above for list of violations of the rule that"; \
183 echo "every C source file must #include <config.h>."; \
186 .PHONY: config-h-check
188 # Check that certain data structures are always declared "static".
189 ALL_LOCAL += static-check
191 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
192 git --no-pager grep -n -E '^[ ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
194 echo "See above for list of violations of the rule that "; \
195 echo "certain data structures must always be 'static'"; \
200 # Check that assert.h is not used outside a whitelist of files.
201 ALL_LOCAL += check-assert-h-usage
202 check-assert-h-usage:
203 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
204 (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
205 $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
207 echo "Files listed above unexpectedly #include <""assert.h"">."; \
208 echo "Please use ovs_assert (from util.h) instead of assert."; \
211 .PHONY: check-assert-h-usage
213 ALL_LOCAL += thread-safety-check
215 @if test -e '$(srcdir)'/.git && (git --version) >/dev/null 2>&1 && \
216 grep -n -f '$(srcdir)'/build-aux/thread-safety-blacklist \
217 `git ls-files '$(srcdir)' | grep '\.[ch]$$' \
218 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` \
219 | $(EGREP) -v ':[ ]*/?\*'; \
221 echo "See above for list of calls to functions that are"; \
222 echo "blacklisted due to thread safety issues"; \
225 EXTRA_DIST += build-aux/thread-safety-blacklist
228 ALL_LOCAL += manpage-check
229 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
231 for manpage in $?; do \
232 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; \
233 if grep warning: $@.tmp; then error=:; fi; \
236 if $$error; then exit 1; else echo touch $@; touch $@; fi
237 CLEANFILES += manpage-check
240 include $(srcdir)/manpages.mk
241 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
242 @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
243 @if cmp -s $(@F).tmp $@; then \
249 CLEANFILES += manpage-dep-check
251 dist-hook: $(DIST_HOOKS)
252 all-local: $(ALL_LOCAL)
253 clean-local: $(CLEAN_LOCAL)
254 install-data-local: $(INSTALL_DATA_LOCAL)
255 uninstall-local: $(UNINSTALL_LOCAL)
256 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
260 cd datapath/linux && $(MAKE) modules_install
263 include lib/automake.mk
264 include ofproto/automake.mk
265 include utilities/automake.mk
266 include tests/automake.mk
267 include include/automake.mk
268 include third-party/automake.mk
269 include debian/automake.mk
270 include vswitchd/automake.mk
271 include ovsdb/automake.mk
272 include rhel/automake.mk
273 include xenserver/automake.mk
274 include python/automake.mk
275 include python/compat/automake.mk
276 include tutorial/automake.mk