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