Makefile.am: Properly indent INSTALL.DPDK
[cascardo/ovs.git] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 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 endif
23
24 AM_CPPFLAGS += -I $(top_srcdir)/include
25 AM_CPPFLAGS += -I $(top_builddir)/include
26 AM_CPPFLAGS += -I $(top_srcdir)/lib
27 AM_CPPFLAGS += -I $(top_builddir)/lib
28
29 AM_CPPFLAGS += $(SSL_INCLUDES)
30
31 AM_CFLAGS = -Wstrict-prototypes
32 AM_CFLAGS += $(WARNING_FLAGS)
33 AM_CFLAGS += $(OVS_CFLAGS)
34
35 if NDEBUG
36 AM_CPPFLAGS += -DNDEBUG
37 AM_CFLAGS += -fomit-frame-pointer
38 endif
39
40 if WIN32
41 psep=";"
42 else
43 psep=":"
44 endif
45 # PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo
46 # files.  Creating .py[co] works OK for any given version of Open
47 # vSwitch, but it causes trouble if you switch from a version with
48 # foo/__init__.py into an (older) version with plain foo.py, since
49 # foo/__init__.pyc will cause Python to ignore foo.py.
50 if INCLUDE_PYTHON_COMPAT
51 run_python = PYTHONPATH=$(top_srcdir)/python$(psep)$(top_srcdir)/python/compat$(psep)$$PYTHONPATH
52 else
53 run_python = PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH
54 endif
55 run_python += PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
56
57
58 ALL_LOCAL =
59 BUILT_SOURCES =
60 CLEANFILES =
61 CLEAN_LOCAL =
62 DISTCLEANFILES =
63 PYCOV_CLEAN_FILES = build-aux/check-structs,cover
64 EXTRA_DIST = \
65         CONTRIBUTING \
66         CodingStyle \
67         DESIGN \
68         FAQ \
69         INSTALL \
70         INSTALL.Debian \
71         INSTALL.Docker \
72         INSTALL.DPDK \
73         INSTALL.Fedora \
74         INSTALL.KVM \
75         INSTALL.Libvirt \
76         INSTALL.NetBSD \
77         INSTALL.RHEL \
78         INSTALL.SSL \
79         INSTALL.XenServer \
80         INSTALL.userspace \
81         INSTALL.Windows \
82         IntegrationGuide \
83         NOTICE \
84         OPENFLOW-1.1+ \
85         PORTING \
86         README.md \
87         README-lisp \
88         REPORTING-BUGS \
89         TODO \
90         .travis.yml \
91         .travis/build.sh \
92         .travis/prepare.sh \
93         WHY-OVS \
94         boot.sh \
95         build-aux/cccl \
96         build-aux/sodepends.pl \
97         build-aux/soexpand.pl \
98         $(MAN_FRAGMENTS) \
99         $(MAN_ROOTS)
100 bin_PROGRAMS =
101 sbin_PROGRAMS =
102 bin_SCRIPTS =
103 DIST_HOOKS =
104 dist_man_MANS =
105 dist_pkgdata_DATA =
106 dist_pkgdata_SCRIPTS =
107 dist_sbin_SCRIPTS =
108 dist_scripts_SCRIPTS =
109 dist_scripts_DATA =
110 INSTALL_DATA_LOCAL =
111 UNINSTALL_LOCAL =
112 man_MANS =
113 MAN_FRAGMENTS =
114 MAN_ROOTS =
115 noinst_DATA =
116 noinst_HEADERS =
117 lib_LTLIBRARIES =
118 noinst_man_MANS =
119 noinst_PROGRAMS =
120 noinst_SCRIPTS =
121 OVSIDL_BUILT =
122 pkgdata_DATA =
123 sbin_SCRIPTS =
124 scripts_SCRIPTS =
125 scripts_DATA =
126 SUFFIXES =
127 check_DATA =
128
129 scriptsdir = $(pkgdatadir)/scripts
130
131 # This ensures that files added to EXTRA_DIST are always distributed,
132 # even if they are inside an Automake if...endif conditional block that is
133 # disabled by some particular "configure" run.  For more information, see:
134 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
135 noinst_HEADERS += $(EXTRA_DIST)
136
137 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
138 ro_shell = printf '\043 Generated automatically -- do not modify!    -*- buffer-read-only: t -*-\n'
139
140 SUFFIXES += .in
141 .in:
142         $(AM_V_GEN)$(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
143             sed \
144                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
145                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
146                 -e 's,[@]DBDIR[@],$(DBDIR),g' \
147                 -e 's,[@]PERL[@],$(PERL),g' \
148                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
149                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
150                 -e 's,[@]VERSION[@],$(VERSION),g' \
151                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
152                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
153                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
154                 -e 's,[@]bindir[@],$(bindir),g' \
155                 -e 's,[@]sbindir[@],$(sbindir),g' \
156                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
157             > $@.tmp
158         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
159             chmod +x $@.tmp; \
160         fi
161         $(AM_V_at) mv $@.tmp $@
162
163 .PHONY: clean-pycov
164 clean-pycov:
165         cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
166 CLEAN_LOCAL += clean-pycov
167
168 # If we're checked out from a Git repository, make sure that every
169 # file that is in Git is distributed.
170 #
171 # We only enable this check when GNU make is in use because the
172 # Makefile in datapath/linux, needed to get the list of files to
173 # distribute, requires GNU make extensions.
174 if GNU_MAKE
175 ALL_LOCAL += dist-hook-git
176 dist-hook-git: distfiles
177         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
178           (cd datapath && $(MAKE) distfiles);                               \
179           (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) |        \
180             LC_ALL=C sort -u > all-distfiles;                               \
181           (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' |        \
182             LC_ALL=C sort -u > all-gitfiles;                                \
183           LC_ALL=C comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
184           if test -s missing-distfiles; then                                \
185             echo "The distribution is missing the following files:";        \
186             cat missing-distfiles;                                          \
187             exit 1;                                                         \
188           fi;                                                               \
189         fi
190 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
191 # The following is based on commands for the Automake "distdir" target.
192 distfiles: Makefile
193         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
194         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
195         list='$(DISTFILES)'; \
196         for file in $$list; do echo $$file; done | \
197           sed -e "s|^$$srcdirstrip/||;t" \
198               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | \
199           LC_ALL=C sort -u > $@
200 CLEANFILES += distfiles
201 endif
202 .PHONY: dist-hook-git
203
204 # Check that every .c file includes <config.h>.
205 ALL_LOCAL += config-h-check
206 config-h-check:
207         @cd $(srcdir); \
208         if test -e .git && (git --version) >/dev/null 2>&1 && \
209            git --no-pager grep -L '#include <config\.h>' `git ls-files | grep '\.c$$' | \
210                grep -vE '^datapath|^lib/sflow|^third-party|^datapath-windows'`; \
211         then \
212             echo "See above for list of violations of the rule that"; \
213             echo "every C source file must #include <config.h>."; \
214             exit 1; \
215         fi
216 .PHONY: config-h-check
217
218 # Check for printf() type modifiers that MSVC doesn't support.
219 ALL_LOCAL += printf-check
220 printf-check:
221         @cd $(srcdir); \
222         if test -e .git && (git --version) >/dev/null 2>&1 && \
223            git --no-pager grep -n -E -e '%[-+ #0-9.*]*([ztj]|hh)' --and --not -e 'ovs_scan' `git ls-files | grep '\.[ch]$$' | \
224                grep -vE '^datapath|^lib/sflow|^third-party'`; \
225         then \
226             echo "See above for list of violations of the rule that"; \
227             echo "'z', 't', 'j', 'hh' printf() type modifiers are"; \
228             echo "forbidden.  See CodingStyle for replacements."; \
229             exit 1; \
230         fi
231 .PHONY: printf-check
232
233 # Check that certain data structures are always declared "static".
234 ALL_LOCAL += static-check
235 static-check:
236         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
237             git --no-pager grep -n -E '^[       ]+(struct vlog_rate_limit|pthread_once_t|struct ovsthread_once).*=' $(srcdir); \
238          then \
239             echo "See above for list of violations of the rule that "; \
240             echo "certain data structures must always be 'static'"; \
241             exit 1; \
242          fi
243 .PHONY: static-check
244
245 # Check that assert.h is not used outside a whitelist of files.
246 ALL_LOCAL += check-assert-h-usage
247 check-assert-h-usage:
248         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
249             (cd $(srcdir) && git --no-pager grep -l -E '[<]assert.h[>]') | \
250             $(EGREP) -v '^lib/(sflow_receiver|vlog).c$$|^tests/'; \
251          then \
252             echo "Files listed above unexpectedly #include <""assert.h"">."; \
253             echo "Please use ovs_assert (from util.h) instead of assert."; \
254             exit 1; \
255          fi
256 .PHONY: check-assert-h-usage
257
258 ALL_LOCAL += thread-safety-check
259 thread-safety-check:
260         @cd $(srcdir); \
261         if test -e .git && (git --version) >/dev/null 2>&1 && \
262            grep -n -f build-aux/thread-safety-blacklist \
263                `git ls-files | grep '\.[ch]$$' \
264                 | $(EGREP) -v '^datapath|^lib/sflow|^third-party'` /dev/null \
265                | $(EGREP) -v ':[        ]*/?\*'; \
266         then \
267             echo "See above for list of calls to functions that are"; \
268             echo "blacklisted due to thread safety issues"; \
269             exit 1; \
270         fi
271 EXTRA_DIST += build-aux/thread-safety-blacklist
272
273 if HAVE_GROFF
274 ALL_LOCAL += manpage-check
275 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
276         @error=false; \
277         for manpage in $?; do \
278                 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; \
279                 if grep warning: $@.tmp; then error=:; fi; \
280                 rm -f $@.tmp; \
281         done; \
282         if $$error; then exit 1; else touch $@; fi
283         $(AM_V_GEN) touch -c $@
284 CLEANFILES += manpage-check
285 endif
286
287 include $(srcdir)/manpages.mk
288 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
289         @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
290         @if cmp -s $(@F).tmp $@; then \
291                 touch $@; \
292                 rm -f $(@F).tmp; \
293         else \
294                 mv $(@F).tmp $@; \
295         fi
296 CLEANFILES += manpage-dep-check
297
298 if VSTUDIO_DDK
299 ALL_LOCAL += ovsext_make
300 ovsext_make: datapath-windows/ovsext.sln
301         MSBuild.exe datapath-windows/ovsext.sln /target:Build /property:Configuration="$(VSTUDIO_CONFIG)"
302
303 CLEAN_LOCAL += ovsext_clean
304 ovsext_clean: datapath-windows/ovsext.sln
305         MSBuild.exe datapath-windows/ovsext.sln /target:Clean /property:Configuration="$(VSTUDIO_CONFIG)"
306 endif
307
308 dist-hook: $(DIST_HOOKS)
309 all-local: $(ALL_LOCAL)
310 clean-local: $(CLEAN_LOCAL)
311 install-data-local: $(INSTALL_DATA_LOCAL)
312 uninstall-local: $(UNINSTALL_LOCAL)
313 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
314
315 modules_install:
316 if LINUX_ENABLED
317         cd datapath/linux && $(MAKE) modules_install
318 endif
319
320 include m4/automake.mk
321 include lib/automake.mk
322 include ofproto/automake.mk
323 include utilities/automake.mk
324 include tests/automake.mk
325 include include/automake.mk
326 include third-party/automake.mk
327 include debian/automake.mk
328 include vswitchd/automake.mk
329 include ovsdb/automake.mk
330 include rhel/automake.mk
331 include xenserver/automake.mk
332 include python/automake.mk
333 include python/compat/automake.mk
334 include tutorial/automake.mk
335 include vtep/automake.mk
336 include datapath-windows/automake.mk
337 include datapath-windows/include/automake.mk