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