]> git.proxmox.com Git - ovs.git/blame - Makefile.am
vswitch: Remove redundant "internal" column from Interface table.
[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
d161c099 19AM_CFLAGS += $(WARNING_FLAGS)
064af421
BP
20
21if NDEBUG
22AM_CPPFLAGS += -DNDEBUG
23AM_CFLAGS += -fomit-frame-pointer
24else
25AM_LDFLAGS = -export-dynamic
26endif
27
d879a707 28BUILT_SOURCES =
064af421
BP
29CLEANFILES =
30DISTCLEANFILES =
c2d1694f
JP
31EXTRA_DIST = INSTALL.bridge \
32 INSTALL.Linux \
d377243b 33 INSTALL.userspace \
c2d1694f
JP
34 INSTALL.OpenFlow \
35 INSTALL.SSL \
9678a9b6 36 INSTALL.XenServer \
76343538
BP
37 README-gcov \
38 ++WARNING++
064af421
BP
39bin_PROGRAMS =
40sbin_PROGRAMS =
41bin_SCRIPTS =
064af421
BP
42dist_man_MANS =
43dist_pkgdata_SCRIPTS =
44dist_sbin_SCRIPTS =
45man_MANS =
c3bb4bd7 46noinst_DATA =
064af421
BP
47noinst_HEADERS =
48noinst_LIBRARIES =
49noinst_PROGRAMS =
50noinst_SCRIPTS =
c3bb4bd7 51SUFFIXES =
064af421
BP
52
53EXTRA_DIST += soexpand.pl
54
55ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
56
c3bb4bd7 57SUFFIXES += .in
064af421
BP
58.in:
59 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
3b135da3 60 sed \
064af421 61 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3
BP
62 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
63 -e 's,[@]PERL[@],$(PERL),g' \
64 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 65 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3
BP
66 -e 's,[@]VERSION[@],$(VERSION),g' \
67 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 68 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 69 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
d879a707 70 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
3b135da3
BP
71 > $@.tmp
72 @if head -n 1 $@.tmp | grep -q '#!'; then \
73 echo chmod +x $@.tmp; \
74 chmod +x $@.tmp; \
75 fi
76 mv $@.tmp $@
064af421
BP
77
78include lib/automake.mk
8cd4882f 79include ofproto/automake.mk
064af421
BP
80include utilities/automake.mk
81include tests/automake.mk
82include include/automake.mk
83include third-party/automake.mk
84include debian/automake.mk
85include vswitchd/automake.mk
f85f8ebb 86include ovsdb/automake.mk
064af421 87include xenserver/automake.mk
064af421 88include extras/ezio/automake.mk