]> git.proxmox.com Git - mirror_ovs.git/blame - Makefile.am
jsonrpc: Make it easy to get a new JSON-RPC request's id.
[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
d879a707 27BUILT_SOURCES =
064af421
BP
28CLEANFILES =
29DISTCLEANFILES =
c2d1694f
JP
30EXTRA_DIST = INSTALL.bridge \
31 INSTALL.Linux \
32 INSTALL.OpenFlow \
33 INSTALL.SSL \
9678a9b6
BP
34 INSTALL.XenServer \
35 README-gcov
064af421
BP
36bin_PROGRAMS =
37sbin_PROGRAMS =
38bin_SCRIPTS =
39dist_commands_DATA =
40dist_man_MANS =
41dist_pkgdata_SCRIPTS =
42dist_sbin_SCRIPTS =
43man_MANS =
44noinst_HEADERS =
45noinst_LIBRARIES =
46noinst_PROGRAMS =
47noinst_SCRIPTS =
48
49EXTRA_DIST += soexpand.pl
50
51ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
52
53SUFFIXES = .in
54.in:
55 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
3b135da3 56 sed \
064af421 57 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3
BP
58 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
59 -e 's,[@]PERL[@],$(PERL),g' \
60 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 61 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3
BP
62 -e 's,[@]VERSION[@],$(VERSION),g' \
63 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 64 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 65 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
d879a707 66 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
3b135da3
BP
67 > $@.tmp
68 @if head -n 1 $@.tmp | grep -q '#!'; then \
69 echo chmod +x $@.tmp; \
70 chmod +x $@.tmp; \
71 fi
72 mv $@.tmp $@
064af421
BP
73
74include lib/automake.mk
8cd4882f 75include ofproto/automake.mk
064af421
BP
76include utilities/automake.mk
77include tests/automake.mk
78include include/automake.mk
79include third-party/automake.mk
80include debian/automake.mk
81include vswitchd/automake.mk
f85f8ebb 82include ovsdb/automake.mk
064af421 83include xenserver/automake.mk
064af421 84include extras/ezio/automake.mk