]> git.proxmox.com Git - mirror_ovs.git/blame - Makefile.am
vswitch: Update dia-generated diagram.
[mirror_ovs.git] / Makefile.am
CommitLineData
3b12adda 1# Copyright (C) 2007, 2008, 2009, 2010 Nicira Networks, Inc.
a14bc59f
BP
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 12AM_CPPFLAGS = $(SSL_CFLAGS)
064af421
BP
13AM_CPPFLAGS += -I $(top_srcdir)/include
14AM_CPPFLAGS += -I $(top_srcdir)/lib
15
16AM_CFLAGS = -Wstrict-prototypes
d161c099 17AM_CFLAGS += $(WARNING_FLAGS)
064af421
BP
18
19if NDEBUG
20AM_CPPFLAGS += -DNDEBUG
21AM_CFLAGS += -fomit-frame-pointer
22else
23AM_LDFLAGS = -export-dynamic
24endif
25
22c79496 26ALL_LOCAL =
d879a707 27BUILT_SOURCES =
064af421
BP
28CLEANFILES =
29DISTCLEANFILES =
4cdb08c0
BP
30EXTRA_DIST = \
31 CodingStyle \
6cdd6a87 32 INSTALL.KVM \
c2d1694f
JP
33 INSTALL.Linux \
34 INSTALL.OpenFlow \
35 INSTALL.SSL \
9678a9b6 36 INSTALL.XenServer \
4cdb08c0
BP
37 INSTALL.bridge \
38 INSTALL.userspace \
39 NOTICE \
bc34d060 40 PORTING \
4cdb08c0
BP
41 README-gcov \
42 REPORTING-BUGS \
43 SubmittingPatches \
3c34dd48 44 WHY-OVS \
4cdb08c0 45 boot.sh
064af421
BP
46bin_PROGRAMS =
47sbin_PROGRAMS =
48bin_SCRIPTS =
87103e1f 49DIST_HOOKS =
064af421 50dist_man_MANS =
3b12adda 51dist_pkgdata_DATA =
064af421
BP
52dist_pkgdata_SCRIPTS =
53dist_sbin_SCRIPTS =
54man_MANS =
c3bb4bd7 55noinst_DATA =
064af421
BP
56noinst_HEADERS =
57noinst_LIBRARIES =
58noinst_PROGRAMS =
59noinst_SCRIPTS =
00732bf5 60OVSIDL_BUILT =
c3bb4bd7 61SUFFIXES =
064af421 62
9741af79
BP
63# This ensures that files added to EXTRA_DIST are always distributed,
64# even if they are inside an Automake if...endif conditional block that is
65# disabled by some particular "configure" run. For more information, see:
66# http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
67noinst_HEADERS += $(EXTRA_DIST)
68
208d496f 69EXTRA_DIST += \
208d496f 70 soexpand.pl
064af421
BP
71
72ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
73
c3bb4bd7 74SUFFIXES += .in
064af421
BP
75.in:
76 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
3b135da3 77 sed \
064af421 78 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
3b135da3
BP
79 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
80 -e 's,[@]PERL[@],$(PERL),g' \
81 -e 's,[@]PYTHON[@],$(PYTHON),g' \
064af421 82 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
3b135da3
BP
83 -e 's,[@]VERSION[@],$(VERSION),g' \
84 -e 's,[@]localstatedir[@],$(localstatedir),g' \
064af421 85 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
3b135da3 86 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
d879a707 87 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
436f27dd 88 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
3b135da3
BP
89 > $@.tmp
90 @if head -n 1 $@.tmp | grep -q '#!'; then \
91 echo chmod +x $@.tmp; \
92 chmod +x $@.tmp; \
93 fi
94 mv $@.tmp $@
064af421 95
87103e1f
BP
96# If we're checked out from a Git repository, make sure that every
97# file that is in Git is distributed.
98dist-hook-git:
99 if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
100 rc=0; \
101 for d in `cd $(srcdir) && git ls-files`; do \
102 if test ! -e $(distdir)/$$d; then \
103 case $$d in # ( \
104 .gitignore|*/.gitignore) ;; # ( \
105 *) \
106 if test $$rc = 0; then \
107 echo "The distribution is missing the following files:"; \
108 rc=1; \
109 fi; \
110 echo "$$d"; \
111 ;; \
112 esac; \
113 fi \
114 done; \
115 exit $$rc; \
116 fi
117DIST_HOOKS += dist-hook-git
118
119dist-hook: $(DIST_HOOKS)
22c79496 120all-local: $(ALL_LOCAL)
87103e1f
BP
121.PHONY: $(DIST_HOOKS)
122
064af421 123include lib/automake.mk
8cd4882f 124include ofproto/automake.mk
064af421
BP
125include utilities/automake.mk
126include tests/automake.mk
127include include/automake.mk
128include third-party/automake.mk
129include debian/automake.mk
130include vswitchd/automake.mk
f85f8ebb 131include ovsdb/automake.mk
064af421 132include xenserver/automake.mk
99155935 133include python/ovs/automake.mk