Move C compiler warning (-W) flags from CFLAGS to AM_CFLAGS.
[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 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 CLEANFILES =
29 DISTCLEANFILES =
30 EXTRA_DIST = INSTALL.bridge \
31         INSTALL.Linux \
32         INSTALL.userspace \
33         INSTALL.OpenFlow \
34         INSTALL.SSL \
35         INSTALL.XenServer 
36 bin_PROGRAMS =
37 sbin_PROGRAMS =
38 bin_SCRIPTS =
39 dist_commands_DATA =
40 dist_man_MANS =
41 dist_pkgdata_SCRIPTS =
42 dist_sbin_SCRIPTS =
43 man_MANS =
44 noinst_HEADERS =
45 noinst_LIBRARIES =
46 noinst_PROGRAMS =
47 noinst_SCRIPTS =
48
49 EXTRA_DIST += soexpand.pl
50
51 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
52
53 SUFFIXES = .in
54 .in:
55         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
56             sed \
57                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
58                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
59                 -e 's,[@]PERL[@],$(PERL),g' \
60                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
61                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
62                 -e 's,[@]VERSION[@],$(VERSION),g' \
63                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
64                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
65                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
66             > $@.tmp
67         @if head -n 1 $@.tmp | grep -q '#!'; then \
68             echo chmod +x $@.tmp; \
69             chmod +x $@.tmp; \
70         fi
71         mv $@.tmp $@
72
73 include lib/automake.mk
74 include ofproto/automake.mk
75 include utilities/automake.mk
76 include tests/automake.mk
77 include include/automake.mk
78 include third-party/automake.mk
79 include debian/automake.mk
80 include vswitchd/automake.mk
81 include xenserver/automake.mk
82 include extras/ezio/automake.mk