]> git.proxmox.com Git - mirror_ovs.git/blame - Makefile.am
Merge commit 'origin/citrix'
[mirror_ovs.git] / Makefile.am
CommitLineData
a14bc59f
BP
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
064af421
BP
8AUTOMAKE_OPTIONS = foreign subdir-objects
9ACLOCAL_AMFLAGS = -I m4
10SUBDIRS = datapath
11
064af421
BP
12AM_CPPFLAGS = $(SSL_CFLAGS)
13AM_CPPFLAGS += $(NCURSES_CFLAGS)
14AM_CPPFLAGS += $(PCRE_CFLAGS)
15AM_CPPFLAGS += -I $(top_srcdir)/include
16AM_CPPFLAGS += -I $(top_srcdir)/lib
17
18AM_CFLAGS = -Wstrict-prototypes
19
20if NDEBUG
21AM_CPPFLAGS += -DNDEBUG
22AM_CFLAGS += -fomit-frame-pointer
23else
24AM_LDFLAGS = -export-dynamic
25endif
26
27CLEANFILES =
28DISTCLEANFILES =
c2d1694f
JP
29EXTRA_DIST = INSTALL.bridge \
30 INSTALL.Linux \
31 INSTALL.OpenFlow \
32 INSTALL.SSL \
33 INSTALL.XenServer
064af421
BP
34bin_PROGRAMS =
35sbin_PROGRAMS =
36bin_SCRIPTS =
37dist_commands_DATA =
38dist_man_MANS =
39dist_pkgdata_SCRIPTS =
40dist_sbin_SCRIPTS =
41man_MANS =
42noinst_HEADERS =
43noinst_LIBRARIES =
44noinst_PROGRAMS =
45noinst_SCRIPTS =
46
47EXTRA_DIST += soexpand.pl
48
49ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
50
51SUFFIXES = .in
52.in:
53 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
54 sed -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
55 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
56 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
57 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
58 -e 's,[@]PERL[@],$(PERL),g' > $@
59
60include lib/automake.mk
8cd4882f 61include ofproto/automake.mk
064af421
BP
62include utilities/automake.mk
63include tests/automake.mk
64include include/automake.mk
65include third-party/automake.mk
66include debian/automake.mk
67include vswitchd/automake.mk
68include xenserver/automake.mk
064af421 69include extras/ezio/automake.mk