]> git.proxmox.com Git - mirror_ovs.git/blame - Makefile.am
Remove useless use of <assert.h>.
[mirror_ovs.git] / Makefile.am
CommitLineData
e0edde6f 1# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Nicira, Inc.
a14bc59f
BP
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
064af421
BP
8AUTOMAKE_OPTIONS = foreign subdir-objects
9ACLOCAL_AMFLAGS = -I m4
10SUBDIRS = datapath
11
064af421 12AM_CPPFLAGS = $(SSL_CFLAGS)
064af421
BP
13AM_CPPFLAGS += -I $(top_srcdir)/include
14AM_CPPFLAGS += -I $(top_srcdir)/lib
611d30ce 15AM_CPPFLAGS += -I $(top_builddir)/lib
064af421
BP
16
17AM_CFLAGS = -Wstrict-prototypes
d161c099 18AM_CFLAGS += $(WARNING_FLAGS)
064af421
BP
19
20if NDEBUG
21AM_CPPFLAGS += -DNDEBUG
22AM_CFLAGS += -fomit-frame-pointer
064af421
BP
23endif
24
853d1083
BP
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.
30run_python = \
31 PYTHONDONTWRITEBYTECODE=yes \
32 PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH \
33 $(PYTHON)
34
22c79496 35ALL_LOCAL =
d879a707 36BUILT_SOURCES =
064af421 37CLEANFILES =
15b619e2 38CLEAN_LOCAL =
064af421 39DISTCLEANFILES =
79982e90 40PYCOV_CLEAN_FILES = build-aux/check-structs,cover
4cdb08c0
BP
41EXTRA_DIST = \
42 CodingStyle \
d31f1109 43 DESIGN \
c483d489 44 FAQ \
f6eb6b20 45 INSTALL \
6494ea4c 46 INSTALL.Debian \
6dcf2bc3 47 INSTALL.Fedora \
6cdd6a87 48 INSTALL.KVM \
8a984481 49 INSTALL.Libvirt \
c434706a 50 INSTALL.RHEL \
c2d1694f 51 INSTALL.SSL \
9678a9b6 52 INSTALL.XenServer \
4cdb08c0 53 INSTALL.userspace \
98f61d42 54 IntegrationGuide \
4cdb08c0 55 NOTICE \
bea97716 56 OPENFLOW-1.1+ \
bc34d060 57 PORTING \
4cdb08c0
BP
58 README-gcov \
59 REPORTING-BUGS \
60 SubmittingPatches \
3c34dd48 61 WHY-OVS \
0027492d 62 boot.sh \
6ca37677 63 build-aux/sodepends.pl \
94512c4a 64 build-aux/soexpand.pl \
6ca37677
BP
65 $(MAN_FRAGMENTS) \
66 $(MAN_ROOTS)
064af421
BP
67bin_PROGRAMS =
68sbin_PROGRAMS =
69bin_SCRIPTS =
87103e1f 70DIST_HOOKS =
064af421 71dist_man_MANS =
3b12adda 72dist_pkgdata_DATA =
064af421
BP
73dist_pkgdata_SCRIPTS =
74dist_sbin_SCRIPTS =
b2df0225 75dist_scripts_SCRIPTS =
429ebf21 76dist_scripts_DATA =
b2df0225 77INSTALL_DATA_LOCAL =
44852fdf 78UNINSTALL_LOCAL =
064af421 79man_MANS =
0027492d 80MAN_FRAGMENTS =
6ca37677 81MAN_ROOTS =
c3bb4bd7 82noinst_DATA =
064af421
BP
83noinst_HEADERS =
84noinst_LIBRARIES =
045b2e5c 85noinst_man_MANS =
064af421
BP
86noinst_PROGRAMS =
87noinst_SCRIPTS =
00732bf5 88OVSIDL_BUILT =
9c16ed64 89pkgdata_DATA =
b2df0225 90sbin_SCRIPTS =
43bb5f82 91scripts_SCRIPTS =
429ebf21 92scripts_DATA =
c3bb4bd7 93SUFFIXES =
15b619e2 94check_DATA =
064af421 95
43bb5f82
BP
96scriptsdir = $(pkgdatadir)/scripts
97
9741af79
BP
98# This ensures that files added to EXTRA_DIST are always distributed,
99# even if they are inside an Automake if...endif conditional block that is
100# disabled by some particular "configure" run. For more information, see:
101# http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
102noinst_HEADERS += $(EXTRA_DIST)
103
064af421 104ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
cbaa4ffe 105ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
064af421 106
c3bb4bd7 107SUFFIXES += .in
064af421 108.in:
94512c4a 109 $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
3b135da3 110 sed \
064af421 111 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3 112 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
f973f2af 113 -e 's,[@]DBDIR[@],$(DBDIR),g' \
3b135da3
BP
114 -e 's,[@]PERL[@],$(PERL),g' \
115 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 116 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3
BP
117 -e 's,[@]VERSION[@],$(VERSION),g' \
118 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 119 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 120 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
43bb5f82
BP
121 -e 's,[@]bindir[@],$(bindir),g' \
122 -e 's,[@]sbindir[@],$(sbindir),g' \
d879a707 123 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
436f27dd 124 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
3b135da3 125 > $@.tmp
00961f7c 126 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
3b135da3
BP
127 echo chmod +x $@.tmp; \
128 chmod +x $@.tmp; \
129 fi
130 mv $@.tmp $@
064af421 131
79982e90
EJ
132.PHONY: clean-pycov
133clean-pycov:
134 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
135CLEAN_LOCAL += clean-pycov
136
87103e1f
BP
137# If we're checked out from a Git repository, make sure that every
138# file that is in Git is distributed.
b4e1bf8b
BP
139#
140# We only enable this check when GNU make is in use because the
141# Makefile in datapath/linux, needed to get the list of files to
142# distribute, requires GNU make extensions.
143if GNU_MAKE
39376d06
BP
144ALL_LOCAL += dist-hook-git
145dist-hook-git: distfiles
146 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
147 (cd datapath && $(MAKE) distfiles); \
148 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
149 sort -u > all-distfiles; \
150 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
151 sort -u > all-gitfiles; \
152 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
153 if test -s missing-distfiles; then \
154 echo "The distribution is missing the following files:"; \
155 cat missing-distfiles; \
156 exit 1; \
157 fi; \
87103e1f 158 fi
39376d06
BP
159CLEANFILES += all-distfiles all-gitfiles missing-distfiles
160# The following is based on commands for the Automake "distdir" target.
161distfiles: Makefile
162 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
163 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
164 list='$(DISTFILES)'; \
165 for file in $$list; do echo $$file; done | \
166 sed -e "s|^$$srcdirstrip/||;t" \
167 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
168CLEANFILES += distfiles
b4e1bf8b
BP
169endif
170.PHONY: dist-hook-git
87103e1f 171
9e4ba008
BP
172# Check that every .c file includes <config.h>.
173ALL_LOCAL += config-h-check
174config-h-check:
175 @cd $(srcdir); \
176 if test -e .git && (git --version) >/dev/null 2>&1 && \
b411e5c3 177 git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
fedbc4d6 178 grep -vE '^datapath|^lib/sflow|^third-party'`; \
9e4ba008
BP
179 then \
180 echo "See above for list of violations of the rule that"; \
181 echo "every C source file must #include <config.h>."; \
182 exit 1; \
183 fi
184.PHONY: config-h-check
185
db5ce514
BP
186# Check that "struct vlog_ratelimit" is always declared "static".
187ALL_LOCAL += rate-limit-check
188rate-limit-check:
189 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
190 git --no-pager grep -n -E '^[ ]+struct vlog_rate_limit.*=' $(srcdir); \
191 then \
192 echo "See above for list of violations of the rule that "; \
193 echo "'struct vlog_rate_limit' must always be 'static'"; \
194 exit 1; \
195 fi
8f348551 196.PHONY: rate-limit-check
db5ce514 197
0027492d
BP
198if HAVE_GROFF
199ALL_LOCAL += manpage-check
1261619f
BP
200manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
201 @error=false; \
202 for manpage in $?; do \
186ef5c1 203 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; \
1261619f
BP
204 if grep warning: $@.tmp; then error=:; fi; \
205 rm -f $@.tmp; \
0027492d 206 done; \
1261619f 207 if $$error; then exit 1; else echo touch $@; touch $@; fi
0027492d
BP
208CLEANFILES += manpage-check
209endif
210
6ca37677
BP
211include $(srcdir)/manpages.mk
212$(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
213 @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
214 @if cmp -s $(@F).tmp $@; then \
215 touch $@; \
216 rm -f $(@F).tmp; \
217 else \
218 mv $(@F).tmp $@; \
219 fi
220CLEANFILES += manpage-dep-check
221
87103e1f 222dist-hook: $(DIST_HOOKS)
22c79496 223all-local: $(ALL_LOCAL)
15b619e2 224clean-local: $(CLEAN_LOCAL)
b2df0225 225install-data-local: $(INSTALL_DATA_LOCAL)
44852fdf
BP
226uninstall-local: $(UNINSTALL_LOCAL)
227.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
87103e1f 228
3a14d239
BP
229modules_install:
230if LINUX_ENABLED
231 cd datapath/linux && $(MAKE) modules_install
232endif
233
064af421 234include lib/automake.mk
8cd4882f 235include ofproto/automake.mk
064af421
BP
236include utilities/automake.mk
237include tests/automake.mk
238include include/automake.mk
239include third-party/automake.mk
240include debian/automake.mk
241include vswitchd/automake.mk
f85f8ebb 242include ovsdb/automake.mk
c434706a 243include rhel/automake.mk
064af421 244include xenserver/automake.mk
0be6140a 245include python/automake.mk
6c88547d 246include python/compat/automake.mk