ovs-bugtool: Add plugins previously used only under XenServer.
[sliver-openvswitch.git] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009, 2010, 2011 Nicira Networks, Inc.
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
8 AUTOMAKE_OPTIONS = foreign subdir-objects
9 ACLOCAL_AMFLAGS = -I m4
10 SUBDIRS = datapath
11
12 AM_CPPFLAGS = $(SSL_CFLAGS)
13 AM_CPPFLAGS += -I $(top_srcdir)/include
14 AM_CPPFLAGS += -I $(top_srcdir)/lib
15 AM_CPPFLAGS += -I $(top_builddir)/lib
16
17 AM_CFLAGS = -Wstrict-prototypes
18 AM_CFLAGS += $(WARNING_FLAGS)
19
20 if NDEBUG
21 AM_CPPFLAGS += -DNDEBUG
22 AM_CFLAGS += -fomit-frame-pointer
23 else
24 AM_LDFLAGS = -export-dynamic
25 endif
26
27 ALL_LOCAL =
28 BUILT_SOURCES =
29 CLEANFILES =
30 CLEAN_LOCAL =
31 DISTCLEANFILES =
32 EXTRA_DIST = \
33         CodingStyle \
34         DESIGN \
35         INSTALL.KVM \
36         INSTALL.Linux \
37         INSTALL.RHEL \
38         INSTALL.SSL \
39         INSTALL.XenServer \
40         INSTALL.bridge \
41         INSTALL.userspace \
42         NOTICE \
43         PORTING \
44         README-gcov \
45         REPORTING-BUGS \
46         SubmittingPatches \
47         WHY-OVS \
48         boot.sh
49 bin_PROGRAMS =
50 sbin_PROGRAMS =
51 bin_SCRIPTS =
52 DIST_HOOKS =
53 dist_man_MANS =
54 dist_pkgdata_DATA =
55 dist_pkgdata_SCRIPTS =
56 dist_sbin_SCRIPTS =
57 dist_scripts_SCRIPTS =
58 INSTALL_DATA_LOCAL =
59 man_MANS =
60 noinst_DATA =
61 noinst_HEADERS =
62 noinst_LIBRARIES =
63 noinst_man_MANS =
64 noinst_PROGRAMS =
65 noinst_SCRIPTS =
66 OVSIDL_BUILT =
67 pkgdata_DATA =
68 sbin_SCRIPTS =
69 scripts_SCRIPTS =
70 SUFFIXES =
71 check_DATA =
72
73 scriptsdir = $(pkgdatadir)/scripts
74
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
79 noinst_HEADERS += $(EXTRA_DIST)
80
81 EXTRA_DIST += \
82         soexpand.pl
83
84 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
85
86 SUFFIXES += .in
87 .in:
88         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
89             sed \
90                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
91                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
92                 -e 's,[@]PERL[@],$(PERL),g' \
93                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
94                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
95                 -e 's,[@]VERSION[@],$(VERSION),g' \
96                 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
97                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
98                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
99                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
100                 -e 's,[@]bindir[@],$(bindir),g' \
101                 -e 's,[@]sbindir[@],$(sbindir),g' \
102                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
103                 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
104             > $@.tmp
105         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
106             echo chmod +x $@.tmp; \
107             chmod +x $@.tmp; \
108         fi
109         mv $@.tmp $@
110
111 # If we're checked out from a Git repository, make sure that every
112 # file that is in Git is distributed.
113 ALL_LOCAL += dist-hook-git
114 dist-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;                                                               \
127         fi
128 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
129 # The following is based on commands for the Automake "distdir" target.
130 distfiles: 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 > $@
137 CLEANFILES += distfiles
138
139 # Check that "struct vlog_ratelimit" is always declared "static".
140 ALL_LOCAL += rate-limit-check
141 rate-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
150 dist-hook: $(DIST_HOOKS)
151 all-local: $(ALL_LOCAL)
152 clean-local: $(CLEAN_LOCAL)
153 install-data-local: $(INSTALL_DATA_LOCAL)
154 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL)
155
156 include lib/automake.mk
157 include ofproto/automake.mk
158 include utilities/automake.mk
159 include tests/automake.mk
160 include include/automake.mk
161 include third-party/automake.mk
162 include debian/automake.mk
163 include vswitchd/automake.mk
164 include ovsdb/automake.mk
165 include rhel/automake.mk
166 include xenserver/automake.mk
167 include python/ovs/automake.mk