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