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