]> git.proxmox.com Git - mirror_ovs.git/blob - Makefile.am
datapath-windows: Force driver version to depend on a variable
[mirror_ovs.git] / Makefile.am
1 # Copyright (C) 2007-2016 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 if WIN32
46 psep=";"
47 else
48 psep=":"
49 endif
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.
55 run_python = \
56 PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH \
57 PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
58
59 ALL_LOCAL =
60 BUILT_SOURCES =
61 CLEANFILES =
62 CLEAN_LOCAL =
63 DISTCLEANFILES =
64 PYCOV_CLEAN_FILES = build-aux/check-structs,cover
65
66 EXTRA_DIST = \
67 AUTHORS.rst \
68 CONTRIBUTING.rst \
69 MAINTAINERS.rst \
70 README.rst \
71 NOTICE \
72 .travis.yml \
73 .travis/linux-build.sh \
74 .travis/linux-prepare.sh \
75 .travis/osx-build.sh \
76 .travis/osx-prepare.sh \
77 appveyor.yml \
78 boot.sh \
79 build-aux/cccl \
80 build-aux/cksum-schema-check \
81 build-aux/calculate-schema-cksum \
82 build-aux/dist-docs \
83 build-aux/sodepends.pl \
84 build-aux/soexpand.pl \
85 build-aux/xml2nroff \
86 $(MAN_FRAGMENTS) \
87 $(MAN_ROOTS) \
88 Vagrantfile \
89 Vagrantfile-FreeBSD \
90 .mailmap
91 bin_PROGRAMS =
92 sbin_PROGRAMS =
93 bin_SCRIPTS =
94 DIST_HOOKS =
95 dist_man_MANS =
96 dist_pkgdata_DATA =
97 dist_pkgdata_SCRIPTS =
98 dist_sbin_SCRIPTS =
99 dist_scripts_SCRIPTS =
100 dist_scripts_DATA =
101 INSTALL_DATA_LOCAL =
102 UNINSTALL_LOCAL =
103 man_MANS =
104 MAN_FRAGMENTS =
105 MAN_ROOTS =
106 noinst_DATA =
107 noinst_HEADERS =
108 lib_LTLIBRARIES =
109 noinst_man_MANS =
110 noinst_PROGRAMS =
111 noinst_SCRIPTS =
112 OVSIDL_BUILT =
113 pkgdata_DATA =
114 sbin_SCRIPTS =
115 scripts_SCRIPTS =
116 completion_SCRIPTS =
117 scripts_DATA =
118 SUFFIXES =
119 check_DATA =
120 check_SCRIPTS =
121 pkgconfig_DATA =
122 FLAKE8_PYFILES =
123
124 scriptsdir = $(pkgdatadir)/scripts
125 completiondir = $(sysconfdir)/bash_completion.d
126 pkgconfigdir = $(libdir)/pkgconfig
127
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
132 noinst_HEADERS += $(EXTRA_DIST)
133
134 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
135 ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
136
137 SUFFIXES += .in
138 .in:
139 $(AM_V_GEN)$(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
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
156 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
157 chmod +x $@.tmp; \
158 fi
159 $(AM_V_at) mv $@.tmp $@
160
161 SUFFIXES += .xml
162 %: %.xml
163 $(AM_V_GEN)$(run_python) $(srcdir)/build-aux/xml2nroff $< > $@.tmp \
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)'
178 $(AM_v_at)mv $@.tmp $@
179
180 .PHONY: clean-pycov
181 clean-pycov:
182 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
183 CLEAN_LOCAL += clean-pycov
184
185 # If we're checked out from a Git repository, make sure that every
186 # file that is in Git is distributed.
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.
191 if GNU_MAKE
192 ALL_LOCAL += dist-hook-git
193 dist-hook-git: distfiles
194 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
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; \
200 LC_ALL=C comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
201 if test -s missing-distfiles; then \
202 echo "The following files are in git but not the distribution:"; \
203 cat missing-distfiles; \
204 exit 1; \
205 fi; \
206 fi
207 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
208 # The following is based on commands for the Automake "distdir" target.
209 distfiles: 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" \
215 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | \
216 LC_ALL=C sort -u > $@
217 CLEANFILES += distfiles
218 endif
219 .PHONY: dist-hook-git
220
221 # Check that every .c file includes <config.h>.
222 ALL_LOCAL += config-h-check
223 config-h-check:
224 @cd $(srcdir); \
225 if test -e .git && (git --version) >/dev/null 2>&1 && \
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'`; \
228 then \
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; \
232 fi
233 .PHONY: config-h-check
234
235 # Check for printf() type modifiers that MSVC doesn't support.
236 ALL_LOCAL += printf-check
237 printf-check:
238 @cd $(srcdir); \
239 if test -e .git && (git --version) >/dev/null 2>&1 && \
240 git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files | grep '\.[ch]$$' | \
241 grep -vE '^datapath|^lib/sflow|^third-party'`; \
242 then \
243 echo "See above for list of violations of the rule that"; \
244 echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \
245 echo "forbidden. See CodingStyle.rst for replacements."; \
246 exit 1; \
247 fi
248 .PHONY: printf-check
249
250 # Check that certain data structures are always declared "static".
251 ALL_LOCAL += static-check
252 static-check:
253 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
254 git --no-pager grep -n -E '^[ ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
255 then \
256 echo "See above for list of violations of the rule that "; \
257 echo "certain data structures must always be 'static'"; \
258 exit 1; \
259 fi
260 .PHONY: static-check
261
262 # Check that assert.h is not used outside a whitelist of files.
263 ALL_LOCAL += check-assert-h-usage
264 check-assert-h-usage:
265 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
266 (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
267 $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
268 then \
269 echo "Files listed above unexpectedly #include <""assert.h"">."; \
270 echo "Please use ovs_assert (from util.h) instead of assert."; \
271 exit 1; \
272 fi
273 .PHONY: check-assert-h-usage
274
275 # Check that LITTLE_ENDIAN and BIG_ENDIAN are not used unless BYTE_ORDER is
276 # also mentioned. (<endian.h> always defines the former two constants. They
277 # must be compared to BYTE_ORDER to get the machine's correct endianness. But
278 # it is better to use WORDS_BIGENDIAN.)
279 ALL_LOCAL += check-endian
280 check-endian:
281 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
282 (cd $(srcdir) && git --no-pager grep -l -E \
283 -e 'BIG_ENDIAN|LITTLE_ENDIAN' --and --not -e 'BYTE_ORDER' | \
284 $(EGREP) -v '^datapath/'); \
285 then \
286 echo "See above for list of files that misuse LITTLE""_ENDIAN"; \
287 echo "or BIG""_ENDIAN. Please use WORDS_BIGENDIAN instead."; \
288 exit 1; \
289 fi
290 .PHONY: check-endian
291
292 ALL_LOCAL += thread-safety-check
293 thread-safety-check:
294 @cd $(srcdir); \
295 if test -e .git && (git --version) >/dev/null 2>&1 && \
296 grep -n -f build-aux/thread-safety-blacklist \
297 `git ls-files | grep '\.[ch]$$' \
298 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` /dev/null \
299 | $(EGREP) -v ':[ ]*/?\*'; \
300 then \
301 echo "See above for list of calls to functions that are"; \
302 echo "blacklisted due to thread safety issues"; \
303 exit 1; \
304 fi
305 EXTRA_DIST += build-aux/thread-safety-blacklist
306 .PHONY: thread-safety-check
307
308 if HAVE_GROFF
309 ALL_LOCAL += manpage-check
310 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
311 @error=false; \
312 for manpage in $?; do \
313 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; \
314 if grep warning: $@.tmp; then error=:; fi; \
315 rm -f $@.tmp; \
316 done; \
317 if $$error; then exit 1; else touch $@; fi
318 $(AM_V_GEN) touch -c $@
319 CLEANFILES += manpage-check
320 endif
321
322 if HAVE_FLAKE8
323 ALL_LOCAL += flake8-check
324 # http://flake8.readthedocs.org/en/latest/warnings.html
325 # All warnings explicitly selected or ignored should be listed below.
326 #
327 # E***, W*** -- warnings from pep8
328 # E121 continuation line under-indented for hanging indent (only from flake8 v2.0)
329 # E123 closing bracket does not match indentation of opening bracket's line
330 # E125 continuation line with same indent as next logical line (only from flake8 v2.0)
331 # E126 continuation line over-indented for hanging indent
332 # E127 continuation line over-indented for visual indent
333 # E128 continuation line under-indented for visual indent
334 # E129 visually indented line with same indent as next logical line
335 # E131 continuation line unaligned for hanging indent
336 # W503 line break before binary operator
337 # F*** -- warnings native to flake8
338 # F811 redefinition of unused <name> from line <N> (only from flake8 v2.0)
339 # D*** -- warnings from flake8-docstrings plugin
340 # H*** -- warnings from flake8 hacking plugin (custom style checks beyond PEP8)
341 # H231 Python 3.x incompatible 'except x,y:' construct
342 # H232 Python 3.x incompatible octal 077 should be written as 0o77
343 # H233 Python 3.x incompatible use of print operator
344 # H238 old style class declaration, use new style (inherit from `object`)
345 flake8-check: $(FLAKE8_PYFILES)
346 $(AM_V_GEN) if flake8 $^ --select=H231,H232,H233,H238 ${FLAKE8_FLAGS} && \
347 flake8 $^ --ignore=E121,E123,E125,E126,E127,E128,E129,E131,W503,F811,D,H ${FLAKE8_FLAGS}; then \
348 touch $@; else exit 1; fi
349 endif
350 CLEANFILES += flake8-check
351
352 include $(srcdir)/manpages.mk
353 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
354 @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
355 @if cmp -s $(@F).tmp $@; then \
356 touch $@; \
357 rm -f $(@F).tmp; \
358 else \
359 mv $(@F).tmp $@; \
360 fi
361 CLEANFILES += manpage-dep-check
362
363 if VSTUDIO_DDK
364 ALL_LOCAL += ovsext
365 ovsext: datapath-windows/ovsext.sln $(srcdir)/datapath-windows/include/OvsDpInterface.h
366 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8$(VSTUDIO_CONFIG)"
367 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8.1$(VSTUDIO_CONFIG)"
368
369 CLEAN_LOCAL += ovsext_clean
370 ovsext_clean: datapath-windows/ovsext.sln
371 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8$(VSTUDIO_CONFIG)"
372 MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8.1$(VSTUDIO_CONFIG)"
373 endif
374 .PHONY: ovsext
375
376 clang-analyze: clean
377 @which clang scan-build >/dev/null 2>&1 || \
378 (echo "Unable to find clang/scan-build, Install clang,clang-analyzer packages"; exit 1)
379 @$(MKDIR_P) "$(srcdir)/tests/clang-analyzer-results"
380 @scan-build -o $(srcdir)/tests/clang-analyzer-results --use-cc=$(CC) $(MAKE)
381 .PHONY: clang-analyze
382
383 dist-hook: $(DIST_HOOKS)
384 all-local: $(ALL_LOCAL)
385 clean-local: $(CLEAN_LOCAL)
386 install-data-local: $(INSTALL_DATA_LOCAL)
387 uninstall-local: $(UNINSTALL_LOCAL)
388 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
389
390 modules_install:
391 if LINUX_ENABLED
392 cd datapath/linux && $(MAKE) modules_install
393 endif
394
395 dist-docs:
396 VERSION=$(VERSION) MAKE='$(MAKE)' $(srcdir)/build-aux/dist-docs $(srcdir) $(docs)
397 .PHONY: dist-docs
398
399 include Documentation/automake.mk
400 include m4/automake.mk
401 include lib/automake.mk
402 include ofproto/automake.mk
403 include utilities/automake.mk
404 include tests/automake.mk
405 include include/automake.mk
406 include third-party/automake.mk
407 include debian/automake.mk
408 include vswitchd/automake.mk
409 include ovsdb/automake.mk
410 include rhel/automake.mk
411 include xenserver/automake.mk
412 include python/automake.mk
413 include tutorial/automake.mk
414 include vtep/automake.mk
415 include datapath-windows/automake.mk
416 include datapath-windows/include/automake.mk
417 include windows/automake.mk
418 include ovn/automake.mk
419 include selinux/automake.mk