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