use new vsys promisc script
[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.KVM \
47         INSTALL.Libvirt \
48         INSTALL.RHEL \
49         INSTALL.SSL \
50         INSTALL.XenServer \
51         INSTALL.bridge \
52         INSTALL.userspace \
53         IntegrationGuide \
54         NOTICE \
55         PORTING \
56         README-gcov \
57         REPORTING-BUGS \
58         SubmittingPatches \
59         WHY-OVS \
60         boot.sh \
61         build-aux/sodepends.pl \
62         build-aux/soexpand.pl \
63         $(MAN_FRAGMENTS) \
64         $(MAN_ROOTS)
65 bin_PROGRAMS =
66 sbin_PROGRAMS =
67 bin_SCRIPTS =
68 DIST_HOOKS =
69 dist_man_MANS =
70 dist_pkgdata_DATA =
71 dist_pkgdata_SCRIPTS =
72 dist_sbin_SCRIPTS =
73 dist_scripts_SCRIPTS =
74 dist_scripts_DATA =
75 INSTALL_DATA_LOCAL =
76 UNINSTALL_LOCAL =
77 man_MANS =
78 MAN_FRAGMENTS =
79 MAN_ROOTS =
80 noinst_DATA =
81 noinst_HEADERS =
82 noinst_LIBRARIES =
83 noinst_man_MANS =
84 noinst_PROGRAMS =
85 noinst_SCRIPTS =
86 OVSIDL_BUILT =
87 pkgdata_DATA =
88 sbin_SCRIPTS =
89 scripts_SCRIPTS =
90 scripts_DATA =
91 SUFFIXES =
92 check_DATA =
93
94 scriptsdir = $(pkgdatadir)/scripts
95
96 # This ensures that files added to EXTRA_DIST are always distributed,
97 # even if they are inside an Automake if...endif conditional block that is
98 # disabled by some particular "configure" run.  For more information, see:
99 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
100 noinst_HEADERS += $(EXTRA_DIST)
101
102 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
103 ro_shell = printf '\043 Generated automatically -- do not modify!    -*- buffer-read-only: t -*-\n'
104
105 SUFFIXES += .in
106 .in:
107         @mkdir -p $$(dirname $@)
108         $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
109             sed \
110                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
111                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
112                 -e 's,[@]DBDIR[@],$(DBDIR),g' \
113                 -e 's,[@]PERL[@],$(PERL),g' \
114                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
115                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
116                 -e 's,[@]VERSION[@],$(VERSION),g' \
117                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
118                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
119                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
120                 -e 's,[@]bindir[@],$(bindir),g' \
121                 -e 's,[@]sbindir[@],$(sbindir),g' \
122                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
123                 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
124             > $@.tmp
125         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
126             echo chmod +x $@.tmp; \
127             chmod +x $@.tmp; \
128         fi
129         mv $@.tmp $@
130
131 .PHONY: clean-pycov
132 clean-pycov:
133         cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
134 CLEAN_LOCAL += clean-pycov
135
136 # If we're checked out from a Git repository, make sure that every
137 # file that is in Git is distributed.
138 #
139 # We only enable this check when GNU make is in use because the
140 # Makefile in datapath/linux, needed to get the list of files to
141 # distribute, requires GNU make extensions.
142 if GNU_MAKE
143 ALL_LOCAL += dist-hook-git
144 dist-hook-git: distfiles
145         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
146           (cd datapath && $(MAKE) distfiles);                               \
147           (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) |        \
148             sort -u > all-distfiles;                                        \
149           (cd $(srcdir) && git ls-files) | grep -vFf $(srcdir)/.non-distfiles |     \
150             sort -u > all-gitfiles;                                         \
151           comm -1 -3 all-distfiles all-gitfiles > missing-distfiles;        \
152           if test -s missing-distfiles; then                                \
153             echo "The distribution is missing the following files:";        \
154             cat missing-distfiles;                                          \
155             exit 1;                                                         \
156           fi;                                                               \
157         fi
158 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
159 # The following is based on commands for the Automake "distdir" target.
160 distfiles: Makefile
161         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
162         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
163         list='$(DISTFILES)'; \
164         for file in $$list; do echo $$file; done | \
165           sed -e "s|^$$srcdirstrip/||;t" \
166               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
167 CLEANFILES += distfiles
168 endif
169 .PHONY: dist-hook-git
170
171 # Check that "struct vlog_ratelimit" is always declared "static".
172 ALL_LOCAL += rate-limit-check
173 rate-limit-check:
174         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
175             git --no-pager grep -n -E '^[       ]+struct vlog_rate_limit.*=' $(srcdir); \
176          then \
177             echo "See above for list of violations of the rule that "; \
178             echo "'struct vlog_rate_limit' must always be 'static'"; \
179             exit 1; \
180          fi
181 .PHONY: rate-limit-check
182
183 if HAVE_GROFF
184 ALL_LOCAL += manpage-check
185 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
186         @error=false; \
187         for manpage in $?; do \
188                 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; \
189                 if grep warning: $@.tmp; then error=:; fi; \
190                 rm -f $@.tmp; \
191         done; \
192         if $$error; then exit 1; else echo touch $@; touch $@; fi
193 CLEANFILES += manpage-check
194 endif
195
196 include $(srcdir)/manpages.mk
197 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
198         @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
199         @if cmp -s $(@F).tmp $@; then \
200                 touch $@; \
201                 rm -f $(@F).tmp; \
202         else \
203                 mv $(@F).tmp $@; \
204         fi
205 CLEANFILES += manpage-dep-check
206
207 dist-hook: $(DIST_HOOKS)
208 all-local: $(ALL_LOCAL)
209 clean-local: $(CLEAN_LOCAL)
210 install-data-local: $(INSTALL_DATA_LOCAL)
211 uninstall-local: $(UNINSTALL_LOCAL)
212 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
213
214 include lib/automake.mk
215 include ofproto/automake.mk
216 include utilities/automake.mk
217 include tests/automake.mk
218 include include/automake.mk
219 include third-party/automake.mk
220 include debian/automake.mk
221 include vswitchd/automake.mk
222 include ovsdb/automake.mk
223 include rhel/automake.mk
224 include xenserver/automake.mk
225 include python/automake.mk
226 include python/compat/automake.mk
227 include planetlab/automake.mk