++WARNING++: Delete this file.
[sliver-openvswitch.git] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009, 2010 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 += $(NCURSES_CFLAGS)
14 AM_CPPFLAGS += $(PCRE_CFLAGS)
15 AM_CPPFLAGS += -I $(top_srcdir)/include
16 AM_CPPFLAGS += -I $(top_srcdir)/lib
17
18 AM_CFLAGS = -Wstrict-prototypes
19 AM_CFLAGS += $(WARNING_FLAGS)
20
21 if NDEBUG
22 AM_CPPFLAGS += -DNDEBUG
23 AM_CFLAGS += -fomit-frame-pointer
24 else
25 AM_LDFLAGS = -export-dynamic
26 endif
27
28 BUILT_SOURCES =
29 CLEANFILES =
30 DISTCLEANFILES =
31 EXTRA_DIST = INSTALL.bridge \
32         INSTALL.Linux \
33         INSTALL.userspace \
34         INSTALL.OpenFlow \
35         INSTALL.SSL \
36         INSTALL.XenServer \
37         README-gcov
38 bin_PROGRAMS =
39 sbin_PROGRAMS =
40 bin_SCRIPTS =
41 dist_man_MANS =
42 dist_pkgdata_DATA =
43 dist_pkgdata_SCRIPTS =
44 dist_sbin_SCRIPTS =
45 man_MANS =
46 noinst_DATA =
47 noinst_HEADERS =
48 noinst_LIBRARIES =
49 noinst_PROGRAMS =
50 noinst_SCRIPTS =
51 OVSIDL_BUILT =
52 SUFFIXES =
53
54 EXTRA_DIST += soexpand.pl
55
56 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
57
58 SUFFIXES += .in
59 .in:
60         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
61             sed \
62                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
63                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
64                 -e 's,[@]PERL[@],$(PERL),g' \
65                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
66                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
67                 -e 's,[@]VERSION[@],$(VERSION),g' \
68                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
69                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
70                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
71                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
72             > $@.tmp
73         @if head -n 1 $@.tmp | grep -q '#!'; then \
74             echo chmod +x $@.tmp; \
75             chmod +x $@.tmp; \
76         fi
77         mv $@.tmp $@
78
79 include lib/automake.mk
80 include ofproto/automake.mk
81 include utilities/automake.mk
82 include tests/automake.mk
83 include include/automake.mk
84 include third-party/automake.mk
85 include debian/automake.mk
86 include vswitchd/automake.mk
87 include ovsdb/automake.mk
88 include xenserver/automake.mk
89 include extras/ezio/automake.mk