]> git.proxmox.com Git - ovs.git/blame - Makefile.am
dpif-netdev: Implement OVS_ACTION_ATTR_SAMPLE action.
[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
BP
48 boot.sh \
49 $(MAN_FRAGMENTS)
064af421
BP
50bin_PROGRAMS =
51sbin_PROGRAMS =
52bin_SCRIPTS =
87103e1f 53DIST_HOOKS =
064af421 54dist_man_MANS =
3b12adda 55dist_pkgdata_DATA =
064af421
BP
56dist_pkgdata_SCRIPTS =
57dist_sbin_SCRIPTS =
b2df0225
BP
58dist_scripts_SCRIPTS =
59INSTALL_DATA_LOCAL =
44852fdf 60UNINSTALL_LOCAL =
064af421 61man_MANS =
0027492d 62MAN_FRAGMENTS =
c3bb4bd7 63noinst_DATA =
064af421
BP
64noinst_HEADERS =
65noinst_LIBRARIES =
045b2e5c 66noinst_man_MANS =
064af421
BP
67noinst_PROGRAMS =
68noinst_SCRIPTS =
00732bf5 69OVSIDL_BUILT =
9c16ed64 70pkgdata_DATA =
b2df0225 71sbin_SCRIPTS =
43bb5f82 72scripts_SCRIPTS =
c3bb4bd7 73SUFFIXES =
15b619e2 74check_DATA =
064af421 75
43bb5f82
BP
76scriptsdir = $(pkgdatadir)/scripts
77
9741af79
BP
78# This ensures that files added to EXTRA_DIST are always distributed,
79# even if they are inside an Automake if...endif conditional block that is
80# disabled by some particular "configure" run. For more information, see:
81# http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
82noinst_HEADERS += $(EXTRA_DIST)
83
208d496f 84EXTRA_DIST += \
208d496f 85 soexpand.pl
064af421
BP
86
87ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
cbaa4ffe 88ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
064af421 89
c3bb4bd7 90SUFFIXES += .in
064af421
BP
91.in:
92 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
3b135da3 93 sed \
064af421 94 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3
BP
95 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
96 -e 's,[@]PERL[@],$(PERL),g' \
97 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 98 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3 99 -e 's,[@]VERSION[@],$(VERSION),g' \
43bb5f82 100 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
3b135da3 101 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 102 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 103 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
43bb5f82
BP
104 -e 's,[@]bindir[@],$(bindir),g' \
105 -e 's,[@]sbindir[@],$(sbindir),g' \
d879a707 106 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
436f27dd 107 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
3b135da3 108 > $@.tmp
00961f7c 109 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
3b135da3
BP
110 echo chmod +x $@.tmp; \
111 chmod +x $@.tmp; \
112 fi
113 mv $@.tmp $@
064af421 114
87103e1f
BP
115# If we're checked out from a Git repository, make sure that every
116# file that is in Git is distributed.
39376d06
BP
117ALL_LOCAL += dist-hook-git
118dist-hook-git: distfiles
119 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
120 (cd datapath && $(MAKE) distfiles); \
121 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
122 sort -u > all-distfiles; \
123 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
124 sort -u > all-gitfiles; \
125 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
126 if test -s missing-distfiles; then \
127 echo "The distribution is missing the following files:"; \
128 cat missing-distfiles; \
129 exit 1; \
130 fi; \
87103e1f 131 fi
39376d06
BP
132CLEANFILES += all-distfiles all-gitfiles missing-distfiles
133# The following is based on commands for the Automake "distdir" target.
134distfiles: Makefile
135 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
136 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
137 list='$(DISTFILES)'; \
138 for file in $$list; do echo $$file; done | \
139 sed -e "s|^$$srcdirstrip/||;t" \
140 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
141CLEANFILES += distfiles
87103e1f 142
db5ce514
BP
143# Check that "struct vlog_ratelimit" is always declared "static".
144ALL_LOCAL += rate-limit-check
145rate-limit-check:
146 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
147 git --no-pager grep -n -E '^[ ]+struct vlog_rate_limit.*=' $(srcdir); \
148 then \
149 echo "See above for list of violations of the rule that "; \
150 echo "'struct vlog_rate_limit' must always be 'static'"; \
151 exit 1; \
152 fi
153
0027492d
BP
154if HAVE_GROFF
155ALL_LOCAL += manpage-check
156manpage-check: $(MANS) $(MAN_FRAGMENTS)
157 @manpages=; \
158 for d in $(MANS); do \
159 manpages="$$manpages `test -f $$d || echo $(VPATH)/`$$d"; \
160 done; \
0993b66b 161 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
162CLEANFILES += manpage-check
163endif
164
87103e1f 165dist-hook: $(DIST_HOOKS)
22c79496 166all-local: $(ALL_LOCAL)
15b619e2 167clean-local: $(CLEAN_LOCAL)
b2df0225 168install-data-local: $(INSTALL_DATA_LOCAL)
44852fdf
BP
169uninstall-local: $(UNINSTALL_LOCAL)
170.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
87103e1f 171
064af421 172include lib/automake.mk
8cd4882f 173include ofproto/automake.mk
064af421
BP
174include utilities/automake.mk
175include tests/automake.mk
176include include/automake.mk
177include third-party/automake.mk
178include debian/automake.mk
179include vswitchd/automake.mk
f85f8ebb 180include ovsdb/automake.mk
c434706a 181include rhel/automake.mk
064af421 182include xenserver/automake.mk
99155935 183include python/ovs/automake.mk
6c88547d 184include python/compat/automake.mk