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