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