]> git.proxmox.com Git - mirror_ovs.git/blame - Makefile.am
include: Install openflow/ and openvswitch/ headers.
[mirror_ovs.git] / Makefile.am
CommitLineData
7868fbc6 1# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 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)
cf06c2e9 13AM_LDFLAGS = $(SSL_LDFLAGS)
95626395 14AM_LDFLAGS += $(OVS_LDFLAGS)
e42dfc72
AS
15
16if WIN32
17AM_CPPFLAGS += -I $(top_srcdir)/include/windows
c803536e 18AM_CPPFLAGS += -I $(top_srcdir)/datapath-windows/include
94887cf4 19AM_CPPFLAGS += $(PTHREAD_INCLUDES)
b0e1bce5 20AM_CPPFLAGS += $(MSVC_CFLAGS)
94887cf4 21AM_LDFLAGS += $(PTHREAD_LDFLAGS)
e42dfc72
AS
22endif
23
064af421 24AM_CPPFLAGS += -I $(top_srcdir)/include
837eefc7 25AM_CPPFLAGS += -I $(top_builddir)/include
064af421 26AM_CPPFLAGS += -I $(top_srcdir)/lib
611d30ce 27AM_CPPFLAGS += -I $(top_builddir)/lib
064af421 28
8605a29b
PK
29AM_CPPFLAGS += $(SSL_INCLUDES)
30
064af421 31AM_CFLAGS = -Wstrict-prototypes
d161c099 32AM_CFLAGS += $(WARNING_FLAGS)
95626395 33AM_CFLAGS += $(OVS_CFLAGS)
064af421
BP
34
35if NDEBUG
36AM_CPPFLAGS += -DNDEBUG
37AM_CFLAGS += -fomit-frame-pointer
064af421
BP
38endif
39
b02e1154
GS
40if WIN32
41psep=";"
42else
43psep=":"
44endif
853d1083
BP
45# PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo
46# files. Creating .py[co] works OK for any given version of Open
47# vSwitch, but it causes trouble if you switch from a version with
48# foo/__init__.py into an (older) version with plain foo.py, since
49# foo/__init__.pyc will cause Python to ignore foo.py.
9b4a5392 50if INCLUDE_PYTHON_COMPAT
b02e1154 51run_python = PYTHONPATH=$(top_srcdir)/python$(psep)$(top_srcdir)/python/compat$(psep)$$PYTHONPATH
9b4a5392 52else
b02e1154 53run_python = PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH
9b4a5392
AA
54endif
55run_python += PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
56
853d1083 57
22c79496 58ALL_LOCAL =
d879a707 59BUILT_SOURCES =
064af421 60CLEANFILES =
15b619e2 61CLEAN_LOCAL =
064af421 62DISTCLEANFILES =
79982e90 63PYCOV_CLEAN_FILES = build-aux/check-structs,cover
4cdb08c0 64EXTRA_DIST = \
542cc9bb
TG
65 CONTRIBUTING.md \
66 CodingStyle.md \
67 DESIGN.md \
68 FAQ.md \
69 INSTALL.md \
70 INSTALL.Debian.md \
71 INSTALL.Docker.md \
72 INSTALL.DPDK.md \
73 INSTALL.Fedora.md \
74 INSTALL.KVM.md \
75 INSTALL.Libvirt.md \
76 INSTALL.NetBSD.md \
77 INSTALL.RHEL.md \
78 INSTALL.SSL.md \
79 INSTALL.XenServer.md \
80 INSTALL.userspace.md \
81 INSTALL.Windows.md \
82 IntegrationGuide.md \
4cdb08c0 83 NOTICE \
542cc9bb
TG
84 OPENFLOW-1.1+.md \
85 PORTING.md \
d25e2f57 86 README.md \
542cc9bb 87 README-lisp.md \
a36de779 88 README-native-tunneling.md \
542cc9bb
TG
89 REPORTING-BUGS.md \
90 TODO.md \
826bc7b6
TG
91 .travis.yml \
92 .travis/build.sh \
93 .travis/prepare.sh \
542cc9bb 94 WHY-OVS.md \
0027492d 95 boot.sh \
c9b94429 96 build-aux/cccl \
6ca37677 97 build-aux/sodepends.pl \
94512c4a 98 build-aux/soexpand.pl \
6ca37677
BP
99 $(MAN_FRAGMENTS) \
100 $(MAN_ROOTS)
064af421
BP
101bin_PROGRAMS =
102sbin_PROGRAMS =
103bin_SCRIPTS =
87103e1f 104DIST_HOOKS =
064af421 105dist_man_MANS =
3b12adda 106dist_pkgdata_DATA =
064af421
BP
107dist_pkgdata_SCRIPTS =
108dist_sbin_SCRIPTS =
b2df0225 109dist_scripts_SCRIPTS =
429ebf21 110dist_scripts_DATA =
b2df0225 111INSTALL_DATA_LOCAL =
44852fdf 112UNINSTALL_LOCAL =
064af421 113man_MANS =
0027492d 114MAN_FRAGMENTS =
6ca37677 115MAN_ROOTS =
c3bb4bd7 116noinst_DATA =
064af421 117noinst_HEADERS =
38b7a52b 118lib_LTLIBRARIES =
045b2e5c 119noinst_man_MANS =
064af421
BP
120noinst_PROGRAMS =
121noinst_SCRIPTS =
00732bf5 122OVSIDL_BUILT =
9c16ed64 123pkgdata_DATA =
b2df0225 124sbin_SCRIPTS =
43bb5f82 125scripts_SCRIPTS =
429ebf21 126scripts_DATA =
c3bb4bd7 127SUFFIXES =
15b619e2 128check_DATA =
064af421 129
43bb5f82
BP
130scriptsdir = $(pkgdatadir)/scripts
131
9741af79
BP
132# This ensures that files added to EXTRA_DIST are always distributed,
133# even if they are inside an Automake if...endif conditional block that is
134# disabled by some particular "configure" run. For more information, see:
135# http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
136noinst_HEADERS += $(EXTRA_DIST)
137
064af421 138ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
cbaa4ffe 139ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
064af421 140
c3bb4bd7 141SUFFIXES += .in
064af421 142.in:
ef44aa50 143 $(AM_V_GEN)$(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
3b135da3 144 sed \
064af421 145 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3 146 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
f973f2af 147 -e 's,[@]DBDIR[@],$(DBDIR),g' \
3b135da3
BP
148 -e 's,[@]PERL[@],$(PERL),g' \
149 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 150 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3
BP
151 -e 's,[@]VERSION[@],$(VERSION),g' \
152 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 153 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 154 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
43bb5f82
BP
155 -e 's,[@]bindir[@],$(bindir),g' \
156 -e 's,[@]sbindir[@],$(sbindir),g' \
d879a707 157 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
3b135da3 158 > $@.tmp
00961f7c 159 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
3b135da3
BP
160 chmod +x $@.tmp; \
161 fi
ef44aa50 162 $(AM_V_at) mv $@.tmp $@
064af421 163
79982e90
EJ
164.PHONY: clean-pycov
165clean-pycov:
166 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
167CLEAN_LOCAL += clean-pycov
168
87103e1f
BP
169# If we're checked out from a Git repository, make sure that every
170# file that is in Git is distributed.
b4e1bf8b
BP
171#
172# We only enable this check when GNU make is in use because the
173# Makefile in datapath/linux, needed to get the list of files to
174# distribute, requires GNU make extensions.
175if GNU_MAKE
39376d06
BP
176ALL_LOCAL += dist-hook-git
177dist-hook-git: distfiles
178 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
179 (cd datapath && $(MAKE) distfiles); \
180 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
a6da6967 181 LC_ALL=C sort -u > all-distfiles; \
39376d06 182 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
a6da6967
BP
183 LC_ALL=C sort -u > all-gitfiles; \
184 LC_ALL=C comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
39376d06
BP
185 if test -s missing-distfiles; then \
186 echo "The distribution is missing the following files:"; \
187 cat missing-distfiles; \
188 exit 1; \
189 fi; \
87103e1f 190 fi
39376d06
BP
191CLEANFILES += all-distfiles all-gitfiles missing-distfiles
192# The following is based on commands for the Automake "distdir" target.
193distfiles: Makefile
194 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
195 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
196 list='$(DISTFILES)'; \
197 for file in $$list; do echo $$file; done | \
198 sed -e "s|^$$srcdirstrip/||;t" \
a6da6967
BP
199 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | \
200 LC_ALL=C sort -u > $@
39376d06 201CLEANFILES += distfiles
b4e1bf8b
BP
202endif
203.PHONY: dist-hook-git
87103e1f 204
9e4ba008
BP
205# Check that every .c file includes <config.h>.
206ALL_LOCAL += config-h-check
207config-h-check:
208 @cd $(srcdir); \
209 if test -e .git && (git --version) >/dev/null 2>&1 && \
b411e5c3 210 git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
c803536e 211 grep -vE '^datapath|^lib/sflow|^third-party|^datapath-windows'`; \
9e4ba008
BP
212 then \
213 echo "See above for list of violations of the rule that"; \
214 echo "every C source file must #include <config.h>."; \
215 exit 1; \
216 fi
217.PHONY: config-h-check
218
34582733
AS
219# Check for printf() type modifiers that MSVC doesn't support.
220ALL_LOCAL += printf-check
221printf-check:
8faeab72
DDP
222 @cd $(srcdir); \
223 if test -e .git && (git --version) >/dev/null 2>&1 && \
224 git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files | grep '\.[ch]$$' | \
3b3f8857 225 grep -vE '^datapath|^lib/sflow|^third-party'`; \
34582733
AS
226 then \
227 echo "See above for list of violations of the rule that"; \
228 echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \
542cc9bb 229 echo "forbidden. See CodingStyle.md for replacements."; \
34582733
AS
230 exit 1; \
231 fi
232.PHONY: printf-check
233
1514b275
BP
234# Check that certain data structures are always declared "static".
235ALL_LOCAL += static-check
236static-check:
db5ce514 237 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
1514b275 238 git --no-pager grep -n -E '^[ ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
db5ce514
BP
239 then \
240 echo "See above for list of violations of the rule that "; \
1514b275 241 echo "certain data structures must always be 'static'"; \
db5ce514
BP
242 exit 1; \
243 fi
1514b275 244.PHONY: static-check
db5ce514 245
4958e3ee
BP
246# Check that assert.h is not used outside a whitelist of files.
247ALL_LOCAL += check-assert-h-usage
248check-assert-h-usage:
249 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
250 (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
92fa2e92 251 $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
4958e3ee
BP
252 then \
253 echo "Files listed above unexpectedly #include <""assert.h"">."; \
254 echo "Please use ovs_assert (from util.h) instead of assert."; \
255 exit 1; \
256 fi
257.PHONY: check-assert-h-usage
258
6a3e30f3
BP
259ALL_LOCAL += thread-safety-check
260thread-safety-check:
8faeab72
DDP
261 @cd $(srcdir); \
262 if test -e .git && (git --version) >/dev/null 2>&1 && \
263 grep -n -f build-aux/thread-safety-blacklist \
264 `git ls-files | grep '\.[ch]$$' \
ca3d034b 265 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` /dev/null \
6a3e30f3
BP
266 | $(EGREP) -v ':[ ]*/?\*'; \
267 then \
268 echo "See above for list of calls to functions that are"; \
269 echo "blacklisted due to thread safety issues"; \
270 exit 1; \
271 fi
272EXTRA_DIST += build-aux/thread-safety-blacklist
273
0027492d
BP
274if HAVE_GROFF
275ALL_LOCAL += manpage-check
1261619f
BP
276manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
277 @error=false; \
278 for manpage in $?; do \
186ef5c1 279 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
280 if grep warning: $@.tmp; then error=:; fi; \
281 rm -f $@.tmp; \
0027492d 282 done; \
be09aa10
EJ
283 if $$error; then exit 1; else touch $@; fi
284 $(AM_V_GEN) touch -c $@
0027492d
BP
285CLEANFILES += manpage-check
286endif
287
6ca37677
BP
288include $(srcdir)/manpages.mk
289$(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
290 @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
291 @if cmp -s $(@F).tmp $@; then \
292 touch $@; \
293 rm -f $(@F).tmp; \
294 else \
295 mv $(@F).tmp $@; \
296 fi
297CLEANFILES += manpage-dep-check
298
bd9d7025
AS
299if VSTUDIO_DDK
300ALL_LOCAL += ovsext_make
301ovsext_make: datapath-windows/ovsext.sln
302 MSBuild.exe datapath-windows/ovsext.sln /target:Build /property:Configuration="$(VSTUDIO_CONFIG)"
303
304CLEAN_LOCAL += ovsext_clean
305ovsext_clean: datapath-windows/ovsext.sln
306 MSBuild.exe datapath-windows/ovsext.sln /target:Clean /property:Configuration="$(VSTUDIO_CONFIG)"
307endif
308
87103e1f 309dist-hook: $(DIST_HOOKS)
22c79496 310all-local: $(ALL_LOCAL)
15b619e2 311clean-local: $(CLEAN_LOCAL)
b2df0225 312install-data-local: $(INSTALL_DATA_LOCAL)
44852fdf
BP
313uninstall-local: $(UNINSTALL_LOCAL)
314.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
87103e1f 315
3a14d239
BP
316modules_install:
317if LINUX_ENABLED
318 cd datapath/linux && $(MAKE) modules_install
319endif
320
ed1be787 321include m4/automake.mk
064af421 322include lib/automake.mk
8cd4882f 323include ofproto/automake.mk
064af421
BP
324include utilities/automake.mk
325include tests/automake.mk
326include include/automake.mk
327include third-party/automake.mk
328include debian/automake.mk
329include vswitchd/automake.mk
f85f8ebb 330include ovsdb/automake.mk
c434706a 331include rhel/automake.mk
064af421 332include xenserver/automake.mk
0be6140a 333include python/automake.mk
6c88547d 334include python/compat/automake.mk
eeecce05 335include tutorial/automake.mk
add17b69 336include vtep/automake.mk
c803536e 337include datapath-windows/automake.mk
c640e3ce 338include datapath-windows/include/automake.mk