Add some more flake8 types to ignore list to fix the compilation errors
[cascardo/ovs.git] / Makefile.am
1 # Copyright (C) 2007-2015 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 # A list of Markdown-formatted documentation that will automatically be
67 # included in the "make dist-docs" output.
68 docs = \
69         CONTRIBUTING.md \
70         CodingStyle.md \
71         DESIGN.md \
72         FAQ.md \
73         INSTALL.md \
74         INSTALL.Debian.md \
75         INSTALL.Docker.md \
76         INSTALL.DPDK.md \
77         INSTALL.Fedora.md \
78         INSTALL.KVM.md \
79         INSTALL.Libvirt.md \
80         INSTALL.NetBSD.md \
81         INSTALL.RHEL.md \
82         INSTALL.SSL.md \
83         INSTALL.XenServer.md \
84         INSTALL.userspace.md \
85         INSTALL.Windows.md \
86         IntegrationGuide.md \
87         OPENFLOW-1.1+.md \
88         PORTING.md \
89         README.md \
90         README-lisp.md \
91         README-native-tunneling.md \
92         REPORTING-BUGS.md \
93         SECURITY.md \
94         TODO.md \
95         WHY-OVS.md
96 EXTRA_DIST = \
97         $(docs) \
98         NOTICE \
99         .travis.yml \
100         .travis/build.sh \
101         .travis/prepare.sh \
102         appveyor.yml \
103         boot.sh \
104         build-aux/cccl \
105         build-aux/cksum-schema-check \
106         build-aux/dist-docs \
107         build-aux/sodepends.pl \
108         build-aux/soexpand.pl \
109         build-aux/xml2nroff \
110         $(MAN_FRAGMENTS) \
111         $(MAN_ROOTS) \
112         Vagrantfile
113 bin_PROGRAMS =
114 sbin_PROGRAMS =
115 bin_SCRIPTS =
116 DIST_HOOKS =
117 dist_man_MANS =
118 dist_pkgdata_DATA =
119 dist_pkgdata_SCRIPTS =
120 dist_sbin_SCRIPTS =
121 dist_scripts_SCRIPTS =
122 dist_scripts_DATA =
123 INSTALL_DATA_LOCAL =
124 UNINSTALL_LOCAL =
125 man_MANS =
126 MAN_FRAGMENTS =
127 MAN_ROOTS =
128 noinst_DATA =
129 noinst_HEADERS =
130 lib_LTLIBRARIES =
131 noinst_man_MANS =
132 noinst_PROGRAMS =
133 noinst_SCRIPTS =
134 OVSIDL_BUILT =
135 pkgdata_DATA =
136 sbin_SCRIPTS =
137 scripts_SCRIPTS =
138 completion_SCRIPTS =
139 scripts_DATA =
140 SUFFIXES =
141 check_DATA =
142 check_SCRIPTS =
143 pkgconfig_DATA =
144 FLAKE8_PYFILES =
145
146 scriptsdir = $(pkgdatadir)/scripts
147 completiondir = $(sysconfdir)/bash_completion.d
148 pkgconfigdir = $(libdir)/pkgconfig
149
150 # This ensures that files added to EXTRA_DIST are always distributed,
151 # even if they are inside an Automake if...endif conditional block that is
152 # disabled by some particular "configure" run.  For more information, see:
153 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
154 noinst_HEADERS += $(EXTRA_DIST)
155
156 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
157 ro_shell = printf '\043 Generated automatically -- do not modify!    -*- buffer-read-only: t -*-\n'
158
159 SUFFIXES += .in
160 .in:
161         $(AM_V_GEN)$(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
162             sed \
163                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
164                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
165                 -e 's,[@]DBDIR[@],$(DBDIR),g' \
166                 -e 's,[@]PERL[@],$(PERL),g' \
167                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
168                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
169                 -e 's,[@]VERSION[@],$(VERSION),g' \
170                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
171                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
172                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
173                 -e 's,[@]bindir[@],$(bindir),g' \
174                 -e 's,[@]sbindir[@],$(sbindir),g' \
175                 -e 's,[@]abs_builddir[@],$(abs_builddir),g' \
176                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
177             > $@.tmp
178         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
179             chmod +x $@.tmp; \
180         fi
181         $(AM_V_at) mv $@.tmp $@
182
183 SUFFIXES += .xml
184 %: %.xml
185         $(AM_V_GEN)$(run_python) $(srcdir)/build-aux/xml2nroff $< > $@.tmp \
186                 --version=$(VERSION) \
187                 PKIDIR='$(PKIDIR)' \
188                 LOGDIR='$(LOGDIR)' \
189                 DBDIR='$(DBDIR)' \
190                 PERL='$(PERL)' \
191                 PYTHON='$(PYTHON)' \
192                 RUNDIR='$(RUNDIR)' \
193                 VERSION='$(VERSION)' \
194                 localstatedir='$(localstatedir)' \
195                 pkgdatadir='$(pkgdatadir)' \
196                 sysconfdir='$(sysconfdir)' \
197                 bindir='$(bindir)' \
198                 sbindir='$(sbindir)'
199         $(AM_v_at)mv $@.tmp $@
200
201 .PHONY: clean-pycov
202 clean-pycov:
203         cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
204 CLEAN_LOCAL += clean-pycov
205
206 # If we're checked out from a Git repository, make sure that every
207 # file that is in Git is distributed.
208 #
209 # We only enable this check when GNU make is in use because the
210 # Makefile in datapath/linux, needed to get the list of files to
211 # distribute, requires GNU make extensions.
212 if GNU_MAKE
213 ALL_LOCAL += dist-hook-git
214 dist-hook-git: distfiles
215         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
216           (cd datapath && $(MAKE) distfiles);                               \
217           (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) |        \
218             LC_ALL=C sort -u > all-distfiles;                               \
219           (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' |        \
220             LC_ALL=C sort -u > all-gitfiles;                                \
221           LC_ALL=C comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
222           if test -s missing-distfiles; then                                \
223             echo "The following files are in git but not the distribution:"; \
224             cat missing-distfiles;                                          \
225             exit 1;                                                         \
226           fi;                                                               \
227         fi
228 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
229 # The following is based on commands for the Automake "distdir" target.
230 distfiles: Makefile
231         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
232         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
233         list='$(DISTFILES)'; \
234         for file in $$list; do echo $$file; done | \
235           sed -e "s|^$$srcdirstrip/||;t" \
236               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | \
237           LC_ALL=C sort -u > $@
238 CLEANFILES += distfiles
239 endif
240 .PHONY: dist-hook-git
241
242 # Check that every .c file includes <config.h>.
243 ALL_LOCAL += config-h-check
244 config-h-check:
245         @cd $(srcdir); \
246         if test -e .git && (git --version) >/dev/null 2>&1 && \
247            git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
248                grep -vE '^datapath|^lib/sflow|^third-party|^datapath-windows'`; \
249         then \
250             echo "See above for list of violations of the rule that"; \
251             echo "every C source file must #include <config.h>."; \
252             exit 1; \
253         fi
254 .PHONY: config-h-check
255
256 # Check for printf() type modifiers that MSVC doesn't support.
257 ALL_LOCAL += printf-check
258 printf-check:
259         @cd $(srcdir); \
260         if test -e .git && (git --version) >/dev/null 2>&1 && \
261            git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files | grep '\.[ch]$$' | \
262                grep -vE '^datapath|^lib/sflow|^third-party'`; \
263         then \
264             echo "See above for list of violations of the rule that"; \
265             echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \
266             echo "forbidden.  See CodingStyle.md for replacements."; \
267             exit 1; \
268         fi
269 .PHONY: printf-check
270
271 # Check that certain data structures are always declared "static".
272 ALL_LOCAL += static-check
273 static-check:
274         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
275             git --no-pager grep -n -E '^[       ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
276          then \
277             echo "See above for list of violations of the rule that "; \
278             echo "certain data structures must always be 'static'"; \
279             exit 1; \
280          fi
281 .PHONY: static-check
282
283 # Check that assert.h is not used outside a whitelist of files.
284 ALL_LOCAL += check-assert-h-usage
285 check-assert-h-usage:
286         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
287             (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
288             $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
289          then \
290             echo "Files listed above unexpectedly #include <""assert.h"">."; \
291             echo "Please use ovs_assert (from util.h) instead of assert."; \
292             exit 1; \
293          fi
294 .PHONY: check-assert-h-usage
295
296 # Check that LITTLE_ENDIAN and BIG_ENDIAN are not used unless BYTE_ORDER is
297 # also mentioned.  (<endian.h> always defines the former two constants.  They
298 # must be compared to BYTE_ORDER to get the machine's correct endianness.  But
299 # it is better to use WORDS_BIGENDIAN.)
300 ALL_LOCAL += check-endian
301 check-endian:
302         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
303             (cd $(srcdir) && git --no-pager grep -l -E \
304              -e 'BIG_ENDIAN|LITTLE_ENDIAN' --and --not -e 'BYTE_ORDER' | \
305             $(EGREP) -v '^datapath/'); \
306          then \
307             echo "See above for list of files that misuse LITTLE""_ENDIAN"; \
308             echo "or BIG""_ENDIAN.  Please use WORDS_BIGENDIAN instead."; \
309             exit 1; \
310          fi
311 .PHONY: check-endian
312
313 ALL_LOCAL += thread-safety-check
314 thread-safety-check:
315         @cd $(srcdir); \
316         if test -e .git && (git --version) >/dev/null 2>&1 && \
317            grep -n -f build-aux/thread-safety-blacklist \
318                `git ls-files | grep '\.[ch]$$' \
319                 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` /dev/null \
320                | $(EGREP) -v ':[        ]*/?\*'; \
321         then \
322             echo "See above for list of calls to functions that are"; \
323             echo "blacklisted due to thread safety issues"; \
324             exit 1; \
325         fi
326 EXTRA_DIST += build-aux/thread-safety-blacklist
327 .PHONY: thread-safety-check
328
329 if HAVE_GROFF
330 ALL_LOCAL += manpage-check
331 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
332         @error=false; \
333         for manpage in $?; do \
334                 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; \
335                 if grep warning: $@.tmp; then error=:; fi; \
336                 rm -f $@.tmp; \
337         done; \
338         if $$error; then exit 1; else touch $@; fi
339         $(AM_V_GEN) touch -c $@
340 CLEANFILES += manpage-check
341 endif
342
343 if HAVE_FLAKE8
344 ALL_LOCAL += flake8-check
345 # http://flake8.readthedocs.org/en/latest/warnings.html
346 # E123 closing bracket does not match indentation of opening bracket's line
347 # E126 continuation line over-indented for hanging indent
348 # E127 continuation line over-indented for visual indent
349 # E128 continuation line under-indented for visual indent
350 # E129 visually indented line with same indent as next logical line
351 # E131 continuation line unaligned for hanging indent
352 # W503 line break before binary operator
353 # D*** -- warnings from flake8-docstrings plugin
354 # H*** -- warnings from flake8 hacking plugin (custom style checks beyond PEP8)
355 flake8-check: $(FLAKE8_PYFILES)
356         $(AM_V_GEN) if flake8 $^ --ignore=E123,E126,E127,E128,E129,E131,W503,D100,D101,D102,D103,D104,D105,D200,D202,D203,D204,D205,D207,D208,D209,D210,D400,D401,H104,H201,H231,H232,H233,H238,H301,H306,H401,H403,H404,H405 ${FLAKE8_FLAGS}; then touch $@; else exit 1; fi
357 endif
358
359 include $(srcdir)/manpages.mk
360 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
361         @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
362         @if cmp -s $(@F).tmp $@; then \
363                 touch $@; \
364                 rm -f $(@F).tmp; \
365         else \
366                 mv $(@F).tmp $@; \
367         fi
368 CLEANFILES += manpage-dep-check
369
370 if VSTUDIO_DDK
371 ALL_LOCAL += ovsext_make
372 ovsext_make: datapath-windows/ovsext.sln
373         MSBuild.exe datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8$(VSTUDIO_CONFIG)"
374         MSBuild.exe datapath-windows/ovsext.sln /target:Build /property:Configuration="Win8.1$(VSTUDIO_CONFIG)"
375
376 CLEAN_LOCAL += ovsext_clean
377 ovsext_clean: datapath-windows/ovsext.sln
378         MSBuild.exe datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8$(VSTUDIO_CONFIG)"
379         MSBuild.exe datapath-windows/ovsext.sln /target:Clean /property:Configuration="Win8.1$(VSTUDIO_CONFIG)"
380 endif
381 .PHONY: ovsext_make
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) $(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