]> git.proxmox.com Git - mirror_ovs.git/blame - Makefile.am
ovn pacemaker: Pass --db-(n/s)b-addr option when starting ovsdb-servers
[mirror_ovs.git] / Makefile.am
CommitLineData
8a988976 1# Copyright (C) 2007-2016 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)
1cb3649c 22AM_LDFLAGS += $(MSVC64_LDFLAGS)
e42dfc72
AS
23endif
24
064af421 25AM_CPPFLAGS += -I $(top_srcdir)/include
837eefc7 26AM_CPPFLAGS += -I $(top_builddir)/include
064af421 27AM_CPPFLAGS += -I $(top_srcdir)/lib
611d30ce 28AM_CPPFLAGS += -I $(top_builddir)/lib
064af421 29
8605a29b
PK
30AM_CPPFLAGS += $(SSL_INCLUDES)
31
064af421 32AM_CFLAGS = -Wstrict-prototypes
d161c099 33AM_CFLAGS += $(WARNING_FLAGS)
95626395 34AM_CFLAGS += $(OVS_CFLAGS)
064af421 35
58397e6c
KT
36if DPDK_NETDEV
37AM_CFLAGS += -D_FILE_OFFSET_BITS=64
38endif
39
064af421
BP
40if NDEBUG
41AM_CPPFLAGS += -DNDEBUG
42AM_CFLAGS += -fomit-frame-pointer
064af421
BP
43endif
44
b02e1154
GS
45if WIN32
46psep=";"
47else
48psep=":"
49endif
853d1083
BP
50# PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo
51# files. Creating .py[co] works OK for any given version of Open
52# vSwitch, but it causes trouble if you switch from a version with
53# foo/__init__.py into an (older) version with plain foo.py, since
54# foo/__init__.pyc will cause Python to ignore foo.py.
e23812fc
BP
55run_python = \
56 PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH \
57 PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
853d1083 58
22c79496 59ALL_LOCAL =
d879a707 60BUILT_SOURCES =
064af421 61CLEANFILES =
15b619e2 62CLEAN_LOCAL =
064af421 63DISTCLEANFILES =
79982e90 64PYCOV_CLEAN_FILES = build-aux/check-structs,cover
4441a01c 65
c431227e 66EXTRA_DIST = \
8a97dc6e 67 AUTHORS.rst \
255efa72 68 CONTRIBUTING.rst \
2eb98b60 69 MAINTAINERS.rst \
c431227e 70 README.rst \
4441a01c 71 NOTICE \
826bc7b6 72 .travis.yml \
40a75bbf
LR
73 .travis/linux-build.sh \
74 .travis/linux-prepare.sh \
75 .travis/osx-build.sh \
76 .travis/osx-prepare.sh \
12c96b8a 77 appveyor.yml \
0027492d 78 boot.sh \
c9b94429 79 build-aux/cccl \
abc67c1e 80 build-aux/cksum-schema-check \
39916858 81 build-aux/calculate-schema-cksum \
4441a01c 82 build-aux/dist-docs \
6ca37677 83 build-aux/sodepends.pl \
94512c4a 84 build-aux/soexpand.pl \
a4e3c495 85 build-aux/xml2nroff \
6ca37677 86 $(MAN_FRAGMENTS) \
1ce96d2a 87 $(MAN_ROOTS) \
ef9c432c 88 Vagrantfile \
673b80ea
RB
89 Vagrantfile-FreeBSD \
90 .mailmap
064af421
BP
91bin_PROGRAMS =
92sbin_PROGRAMS =
93bin_SCRIPTS =
87103e1f 94DIST_HOOKS =
064af421 95dist_man_MANS =
3b12adda 96dist_pkgdata_DATA =
064af421
BP
97dist_pkgdata_SCRIPTS =
98dist_sbin_SCRIPTS =
b2df0225 99dist_scripts_SCRIPTS =
429ebf21 100dist_scripts_DATA =
b2df0225 101INSTALL_DATA_LOCAL =
44852fdf 102UNINSTALL_LOCAL =
064af421 103man_MANS =
0027492d 104MAN_FRAGMENTS =
6ca37677 105MAN_ROOTS =
c3bb4bd7 106noinst_DATA =
064af421 107noinst_HEADERS =
38b7a52b 108lib_LTLIBRARIES =
045b2e5c 109noinst_man_MANS =
064af421
BP
110noinst_PROGRAMS =
111noinst_SCRIPTS =
00732bf5 112OVSIDL_BUILT =
9c16ed64 113pkgdata_DATA =
b2df0225 114sbin_SCRIPTS =
43bb5f82 115scripts_SCRIPTS =
2c9907cd 116completion_SCRIPTS =
429ebf21 117scripts_DATA =
c3bb4bd7 118SUFFIXES =
15b619e2 119check_DATA =
08d42548 120check_SCRIPTS =
81696de0 121pkgconfig_DATA =
115d8719 122FLAKE8_PYFILES =
064af421 123
43bb5f82 124scriptsdir = $(pkgdatadir)/scripts
2c9907cd 125completiondir = $(sysconfdir)/bash_completion.d
81696de0 126pkgconfigdir = $(libdir)/pkgconfig
43bb5f82 127
9741af79
BP
128# This ensures that files added to EXTRA_DIST are always distributed,
129# even if they are inside an Automake if...endif conditional block that is
130# disabled by some particular "configure" run. For more information, see:
131# http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
132noinst_HEADERS += $(EXTRA_DIST)
133
064af421 134ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
cbaa4ffe 135ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
064af421 136
c3bb4bd7 137SUFFIXES += .in
064af421 138.in:
ef44aa50 139 $(AM_V_GEN)$(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
aca1bb54
SF
140 sed \
141 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
142 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
143 -e 's,[@]DBDIR[@],$(DBDIR),g' \
144 -e 's,[@]PERL[@],$(PERL),g' \
145 -e 's,[@]PYTHON[@],$(PYTHON),g' \
146 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
147 -e 's,[@]VERSION[@],$(VERSION),g' \
148 -e 's,[@]localstatedir[@],$(localstatedir),g' \
149 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
150 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
151 -e 's,[@]bindir[@],$(bindir),g' \
152 -e 's,[@]sbindir[@],$(sbindir),g' \
153 -e 's,[@]abs_builddir[@],$(abs_builddir),g' \
154 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
155 > $@.tmp
00961f7c 156 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
aca1bb54 157 chmod +x $@.tmp; \
3b135da3 158 fi
ef44aa50 159 $(AM_V_at) mv $@.tmp $@
064af421 160
99635791
BP
161SUFFIXES += .xml
162%: %.xml
163 $(AM_V_GEN)$(run_python) $(srcdir)/build-aux/xml2nroff $< > $@.tmp \
aca1bb54
SF
164 -I $(srcdir) \
165 --version=$(VERSION) \
166 PKIDIR='$(PKIDIR)' \
167 LOGDIR='$(LOGDIR)' \
168 DBDIR='$(DBDIR)' \
169 PERL='$(PERL)' \
170 PYTHON='$(PYTHON)' \
171 RUNDIR='$(RUNDIR)' \
172 VERSION='$(VERSION)' \
173 localstatedir='$(localstatedir)' \
174 pkgdatadir='$(pkgdatadir)' \
175 sysconfdir='$(sysconfdir)' \
176 bindir='$(bindir)' \
177 sbindir='$(sbindir)'
99635791
BP
178 $(AM_v_at)mv $@.tmp $@
179
79982e90
EJ
180clean-pycov:
181 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
182CLEAN_LOCAL += clean-pycov
099cf485 183.PHONY: clean-pycov
79982e90 184
87103e1f
BP
185# If we're checked out from a Git repository, make sure that every
186# file that is in Git is distributed.
b4e1bf8b
BP
187#
188# We only enable this check when GNU make is in use because the
189# Makefile in datapath/linux, needed to get the list of files to
190# distribute, requires GNU make extensions.
191if GNU_MAKE
39376d06
BP
192ALL_LOCAL += dist-hook-git
193dist-hook-git: distfiles
194 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
aca1bb54
SF
195 (cd datapath && $(MAKE) distfiles); \
196 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
197 LC_ALL=C sort -u > all-distfiles; \
198 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
199 LC_ALL=C sort -u > all-gitfiles; \
a6da6967 200 LC_ALL=C comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
aca1bb54 201 if test -s missing-distfiles; then \
4207d631 202 echo "The following files are in git but not the distribution:"; \
aca1bb54
SF
203 cat missing-distfiles; \
204 exit 1; \
205 fi; \
87103e1f 206 fi
39376d06
BP
207CLEANFILES += all-distfiles all-gitfiles missing-distfiles
208# The following is based on commands for the Automake "distdir" target.
209distfiles: Makefile
210 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
211 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
212 list='$(DISTFILES)'; \
213 for file in $$list; do echo $$file; done | \
214 sed -e "s|^$$srcdirstrip/||;t" \
a6da6967 215 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | \
aca1bb54 216 LC_ALL=C sort -u > $@
39376d06 217CLEANFILES += distfiles
b4e1bf8b
BP
218endif
219.PHONY: dist-hook-git
87103e1f 220
9e4ba008
BP
221# Check that every .c file includes <config.h>.
222ALL_LOCAL += config-h-check
223config-h-check:
224 @cd $(srcdir); \
225 if test -e .git && (git --version) >/dev/null 2>&1 && \
aca1bb54
SF
226 git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
227 grep -vE '^datapath|^lib/sflow|^third-party|^datapath-windows|^python'`; \
9e4ba008 228 then \
aca1bb54
SF
229 echo "See above for list of violations of the rule that"; \
230 echo "every C source file must #include <config.h>."; \
231 exit 1; \
9e4ba008 232 fi
c458e4a3
YHW
233 if grep '#include' $(srcdir)/include/openvswitch/*.h | \
234 grep -vE '(<.*>)|("openvswitch)|("openflow)'; \
235 then \
236 echo "See above for list of violations of the rule that"; \
237 echo "public openvswitch header file should not include internal library."; \
238 exit 1; \
239 fi
9e4ba008
BP
240.PHONY: config-h-check
241
34582733
AS
242# Check for printf() type modifiers that MSVC doesn't support.
243ALL_LOCAL += printf-check
244printf-check:
8faeab72
DDP
245 @cd $(srcdir); \
246 if test -e .git && (git --version) >/dev/null 2>&1 && \
aca1bb54
SF
247 git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files | grep '\.[ch]$$' | \
248 grep -vE '^datapath|^lib/sflow|^third-party'`; \
34582733 249 then \
aca1bb54
SF
250 echo "See above for list of violations of the rule that"; \
251 echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \
252 echo "forbidden. See CodingStyle.rst for replacements."; \
253 exit 1; \
34582733
AS
254 fi
255.PHONY: printf-check
256
1514b275
BP
257# Check that certain data structures are always declared "static".
258ALL_LOCAL += static-check
259static-check:
db5ce514 260 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
aca1bb54
SF
261 git --no-pager grep -n -E '^[ ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
262 then \
263 echo "See above for list of violations of the rule that "; \
264 echo "certain data structures must always be 'static'"; \
265 exit 1; \
266 fi
1514b275 267.PHONY: static-check
db5ce514 268
4958e3ee
BP
269# Check that assert.h is not used outside a whitelist of files.
270ALL_LOCAL += check-assert-h-usage
271check-assert-h-usage:
272 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
aca1bb54
SF
273 (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
274 $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
275 then \
276 echo "Files listed above unexpectedly #include <""assert.h"">."; \
277 echo "Please use ovs_assert (from util.h) instead of assert."; \
278 exit 1; \
279 fi
4958e3ee
BP
280.PHONY: check-assert-h-usage
281
64746850
BP
282# Check that LITTLE_ENDIAN and BIG_ENDIAN are not used unless BYTE_ORDER is
283# also mentioned. (<endian.h> always defines the former two constants. They
284# must be compared to BYTE_ORDER to get the machine's correct endianness. But
285# it is better to use WORDS_BIGENDIAN.)
286ALL_LOCAL += check-endian
287check-endian:
288 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
aca1bb54
SF
289 (cd $(srcdir) && git --no-pager grep -l -E \
290 -e 'BIG_ENDIAN|LITTLE_ENDIAN' --and --not -e 'BYTE_ORDER' | \
291 $(EGREP) -v '^datapath/'); \
292 then \
293 echo "See above for list of files that misuse LITTLE""_ENDIAN"; \
294 echo "or BIG""_ENDIAN. Please use WORDS_BIGENDIAN instead."; \
295 exit 1; \
296 fi
64746850
BP
297.PHONY: check-endian
298
6a3e30f3
BP
299ALL_LOCAL += thread-safety-check
300thread-safety-check:
8faeab72
DDP
301 @cd $(srcdir); \
302 if test -e .git && (git --version) >/dev/null 2>&1 && \
aca1bb54
SF
303 grep -n -f build-aux/thread-safety-blacklist \
304 `git ls-files | grep '\.[ch]$$' \
305 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` /dev/null \
306 | $(EGREP) -v ':[ ]*/?\*'; \
6a3e30f3 307 then \
aca1bb54
SF
308 echo "See above for list of calls to functions that are"; \
309 echo "blacklisted due to thread safety issues"; \
310 exit 1; \
6a3e30f3
BP
311 fi
312EXTRA_DIST += build-aux/thread-safety-blacklist
c9172561 313.PHONY: thread-safety-check
6a3e30f3 314
0027492d
BP
315if HAVE_GROFF
316ALL_LOCAL += manpage-check
1261619f
BP
317manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
318 @error=false; \
319 for manpage in $?; do \
aca1bb54
SF
320 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; \
321 if grep warning: $@.tmp; then error=:; fi; \
322 rm -f $@.tmp; \
0027492d 323 done; \
be09aa10
EJ
324 if $$error; then exit 1; else touch $@; fi
325 $(AM_V_GEN) touch -c $@
0027492d
BP
326CLEANFILES += manpage-check
327endif
328
115d8719
RB
329if HAVE_FLAKE8
330ALL_LOCAL += flake8-check
007ec24d 331# http://flake8.readthedocs.org/en/latest/warnings.html
f3068bff
RB
332# All warnings explicitly selected or ignored should be listed below.
333#
334# E***, W*** -- warnings from pep8
335# E121 continuation line under-indented for hanging indent (only from flake8 v2.0)
336# E123 closing bracket does not match indentation of opening bracket's line
337# E125 continuation line with same indent as next logical line (only from flake8 v2.0)
338# E126 continuation line over-indented for hanging indent
339# E127 continuation line over-indented for visual indent
340# E128 continuation line under-indented for visual indent
341# E129 visually indented line with same indent as next logical line
342# E131 continuation line unaligned for hanging indent
343# W503 line break before binary operator
344# F*** -- warnings native to flake8
345# F811 redefinition of unused <name> from line <N> (only from flake8 v2.0)
007ec24d
NS
346# D*** -- warnings from flake8-docstrings plugin
347# H*** -- warnings from flake8 hacking plugin (custom style checks beyond PEP8)
f3068bff 348# H231 Python 3.x incompatible 'except x,y:' construct
56ec0611 349# H232 Python 3.x incompatible octal 077 should be written as 0o77
8ea171ab 350# H233 Python 3.x incompatible use of print operator
03756304 351# H238 old style class declaration, use new style (inherit from `object`)
aca1bb54
SF
352FLAKE8_SELECT = H231,H232,H233,H238
353FLAKE8_IGNORE = E121,E123,E125,E126,E127,E128,E129,E131,W503,F811,D,H
115d8719 354flake8-check: $(FLAKE8_PYFILES)
aca1bb54
SF
355 $(AM_V_GEN) \
356 src='$^' && \
357 flake8 $$src --select=$(FLAKE8_SELECT) $(FLAKE8_FLAGS) && \
358 flake8 $$src --ignore=$(FLAKE8_IGNORE) $(FLAKE8_FLAGS) && \
359 touch $@
115d8719 360endif
968eec59 361CLEANFILES += flake8-check
115d8719 362
6ca37677
BP
363include $(srcdir)/manpages.mk
364$(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
365 @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
366 @if cmp -s $(@F).tmp $@; then \
aca1bb54
SF
367 touch $@; \
368 rm -f $(@F).tmp; \
6ca37677 369 else \
aca1bb54 370 mv $(@F).tmp $@; \
6ca37677
BP
371 fi
372CLEANFILES += manpage-dep-check
373
bd9d7025 374if VSTUDIO_DDK
e02b8fb0
AS
375ALL_LOCAL += ovsext
376ovsext: datapath-windows/ovsext.sln $(srcdir)/datapath-windows/include/OvsDpInterface.h
e90a8753
AS
377 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)"
378 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8.1$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)"
bd9d7025
AS
379
380CLEAN_LOCAL += ovsext_clean
381ovsext_clean: datapath-windows/ovsext.sln
e90a8753
AS
382 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)"
383 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8.1$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)"
bd9d7025 384endif
e02b8fb0 385.PHONY: ovsext
bd9d7025 386
30b79363
BB
387clang-analyze: clean
388 @which clang scan-build >/dev/null 2>&1 || \
aca1bb54 389 (echo "Unable to find clang/scan-build, Install clang,clang-analyzer packages"; exit 1)
30b79363
BB
390 @$(MKDIR_P) "$(srcdir)/tests/clang-analyzer-results"
391 @scan-build -o $(srcdir)/tests/clang-analyzer-results --use-cc=$(CC) $(MAKE)
392.PHONY: clang-analyze
393
87103e1f 394dist-hook: $(DIST_HOOKS)
22c79496 395all-local: $(ALL_LOCAL)
15b619e2 396clean-local: $(CLEAN_LOCAL)
b2df0225 397install-data-local: $(INSTALL_DATA_LOCAL)
44852fdf
BP
398uninstall-local: $(UNINSTALL_LOCAL)
399.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
87103e1f 400
3a14d239
BP
401modules_install:
402if LINUX_ENABLED
403 cd datapath/linux && $(MAKE) modules_install
404endif
405
4441a01c 406dist-docs:
6b304335 407 VERSION=$(VERSION) MAKE='$(MAKE)' $(srcdir)/build-aux/dist-docs $(srcdir) $(docs)
4441a01c
BP
408.PHONY: dist-docs
409
8c254406 410include Documentation/automake.mk
ed1be787 411include m4/automake.mk
064af421 412include lib/automake.mk
8cd4882f 413include ofproto/automake.mk
064af421
BP
414include utilities/automake.mk
415include tests/automake.mk
416include include/automake.mk
417include third-party/automake.mk
418include debian/automake.mk
419include vswitchd/automake.mk
f85f8ebb 420include ovsdb/automake.mk
c434706a 421include rhel/automake.mk
064af421 422include xenserver/automake.mk
0be6140a 423include python/automake.mk
eeecce05 424include tutorial/automake.mk
add17b69 425include vtep/automake.mk
c803536e 426include datapath-windows/automake.mk
c640e3ce 427include datapath-windows/include/automake.mk
d183efc2 428include windows/automake.mk
fe36184b 429include ovn/automake.mk
9b897c91 430include selinux/automake.mk
e522804f 431include build-aux/automake.mk