]> git.proxmox.com Git - ovs.git/blame - Makefile.am
python: New method to retrieve OVS version at runtime.
[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 =
79982e90 32PYCOV_CLEAN_FILES = build-aux/check-structs,cover
4cdb08c0
BP
33EXTRA_DIST = \
34 CodingStyle \
d31f1109 35 DESIGN \
6cdd6a87 36 INSTALL.KVM \
c2d1694f 37 INSTALL.Linux \
c434706a 38 INSTALL.RHEL \
c2d1694f 39 INSTALL.SSL \
9678a9b6 40 INSTALL.XenServer \
4cdb08c0
BP
41 INSTALL.bridge \
42 INSTALL.userspace \
43 NOTICE \
bc34d060 44 PORTING \
4cdb08c0
BP
45 README-gcov \
46 REPORTING-BUGS \
47 SubmittingPatches \
3c34dd48 48 WHY-OVS \
0027492d 49 boot.sh \
6ca37677 50 build-aux/sodepends.pl \
94512c4a 51 build-aux/soexpand.pl \
6ca37677
BP
52 $(MAN_FRAGMENTS) \
53 $(MAN_ROOTS)
064af421
BP
54bin_PROGRAMS =
55sbin_PROGRAMS =
56bin_SCRIPTS =
87103e1f 57DIST_HOOKS =
064af421 58dist_man_MANS =
3b12adda 59dist_pkgdata_DATA =
064af421
BP
60dist_pkgdata_SCRIPTS =
61dist_sbin_SCRIPTS =
b2df0225 62dist_scripts_SCRIPTS =
429ebf21 63dist_scripts_DATA =
b2df0225 64INSTALL_DATA_LOCAL =
44852fdf 65UNINSTALL_LOCAL =
064af421 66man_MANS =
0027492d 67MAN_FRAGMENTS =
6ca37677 68MAN_ROOTS =
c3bb4bd7 69noinst_DATA =
064af421
BP
70noinst_HEADERS =
71noinst_LIBRARIES =
045b2e5c 72noinst_man_MANS =
064af421
BP
73noinst_PROGRAMS =
74noinst_SCRIPTS =
00732bf5 75OVSIDL_BUILT =
9c16ed64 76pkgdata_DATA =
b2df0225 77sbin_SCRIPTS =
43bb5f82 78scripts_SCRIPTS =
429ebf21 79scripts_DATA =
c3bb4bd7 80SUFFIXES =
15b619e2 81check_DATA =
064af421 82
43bb5f82
BP
83scriptsdir = $(pkgdatadir)/scripts
84
9741af79
BP
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
89noinst_HEADERS += $(EXTRA_DIST)
90
064af421 91ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
cbaa4ffe 92ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
064af421 93
c3bb4bd7 94SUFFIXES += .in
064af421 95.in:
94512c4a 96 $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
3b135da3 97 sed \
064af421 98 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3
BP
99 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
100 -e 's,[@]PERL[@],$(PERL),g' \
101 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 102 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3 103 -e 's,[@]VERSION[@],$(VERSION),g' \
43bb5f82 104 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
3b135da3 105 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 106 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 107 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
43bb5f82
BP
108 -e 's,[@]bindir[@],$(bindir),g' \
109 -e 's,[@]sbindir[@],$(sbindir),g' \
d879a707 110 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
436f27dd 111 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
3b135da3 112 > $@.tmp
00961f7c 113 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
3b135da3
BP
114 echo chmod +x $@.tmp; \
115 chmod +x $@.tmp; \
116 fi
117 mv $@.tmp $@
064af421 118
79982e90
EJ
119.PHONY: clean-pycov
120clean-pycov:
121 cd $(srcdir) && rm -f $(PYCOV_CLEAN_FILES)
122CLEAN_LOCAL += clean-pycov
123
87103e1f
BP
124# If we're checked out from a Git repository, make sure that every
125# file that is in Git is distributed.
39376d06
BP
126ALL_LOCAL += dist-hook-git
127dist-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 -v '\.gitignore$$' | \
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; \
87103e1f 140 fi
39376d06
BP
141CLEANFILES += all-distfiles all-gitfiles missing-distfiles
142# The following is based on commands for the Automake "distdir" target.
143distfiles: 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 > $@
150CLEANFILES += distfiles
87103e1f 151
db5ce514
BP
152# Check that "struct vlog_ratelimit" is always declared "static".
153ALL_LOCAL += rate-limit-check
154rate-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
0027492d
BP
163if HAVE_GROFF
164ALL_LOCAL += manpage-check
1261619f
BP
165manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
166 @error=false; \
167 for manpage in $?; do \
186ef5c1 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; \
1261619f
BP
169 if grep warning: $@.tmp; then error=:; fi; \
170 rm -f $@.tmp; \
0027492d 171 done; \
1261619f 172 if $$error; then exit 1; else echo touch $@; touch $@; fi
0027492d
BP
173CLEANFILES += manpage-check
174endif
175
6ca37677
BP
176include $(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
185CLEANFILES += manpage-dep-check
186
87103e1f 187dist-hook: $(DIST_HOOKS)
22c79496 188all-local: $(ALL_LOCAL)
15b619e2 189clean-local: $(CLEAN_LOCAL)
b2df0225 190install-data-local: $(INSTALL_DATA_LOCAL)
44852fdf
BP
191uninstall-local: $(UNINSTALL_LOCAL)
192.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
87103e1f 193
064af421 194include lib/automake.mk
8cd4882f 195include ofproto/automake.mk
064af421
BP
196include utilities/automake.mk
197include tests/automake.mk
198include include/automake.mk
199include third-party/automake.mk
200include debian/automake.mk
201include vswitchd/automake.mk
f85f8ebb 202include ovsdb/automake.mk
c434706a 203include rhel/automake.mk
064af421 204include xenserver/automake.mk
0be6140a 205include python/automake.mk
6c88547d 206include python/compat/automake.mk