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