WHY-OVS: New file explaining the rationale for Open vSwitch.
[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 ALL_LOCAL =
29 BUILT_SOURCES =
30 CLEANFILES =
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
65 # This ensures that files added to EXTRA_DIST are always distributed,
66 # even if they are inside an Automake if...endif conditional block that is
67 # disabled by some particular "configure" run.  For more information, see:
68 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
69 noinst_HEADERS += $(EXTRA_DIST)
70
71 EXTRA_DIST += \
72         build-aux/update-debian-changelog \
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 -q '#!'; 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 dist-hook-git:
102         if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then    \
103           rc=0;                                                               \
104           for d in `cd $(srcdir) && git ls-files`; do                         \
105             if test ! -e $(distdir)/$$d; then                                 \
106               case $$d in # (                                                 \
107                 .gitignore|*/.gitignore) ;; # (                               \
108                 *)                                                            \
109                    if test $$rc = 0; then                                     \
110                      echo "The distribution is missing the following files:"; \
111                      rc=1;                                                    \
112                    fi;                                                        \
113                    echo "$$d";                                                \
114                    ;;                                                         \
115               esac;                                                           \
116             fi                                                                \
117           done;                                                               \
118           exit $$rc;                                                          \
119         fi
120 DIST_HOOKS += dist-hook-git
121
122 dist-hook: $(DIST_HOOKS)
123 all-local: $(ALL_LOCAL)
124 .PHONY: $(DIST_HOOKS)
125
126 include lib/automake.mk
127 include ofproto/automake.mk
128 include utilities/automake.mk
129 include tests/automake.mk
130 include include/automake.mk
131 include third-party/automake.mk
132 include debian/automake.mk
133 include vswitchd/automake.mk
134 include ovsdb/automake.mk
135 include xenserver/automake.mk
136 include extras/ezio/automake.mk
137