]> git.proxmox.com Git - ovs.git/blob - Makefile.am
compat: Fix broken partial backport of extack op parameter
[ovs.git] / Makefile.am
1 # Copyright (C) 2007-2017 Nicira, Inc.
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
8 AUTOMAKE_OPTIONS = foreign subdir-objects
9 ACLOCAL_AMFLAGS = -I m4
10 SUBDIRS = datapath
11
12 AM_CPPFLAGS = $(SSL_CFLAGS)
13 AM_LDFLAGS = $(SSL_LDFLAGS)
14 AM_LDFLAGS += $(OVS_LDFLAGS)
15
16 if WIN32
17 AM_CPPFLAGS += -I $(top_srcdir)/include/windows
18 AM_CPPFLAGS += -I $(top_srcdir)/datapath-windows/include
19 AM_CPPFLAGS += $(PTHREAD_INCLUDES)
20 AM_CPPFLAGS += $(MSVC_CFLAGS)
21 AM_LDFLAGS += $(PTHREAD_LDFLAGS)
22 AM_LDFLAGS += $(MSVC64_LDFLAGS)
23 PLATFORM = $(MSVC_PLATFORM)
24 endif
25
26 AM_CPPFLAGS += -I $(top_srcdir)/include
27 AM_CPPFLAGS += -I $(top_builddir)/include
28 AM_CPPFLAGS += -I $(top_srcdir)/lib
29 AM_CPPFLAGS += -I $(top_builddir)/lib
30
31 AM_CPPFLAGS += $(SSL_INCLUDES)
32
33 AM_CFLAGS = -Wstrict-prototypes
34 AM_CFLAGS += $(WARNING_FLAGS)
35 AM_CFLAGS += $(OVS_CFLAGS)
36
37 if DPDK_NETDEV
38 AM_CFLAGS += -D_FILE_OFFSET_BITS=64
39 DPDKSTRIP_FLAGS = --dpdk
40 else
41 DPDKSTRIP_FLAGS = --nodpdk
42 endif
43
44 if NDEBUG
45 AM_CPPFLAGS += -DNDEBUG
46 AM_CFLAGS += -fomit-frame-pointer
47 endif
48
49 AM_CTAGSFLAGS = $(OVS_CTAGS_IDENTIFIERS_LIST)
50
51 if WIN32
52 psep=";"
53 else
54 psep=":"
55 endif
56 # PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo
57 # files. Creating .py[co] works OK for any given version of Open
58 # vSwitch, but it causes trouble if you switch from a version with
59 # foo/__init__.py into an (older) version with plain foo.py, since
60 # foo/__init__.pyc will cause Python to ignore foo.py.
61 run_python = \
62 PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH \
63 PYTHONDONTWRITEBYTECODE=yes $(PYTHON3)
64
65 ALL_LOCAL =
66 BUILT_SOURCES =
67 CLEANFILES =
68 CLEAN_LOCAL =
69 DISTCLEANFILES =
70 PYCOV_CLEAN_FILES = build-aux/check-structs,cover
71
72 EXTRA_DIST = \
73 AUTHORS.rst \
74 CONTRIBUTING.rst \
75 LICENSE \
76 MAINTAINERS.rst \
77 README.rst \
78 NOTICE \
79 .cirrus.yml \
80 .travis.yml \
81 .travis/linux-build.sh \
82 .travis/linux-prepare.sh \
83 .travis/osx-build.sh \
84 .travis/osx-prepare.sh \
85 appveyor.yml \
86 boot.sh \
87 poc/builders/Vagrantfile \
88 poc/playbook-centos-builder.yml \
89 poc/playbook-fedora-builder.yml \
90 poc/playbook-ubuntu-builder.yml \
91 $(MAN_FRAGMENTS) \
92 $(MAN_ROOTS) \
93 Vagrantfile \
94 Vagrantfile-FreeBSD \
95 .mailmap
96 bin_PROGRAMS =
97 sbin_PROGRAMS =
98 bin_SCRIPTS =
99 DIST_HOOKS =
100 dist_man_MANS =
101 dist_pkgdata_DATA =
102 dist_pkgdata_SCRIPTS =
103 dist_sbin_SCRIPTS =
104 dist_scripts_SCRIPTS =
105 dist_scripts_DATA =
106 EXTRA_PROGRAMS =
107 INSTALL_DATA_LOCAL =
108 UNINSTALL_LOCAL =
109 man_MANS =
110 MAN_FRAGMENTS =
111 MAN_ROOTS =
112 noinst_DATA =
113 noinst_HEADERS =
114 lib_LTLIBRARIES =
115 noinst_LTLIBRARIES =
116 noinst_man_MANS =
117 noinst_PROGRAMS =
118 noinst_SCRIPTS =
119 OVSIDL_BUILT =
120 pkgdata_DATA =
121 sbin_SCRIPTS =
122 scripts_SCRIPTS =
123 completion_SCRIPTS =
124 scripts_DATA =
125 SUFFIXES =
126 check_DATA =
127 check_SCRIPTS =
128 pkgconfig_DATA =
129 FLAKE8_PYFILES =
130
131 if ENABLE_SPARSE_BY_DEFAULT
132 C ?= 1
133 endif
134
135 scriptsdir = $(pkgdatadir)/scripts
136 completiondir = $(sysconfdir)/bash_completion.d
137 pkgconfigdir = $(libdir)/pkgconfig
138
139 # This ensures that files added to EXTRA_DIST are always distributed,
140 # even if they are inside an Automake if...endif conditional block that is
141 # disabled by some particular "configure" run. For more information, see:
142 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
143 noinst_HEADERS += $(EXTRA_DIST)
144
145 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
146 ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
147
148 SUFFIXES += .in
149 .in:
150 $(AM_V_GEN)PYTHONPATH=$$PYTHONPATH$(psep)$(srcdir)/python $(PYTHON3) $(srcdir)/build-aux/soexpand.py -I$(srcdir) < $< | \
151 $(PYTHON3) $(srcdir)/build-aux/dpdkstrip.py $(DPDKSTRIP_FLAGS) | \
152 sed \
153 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
154 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
155 -e 's,[@]DBDIR[@],$(DBDIR),g' \
156 -e 's,[@]PYTHON3[@],$(PYTHON3),g' \
157 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
158 -e 's,[@]VERSION[@],$(VERSION),g' \
159 -e 's,[@]localstatedir[@],$(localstatedir),g' \
160 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
161 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
162 -e 's,[@]bindir[@],$(bindir),g' \
163 -e 's,[@]sbindir[@],$(sbindir),g' \
164 -e 's,[@]abs_builddir[@],$(abs_builddir),g' \
165 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
166 > $@.tmp
167 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
168 chmod +x $@.tmp; \
169 fi
170 $(AM_V_at) mv $@.tmp $@
171
172 SUFFIXES += .xml
173 %: %.xml
174 $(AM_V_GEN)$(run_python) $(srcdir)/build-aux/xml2nroff $< > $@.tmp \
175 -I $(srcdir) \
176 --version=$(VERSION) \
177 PKIDIR='$(PKIDIR)' \
178 LOGDIR='$(LOGDIR)' \
179 DBDIR='$(DBDIR)' \
180 PYTHON3='$(PYTHON3)' \
181 RUNDIR='$(RUNDIR)' \
182 VERSION='$(VERSION)' \
183 localstatedir='$(localstatedir)' \
184 pkgdatadir='$(pkgdatadir)' \
185 sysconfdir='$(sysconfdir)' \
186 bindir='$(bindir)' \
187 sbindir='$(sbindir)'
188 $(AM_v_at)mv $@.tmp $@
189
190 clean-pycov:
191 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
192 CLEAN_LOCAL += clean-pycov
193 .PHONY: clean-pycov
194
195 # If we're checked out from a Git repository, make sure that every
196 # file that is in Git is distributed.
197 ALL_LOCAL += dist-hook-git
198 dist-hook-git: distfiles
199 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
200 (cd datapath && $(MAKE) distfiles); \
201 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
202 LC_ALL=C sort -u > all-distfiles; \
203 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
204 grep -v '\.gitattributes$$' | \
205 LC_ALL=C sort -u > all-gitfiles; \
206 LC_ALL=C comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
207 if test -s missing-distfiles; then \
208 echo "The following files are in git but not the distribution:"; \
209 cat missing-distfiles; \
210 exit 1; \
211 fi; \
212 if LC_ALL=C grep '\.gitignore$$' all-distfiles; then \
213 echo "See above for list of files that are distributed but"; \
214 echo "should not be."; \
215 exit 1; \
216 fi \
217 fi
218 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
219 # The following is based on commands for the Automake "distdir" target.
220 distfiles: Makefile
221 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
222 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
223 list='$(DISTFILES)'; \
224 for file in $$list; do echo $$file; done | \
225 sed -e "s|^$$srcdirstrip/||;t" \
226 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | \
227 LC_ALL=C sort -u > $@
228 CLEANFILES += distfiles
229 .PHONY: dist-hook-git
230
231 # Check that every .c file includes <config.h>.
232 ALL_LOCAL += config-h-check
233 config-h-check:
234 @cd $(srcdir); \
235 if test -e .git && (git --version) >/dev/null 2>&1 && \
236 git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
237 grep -vE '^datapath|^lib/sflow|^third-party|^datapath-windows|^python'`; \
238 then \
239 echo "See above for list of violations of the rule that"; \
240 echo "every C source file must #include <config.h>."; \
241 exit 1; \
242 fi; \
243 if grep '#include' include/openvswitch/*.h | \
244 grep -vE '(<.*>)|("openvswitch)|("openflow)'; \
245 then \
246 echo "See above for list of violations of the rule that"; \
247 echo "public openvswitch header file should not include internal library."; \
248 exit 1; \
249 fi
250 .PHONY: config-h-check
251
252 # Check for printf() type modifiers that MSVC doesn't support.
253 ALL_LOCAL += printf-check
254 printf-check:
255 @cd $(srcdir); \
256 if test -e .git && (git --version) >/dev/null 2>&1 && \
257 git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files | grep '\.[ch]$$' | \
258 grep -vE '^datapath|^lib/sflow|^third-party'`; \
259 then \
260 echo "See above for list of violations of the rule that"; \
261 echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \
262 echo "forbidden. See coding-style.rst for replacements."; \
263 exit 1; \
264 fi
265 .PHONY: printf-check
266
267 # Check that certain data structures are always declared "static".
268 ALL_LOCAL += static-check
269 static-check:
270 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
271 git --no-pager grep -n -E '^[ ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
272 then \
273 echo "See above for list of violations of the rule that "; \
274 echo "certain data structures must always be 'static'"; \
275 exit 1; \
276 fi
277 .PHONY: static-check
278
279 # Check that assert.h is not used outside a whitelist of files.
280 ALL_LOCAL += check-assert-h-usage
281 check-assert-h-usage:
282 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
283 (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
284 $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
285 then \
286 echo "Files listed above unexpectedly #include <""assert.h"">."; \
287 echo "Please use ovs_assert (from util.h) instead of assert."; \
288 exit 1; \
289 fi
290 .PHONY: check-assert-h-usage
291
292 # Check that LITTLE_ENDIAN and BIG_ENDIAN are not used unless BYTE_ORDER is
293 # also mentioned. (<endian.h> always defines the former two constants. They
294 # must be compared to BYTE_ORDER to get the machine's correct endianness. But
295 # it is better to use WORDS_BIGENDIAN.)
296 ALL_LOCAL += check-endian
297 check-endian:
298 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
299 (cd $(srcdir) && git --no-pager grep -l -E \
300 -e 'BIG_ENDIAN|LITTLE_ENDIAN' --and --not -e 'BYTE_ORDER' | \
301 $(EGREP) -v '^datapath/|^include/sparse/rte_'); \
302 then \
303 echo "See above for list of files that misuse LITTLE""_ENDIAN"; \
304 echo "or BIG""_ENDIAN. Please use WORDS_BIGENDIAN instead."; \
305 exit 1; \
306 fi
307 .PHONY: check-endian
308
309 ALL_LOCAL += check-echo-n
310 check-echo-n:
311 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
312 git --no-pager grep -n 'echo'' -n' $(srcdir); \
313 then \
314 echo "See above for uses for \"echo"" -n\", which is non-POSIX"; \
315 echo "and does not work with all shells. Use \"printf\" instead."; \
316 exit 1; \
317 fi
318 .PHONY: check-echo-n
319
320 ALL_LOCAL += check-tabs
321 check-tabs:
322 @cd $(srcdir); \
323 if test -e .git && (git --version) >/dev/null 2>&1 && \
324 grep -ln "^ " \
325 `git ls-files \
326 | grep -v -f build-aux/initial-tab-whitelist` /dev/null \
327 | $(EGREP) -v ':[ ]*/?\*'; \
328 then \
329 echo "See above for files that use tabs for indentation."; \
330 echo "Please use spaces instead."; \
331 exit 1; \
332 fi
333 .PHONY: check-tabs
334
335 ALL_LOCAL += thread-safety-check
336 thread-safety-check:
337 @cd $(srcdir); \
338 if test -e .git && (git --version) >/dev/null 2>&1 && \
339 grep -n -f build-aux/thread-safety-blacklist \
340 `git ls-files | grep '\.[ch]$$' \
341 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` /dev/null \
342 | $(EGREP) -v ':[ ]*/?\*'; \
343 then \
344 echo "See above for list of calls to functions that are"; \
345 echo "blacklisted due to thread safety issues"; \
346 exit 1; \
347 fi
348 EXTRA_DIST += build-aux/thread-safety-blacklist
349 .PHONY: thread-safety-check
350
351 # Check that "ip" is used in preference to "ifconfig", because
352 # "ifconfig" is not installed ubiquitously anymore.
353 ALL_LOCAL += check-ifconfig
354 check-ifconfig:
355 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
356 (cd $(srcdir) && git --no-pager grep -l -E -e 'ifconfig' | \
357 $(EGREP) -v 'Makefile.am|ovs-vsctl-bashcomp|openvswitch-custom\.te'); \
358 then \
359 echo "See above for list of files that use or reference"; \
360 echo "'ifconfig'. Please use 'ip' instead."; \
361 exit 1; \
362 fi
363 .PHONY: check-ifconfig
364
365 if HAVE_GROFF
366 ALL_LOCAL += manpage-check
367 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
368 @error=false; \
369 for manpage in $?; do \
370 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; \
371 if grep warning: $@.tmp; then error=:; fi; \
372 rm -f $@.tmp; \
373 done; \
374 if $$error; then exit 1; else touch $@; fi
375 $(AM_V_GEN) touch -c $@
376 CLEANFILES += manpage-check
377 endif
378
379 if HAVE_FLAKE8
380 ALL_LOCAL += flake8-check
381 # http://flake8.readthedocs.org/en/latest/user/error-codes.html
382 # All warnings explicitly selected or ignored should be listed below.
383 #
384 # E***, W*** -- warnings from pep8
385 # E121 continuation line under-indented for hanging indent (only from flake8 v2.0)
386 # E123 closing bracket does not match indentation of opening bracket's line
387 # E125 continuation line with same indent as next logical line (only from flake8 v2.0)
388 # E126 continuation line over-indented for hanging indent
389 # E127 continuation line over-indented for visual indent
390 # E128 continuation line under-indented for visual indent
391 # E129 visually indented line with same indent as next logical line
392 # E131 continuation line unaligned for hanging indent
393 # E722 do not use bare except, specify exception instead
394 # W503 line break before binary operator
395 # W504 line break after binary operator
396 # F*** -- warnings native to flake8
397 # F811 redefinition of unused <name> from line <N> (only from flake8 v2.0)
398 # D*** -- warnings from flake8-docstrings plugin
399 # H*** -- warnings from flake8 hacking plugin (custom style checks beyond PEP8)
400 # H231 Python 3.x incompatible 'except x,y:' construct
401 # H232 Python 3.x incompatible octal 077 should be written as 0o77
402 # H233 Python 3.x incompatible use of print operator
403 # H238 old style class declaration, use new style (inherit from `object`)
404 FLAKE8_SELECT = H231,H232,H233,H238
405 FLAKE8_IGNORE = E121,E123,E125,E126,E127,E128,E129,E131,E722,W503,W504,F811,D,H,I
406 flake8-check: $(FLAKE8_PYFILES)
407 $(FLAKE8_WERROR)$(AM_V_GEN) \
408 src='$^' && \
409 flake8 $$src --select=$(FLAKE8_SELECT) $(FLAKE8_FLAGS) && \
410 flake8 $$src --ignore=$(FLAKE8_IGNORE) $(FLAKE8_FLAGS) && \
411 touch $@
412 endif
413 CLEANFILES += flake8-check
414
415 include $(srcdir)/manpages.mk
416 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.py python/build/soutil.py
417 @PYTHONPATH=$$PYTHONPATH$(psep)$(srcdir)/python $(PYTHON3) $(srcdir)/build-aux/sodepends.py -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
418 @if cmp -s $(@F).tmp $@; then \
419 touch $@; \
420 rm -f $(@F).tmp; \
421 else \
422 mv $(@F).tmp $@; \
423 fi
424 CLEANFILES += manpage-dep-check
425
426 if VSTUDIO_DDK
427 ALL_LOCAL += ovsext
428 ARCH = x64
429 ovsext: datapath-windows/ovsext.sln $(srcdir)/datapath-windows/include/OvsDpInterface.h
430 if VSTUDIO_WIN8
431 MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)" //p:Platform=$(ARCH)
432 endif
433 if VSTUDIO_WIN8_1
434 MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8.1$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)" //p:Platform=$(ARCH)
435 endif
436 if VSTUDIO_WIN10
437 MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win10$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)" //p:Platform=$(ARCH)
438 endif
439
440
441 CLEAN_LOCAL += ovsext_clean
442 ovsext_clean: datapath-windows/ovsext.sln
443 if VSTUDIO_WIN8
444 MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)" //p:Platform=$(ARCH)
445 endif
446 if VSTUDIO_WIN8_1
447 MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8.1$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)" //p:Platform=$(ARCH)
448 endif
449 if VSTUDIO_WIN10
450 MSBuild.exe //nologo //maxcpucount datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win10$(VSTUDIO_CONFIG)" /property:Version="$(PACKAGE_VERSION)" //p:Platform=$(ARCH)
451 endif
452 endif
453 .PHONY: ovsext
454
455 clang-analyze: clean
456 @which clang scan-build >/dev/null 2>&1 || \
457 (echo "Unable to find clang/scan-build, Install clang,clang-analyzer packages"; exit 1)
458 @$(MKDIR_P) "$(srcdir)/tests/clang-analyzer-results"
459 @scan-build -o $(srcdir)/tests/clang-analyzer-results --use-cc=$(CC) $(MAKE)
460 .PHONY: clang-analyze
461
462 dist-hook: $(DIST_HOOKS)
463 all-local: $(ALL_LOCAL)
464 clean-local: $(CLEAN_LOCAL)
465 install-data-local: $(INSTALL_DATA_LOCAL)
466 uninstall-local: $(UNINSTALL_LOCAL)
467 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
468
469 modules_install:
470 if LINUX_ENABLED
471 cd datapath/linux && $(MAKE) modules_install
472 endif
473
474 dist-docs:
475 VERSION=$(VERSION) MAKE='$(MAKE)' $(srcdir)/build-aux/dist-docs $(srcdir) $(docs)
476 .PHONY: dist-docs
477
478 include Documentation/automake.mk
479 include m4/automake.mk
480 include lib/automake.mk
481 include ofproto/automake.mk
482 include utilities/automake.mk
483 include tests/automake.mk
484 include include/automake.mk
485 include third-party/automake.mk
486 include debian/automake.mk
487 include ipsec/automake.mk
488 include vswitchd/automake.mk
489 include ovsdb/automake.mk
490 include rhel/automake.mk
491 include xenserver/automake.mk
492 include python/automake.mk
493 include tutorial/automake.mk
494 include vtep/automake.mk
495 include datapath-windows/automake.mk
496 include datapath-windows/include/automake.mk
497 include windows/automake.mk
498 include selinux/automake.mk
499 include build-aux/automake.mk