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