Always distribute extras/ezio/ezio3.ti.
[sliver-openvswitch.git] / 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 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
20 if NDEBUG
21 AM_CPPFLAGS += -DNDEBUG
22 AM_CFLAGS += -fomit-frame-pointer
23 else
24 AM_LDFLAGS = -export-dynamic
25 endif
26
27 CLEANFILES =
28 DISTCLEANFILES =
29 EXTRA_DIST = INSTALL.Linux INSTALL.XenServer INSTALL.SSL
30 TESTS =
31 TESTS_ENVIRONMENT =
32 bin_PROGRAMS =
33 sbin_PROGRAMS =
34 bin_SCRIPTS =
35 dist_commands_DATA =
36 dist_man_MANS =
37 dist_pkgdata_SCRIPTS =
38 dist_sbin_SCRIPTS =
39 man_MANS =
40 noinst_HEADERS =
41 noinst_LIBRARIES =
42 noinst_PROGRAMS =
43 noinst_SCRIPTS =
44
45 EXTRA_DIST += soexpand.pl
46
47 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
48
49 SUFFIXES = .in
50 .in:
51         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
52             sed -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
53                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
54                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
55                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
56                 -e 's,[@]PERL[@],$(PERL),g' > $@
57
58 include lib/automake.mk
59 include secchan/automake.mk
60 include utilities/automake.mk
61 include tests/automake.mk
62 include include/automake.mk
63 include third-party/automake.mk
64 include debian/automake.mk
65 include vswitchd/automake.mk
66 include xenserver/automake.mk
67 include extras/ezio/automake.mk