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