Update Open vSwitch documentation.
[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         ++WARNING++
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             > $@.tmp
74         @if head -n 1 $@.tmp | grep -q '#!'; then \
75             echo chmod +x $@.tmp; \
76             chmod +x $@.tmp; \
77         fi
78         mv $@.tmp $@
79
80 include lib/automake.mk
81 include ofproto/automake.mk
82 include utilities/automake.mk
83 include tests/automake.mk
84 include include/automake.mk
85 include third-party/automake.mk
86 include debian/automake.mk
87 include vswitchd/automake.mk
88 include ovsdb/automake.mk
89 include xenserver/automake.mk
90 include extras/ezio/automake.mk