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