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