Merge commit 'origin/citrix'
[openvswitch] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009 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 if ENABLE_USERSPACE
13 AM_CPPFLAGS = $(SSL_CFLAGS)
14 AM_CPPFLAGS += $(NCURSES_CFLAGS)
15 AM_CPPFLAGS += $(PCRE_CFLAGS)
16 AM_CPPFLAGS += -I $(top_srcdir)/include
17 AM_CPPFLAGS += -I $(top_srcdir)/lib
18
19 AM_CFLAGS = -Wstrict-prototypes
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 CLEANFILES =
29 DISTCLEANFILES =
30 EXTRA_DIST = INSTALL.bridge \
31         INSTALL.Linux \
32         INSTALL.OpenFlow \
33         INSTALL.SSL \
34         INSTALL.XenServer 
35 TESTS =
36 TESTS_ENVIRONMENT =
37 bin_PROGRAMS =
38 sbin_PROGRAMS =
39 bin_SCRIPTS =
40 dist_commands_DATA =
41 dist_man_MANS =
42 dist_pkgdata_SCRIPTS =
43 dist_sbin_SCRIPTS =
44 man_MANS =
45 noinst_HEADERS =
46 noinst_LIBRARIES =
47 noinst_PROGRAMS =
48 noinst_SCRIPTS =
49
50 EXTRA_DIST += soexpand.pl
51
52 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
53
54 SUFFIXES = .in
55 .in:
56         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
57             sed -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
58                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
59                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
60                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
61                 -e 's,[@]PERL[@],$(PERL),g' > $@
62
63 include lib/automake.mk
64 include ofproto/automake.mk
65 include utilities/automake.mk
66 include tests/automake.mk
67 include include/automake.mk
68 include third-party/automake.mk
69 include debian/automake.mk
70 include vswitchd/automake.mk
71 include xenserver/automake.mk
72 if HAVE_CURSES
73 if HAVE_PCRE
74 include extras/ezio/automake.mk
75 endif
76 endif
77 endif # ENABLE_USERSPACE