]> git.proxmox.com Git - mirror_ovs.git/blame - Makefile.am
Move soexpand.pl into build-aux and make it non-executable.
[mirror_ovs.git] / Makefile.am
CommitLineData
15b619e2 1# Copyright (C) 2007, 2008, 2009, 2010, 2011 Nicira Networks, Inc.
a14bc59f
BP
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
064af421
BP
8AUTOMAKE_OPTIONS = foreign subdir-objects
9ACLOCAL_AMFLAGS = -I m4
10SUBDIRS = datapath
11
064af421 12AM_CPPFLAGS = $(SSL_CFLAGS)
064af421
BP
13AM_CPPFLAGS += -I $(top_srcdir)/include
14AM_CPPFLAGS += -I $(top_srcdir)/lib
611d30ce 15AM_CPPFLAGS += -I $(top_builddir)/lib
064af421
BP
16
17AM_CFLAGS = -Wstrict-prototypes
d161c099 18AM_CFLAGS += $(WARNING_FLAGS)
064af421
BP
19
20if NDEBUG
21AM_CPPFLAGS += -DNDEBUG
22AM_CFLAGS += -fomit-frame-pointer
23else
24AM_LDFLAGS = -export-dynamic
25endif
26
22c79496 27ALL_LOCAL =
d879a707 28BUILT_SOURCES =
064af421 29CLEANFILES =
15b619e2 30CLEAN_LOCAL =
064af421 31DISTCLEANFILES =
4cdb08c0
BP
32EXTRA_DIST = \
33 CodingStyle \
d31f1109 34 DESIGN \
6cdd6a87 35 INSTALL.KVM \
c2d1694f 36 INSTALL.Linux \
c434706a 37 INSTALL.RHEL \
c2d1694f 38 INSTALL.SSL \
9678a9b6 39 INSTALL.XenServer \
4cdb08c0
BP
40 INSTALL.bridge \
41 INSTALL.userspace \
42 NOTICE \
bc34d060 43 PORTING \
4cdb08c0
BP
44 README-gcov \
45 REPORTING-BUGS \
46 SubmittingPatches \
3c34dd48 47 WHY-OVS \
0027492d 48 boot.sh \
94512c4a 49 build-aux/soexpand.pl \
0027492d 50 $(MAN_FRAGMENTS)
064af421
BP
51bin_PROGRAMS =
52sbin_PROGRAMS =
53bin_SCRIPTS =
87103e1f 54DIST_HOOKS =
064af421 55dist_man_MANS =
3b12adda 56dist_pkgdata_DATA =
064af421
BP
57dist_pkgdata_SCRIPTS =
58dist_sbin_SCRIPTS =
b2df0225
BP
59dist_scripts_SCRIPTS =
60INSTALL_DATA_LOCAL =
44852fdf 61UNINSTALL_LOCAL =
064af421 62man_MANS =
0027492d 63MAN_FRAGMENTS =
c3bb4bd7 64noinst_DATA =
064af421
BP
65noinst_HEADERS =
66noinst_LIBRARIES =
045b2e5c 67noinst_man_MANS =
064af421
BP
68noinst_PROGRAMS =
69noinst_SCRIPTS =
00732bf5 70OVSIDL_BUILT =
9c16ed64 71pkgdata_DATA =
b2df0225 72sbin_SCRIPTS =
43bb5f82 73scripts_SCRIPTS =
c3bb4bd7 74SUFFIXES =
15b619e2 75check_DATA =
064af421 76
43bb5f82
BP
77scriptsdir = $(pkgdatadir)/scripts
78
9741af79
BP
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
83noinst_HEADERS += $(EXTRA_DIST)
84
064af421 85ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
cbaa4ffe 86ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
064af421 87
c3bb4bd7 88SUFFIXES += .in
064af421 89.in:
94512c4a 90 $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
3b135da3 91 sed \
064af421 92 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3
BP
93 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
94 -e 's,[@]PERL[@],$(PERL),g' \
95 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 96 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3 97 -e 's,[@]VERSION[@],$(VERSION),g' \
43bb5f82 98 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
3b135da3 99 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 100 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 101 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
43bb5f82
BP
102 -e 's,[@]bindir[@],$(bindir),g' \
103 -e 's,[@]sbindir[@],$(sbindir),g' \
d879a707 104 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
436f27dd 105 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
3b135da3 106 > $@.tmp
00961f7c 107 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
3b135da3
BP
108 echo chmod +x $@.tmp; \
109 chmod +x $@.tmp; \
110 fi
111 mv $@.tmp $@
064af421 112
87103e1f
BP
113# If we're checked out from a Git repository, make sure that every
114# file that is in Git is distributed.
39376d06
BP
115ALL_LOCAL += dist-hook-git
116dist-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; \
87103e1f 129 fi
39376d06
BP
130CLEANFILES += all-distfiles all-gitfiles missing-distfiles
131# The following is based on commands for the Automake "distdir" target.
132distfiles: 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 > $@
139CLEANFILES += distfiles
87103e1f 140
db5ce514
BP
141# Check that "struct vlog_ratelimit" is always declared "static".
142ALL_LOCAL += rate-limit-check
143rate-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
0027492d
BP
152if HAVE_GROFF
153ALL_LOCAL += manpage-check
154manpage-check: $(MANS) $(MAN_FRAGMENTS)
155 @manpages=; \
156 for d in $(MANS); do \
157 manpages="$$manpages `test -f $$d || echo $(VPATH)/`$$d"; \
158 done; \
0993b66b 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 $@
0027492d
BP
160CLEANFILES += manpage-check
161endif
162
87103e1f 163dist-hook: $(DIST_HOOKS)
22c79496 164all-local: $(ALL_LOCAL)
15b619e2 165clean-local: $(CLEAN_LOCAL)
b2df0225 166install-data-local: $(INSTALL_DATA_LOCAL)
44852fdf
BP
167uninstall-local: $(UNINSTALL_LOCAL)
168.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
87103e1f 169
064af421 170include lib/automake.mk
8cd4882f 171include ofproto/automake.mk
064af421
BP
172include utilities/automake.mk
173include tests/automake.mk
174include include/automake.mk
175include third-party/automake.mk
176include debian/automake.mk
177include vswitchd/automake.mk
f85f8ebb 178include ovsdb/automake.mk
c434706a 179include rhel/automake.mk
064af421 180include xenserver/automake.mk
99155935 181include python/ovs/automake.mk
6c88547d 182include python/compat/automake.mk