Add instructions for using Open vSwitch with KVM.
[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.KVM \
33         INSTALL.Linux \
34         INSTALL.userspace \
35         INSTALL.OpenFlow \
36         INSTALL.SSL \
37         INSTALL.XenServer \
38         README-gcov
39 bin_PROGRAMS =
40 sbin_PROGRAMS =
41 bin_SCRIPTS =
42 dist_man_MANS =
43 dist_pkgdata_DATA =
44 dist_pkgdata_SCRIPTS =
45 dist_sbin_SCRIPTS =
46 man_MANS =
47 noinst_DATA =
48 noinst_HEADERS =
49 noinst_LIBRARIES =
50 noinst_PROGRAMS =
51 noinst_SCRIPTS =
52 OVSIDL_BUILT =
53 SUFFIXES =
54
55 EXTRA_DIST += soexpand.pl
56
57 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
58
59 SUFFIXES += .in
60 .in:
61         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
62             sed \
63                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
64                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
65                 -e 's,[@]PERL[@],$(PERL),g' \
66                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
67                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
68                 -e 's,[@]VERSION[@],$(VERSION),g' \
69                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
70                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
71                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
72                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
73                 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
74             > $@.tmp
75         @if head -n 1 $@.tmp | grep -q '#!'; then \
76             echo chmod +x $@.tmp; \
77             chmod +x $@.tmp; \
78         fi
79         mv $@.tmp $@
80
81 include lib/automake.mk
82 include ofproto/automake.mk
83 include utilities/automake.mk
84 include tests/automake.mk
85 include include/automake.mk
86 include third-party/automake.mk
87 include debian/automake.mk
88 include vswitchd/automake.mk
89 include ovsdb/automake.mk
90 include xenserver/automake.mk
91 include extras/ezio/automake.mk