tests: Fix Y2011 bug in testsuite.
[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         INSTALL.KVM \
35         INSTALL.Linux \
36         INSTALL.OpenFlow \
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_PROGRAMS =
61 noinst_SCRIPTS =
62 OVSIDL_BUILT =
63 SUFFIXES =
64 check_DATA =
65
66 # This ensures that files added to EXTRA_DIST are always distributed,
67 # even if they are inside an Automake if...endif conditional block that is
68 # disabled by some particular "configure" run.  For more information, see:
69 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
70 noinst_HEADERS += $(EXTRA_DIST)
71
72 EXTRA_DIST += \
73         soexpand.pl
74
75 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
76
77 SUFFIXES += .in
78 .in:
79         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
80             sed \
81                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
82                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
83                 -e 's,[@]PERL[@],$(PERL),g' \
84                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
85                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
86                 -e 's,[@]VERSION[@],$(VERSION),g' \
87                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
88                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
89                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
90                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
91                 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
92             > $@.tmp
93         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
94             echo chmod +x $@.tmp; \
95             chmod +x $@.tmp; \
96         fi
97         mv $@.tmp $@
98
99 # If we're checked out from a Git repository, make sure that every
100 # file that is in Git is distributed.
101 ALL_LOCAL += dist-hook-git
102 dist-hook-git: distfiles
103         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
104           (cd datapath && $(MAKE) distfiles);                               \
105           (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) |        \
106             sort -u > all-distfiles;                                        \
107           (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' |        \
108             sort -u > all-gitfiles;                                         \
109           comm -1 -3 all-distfiles all-gitfiles > missing-distfiles;        \
110           if test -s missing-distfiles; then                                \
111             echo "The distribution is missing the following files:";        \
112             cat missing-distfiles;                                          \
113             exit 1;                                                         \
114           fi;                                                               \
115         fi
116 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
117 # The following is based on commands for the Automake "distdir" target.
118 distfiles: Makefile
119         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
120         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
121         list='$(DISTFILES)'; \
122         for file in $$list; do echo $$file; done | \
123           sed -e "s|^$$srcdirstrip/||;t" \
124               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
125 CLEANFILES += distfiles
126
127 dist-hook: $(DIST_HOOKS)
128 all-local: $(ALL_LOCAL)
129 clean-local: $(CLEAN_LOCAL)
130 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL)
131
132 include lib/automake.mk
133 include ofproto/automake.mk
134 include utilities/automake.mk
135 include tests/automake.mk
136 include include/automake.mk
137 include third-party/automake.mk
138 include debian/automake.mk
139 include vswitchd/automake.mk
140 include ovsdb/automake.mk
141 include xenserver/automake.mk
142 include python/ovs/automake.mk