]> git.proxmox.com Git - ovs.git/blob - Makefile.am
utilities: install ovs-lib.sh as data not a script
[ovs.git] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009, 2010, 2011 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 += -I $(top_srcdir)/include
14 AM_CPPFLAGS += -I $(top_srcdir)/lib
15 AM_CPPFLAGS += -I $(top_builddir)/lib
16
17 AM_CFLAGS = -Wstrict-prototypes
18 AM_CFLAGS += $(WARNING_FLAGS)
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 ALL_LOCAL =
28 BUILT_SOURCES =
29 CLEANFILES =
30 CLEAN_LOCAL =
31 DISTCLEANFILES =
32 EXTRA_DIST = \
33 CodingStyle \
34 DESIGN \
35 INSTALL.KVM \
36 INSTALL.Linux \
37 INSTALL.RHEL \
38 INSTALL.SSL \
39 INSTALL.XenServer \
40 INSTALL.bridge \
41 INSTALL.userspace \
42 NOTICE \
43 PORTING \
44 README-gcov \
45 REPORTING-BUGS \
46 SubmittingPatches \
47 WHY-OVS \
48 boot.sh \
49 build-aux/sodepends.pl \
50 build-aux/soexpand.pl \
51 $(MAN_FRAGMENTS) \
52 $(MAN_ROOTS)
53 bin_PROGRAMS =
54 sbin_PROGRAMS =
55 bin_SCRIPTS =
56 DIST_HOOKS =
57 dist_man_MANS =
58 dist_pkgdata_DATA =
59 dist_pkgdata_SCRIPTS =
60 dist_sbin_SCRIPTS =
61 dist_scripts_SCRIPTS =
62 dist_scripts_DATA =
63 INSTALL_DATA_LOCAL =
64 UNINSTALL_LOCAL =
65 man_MANS =
66 MAN_FRAGMENTS =
67 MAN_ROOTS =
68 noinst_DATA =
69 noinst_HEADERS =
70 noinst_LIBRARIES =
71 noinst_man_MANS =
72 noinst_PROGRAMS =
73 noinst_SCRIPTS =
74 OVSIDL_BUILT =
75 pkgdata_DATA =
76 sbin_SCRIPTS =
77 scripts_SCRIPTS =
78 scripts_DATA =
79 SUFFIXES =
80 check_DATA =
81
82 scriptsdir = $(pkgdatadir)/scripts
83
84 # This ensures that files added to EXTRA_DIST are always distributed,
85 # even if they are inside an Automake if...endif conditional block that is
86 # disabled by some particular "configure" run. For more information, see:
87 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
88 noinst_HEADERS += $(EXTRA_DIST)
89
90 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
91 ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
92
93 SUFFIXES += .in
94 .in:
95 $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
96 sed \
97 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
98 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
99 -e 's,[@]PERL[@],$(PERL),g' \
100 -e 's,[@]PYTHON[@],$(PYTHON),g' \
101 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
102 -e 's,[@]VERSION[@],$(VERSION),g' \
103 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
104 -e 's,[@]localstatedir[@],$(localstatedir),g' \
105 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
106 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
107 -e 's,[@]bindir[@],$(bindir),g' \
108 -e 's,[@]sbindir[@],$(sbindir),g' \
109 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
110 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
111 > $@.tmp
112 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
113 echo chmod +x $@.tmp; \
114 chmod +x $@.tmp; \
115 fi
116 mv $@.tmp $@
117
118 # If we're checked out from a Git repository, make sure that every
119 # file that is in Git is distributed.
120 ALL_LOCAL += dist-hook-git
121 dist-hook-git: distfiles
122 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
123 (cd datapath && $(MAKE) distfiles); \
124 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
125 sort -u > all-distfiles; \
126 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
127 sort -u > all-gitfiles; \
128 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
129 if test -s missing-distfiles; then \
130 echo "The distribution is missing the following files:"; \
131 cat missing-distfiles; \
132 exit 1; \
133 fi; \
134 fi
135 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
136 # The following is based on commands for the Automake "distdir" target.
137 distfiles: Makefile
138 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
139 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
140 list='$(DISTFILES)'; \
141 for file in $$list; do echo $$file; done | \
142 sed -e "s|^$$srcdirstrip/||;t" \
143 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
144 CLEANFILES += distfiles
145
146 # Check that "struct vlog_ratelimit" is always declared "static".
147 ALL_LOCAL += rate-limit-check
148 rate-limit-check:
149 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
150 git --no-pager grep -n -E '^[ ]+struct vlog_rate_limit.*=' $(srcdir); \
151 then \
152 echo "See above for list of violations of the rule that "; \
153 echo "'struct vlog_rate_limit' must always be 'static'"; \
154 exit 1; \
155 fi
156
157 if HAVE_GROFF
158 ALL_LOCAL += manpage-check
159 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
160 @error=false; \
161 for manpage in $?; do \
162 LANG=en_US.UTF-8 groff -w mac -w delim -w escape -w input -w missing -w tab -T utf8 -man -p -z $$manpage >$@.tmp 2>&1; \
163 if grep warning: $@.tmp; then error=:; fi; \
164 rm -f $@.tmp; \
165 done; \
166 if $$error; then exit 1; else echo touch $@; touch $@; fi
167 CLEANFILES += manpage-check
168 endif
169
170 include $(srcdir)/manpages.mk
171 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
172 @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
173 @if cmp -s $(@F).tmp $@; then \
174 touch $@; \
175 rm -f $(@F).tmp; \
176 else \
177 mv $(@F).tmp $@; \
178 fi
179 CLEANFILES += manpage-dep-check
180
181 dist-hook: $(DIST_HOOKS)
182 all-local: $(ALL_LOCAL)
183 clean-local: $(CLEAN_LOCAL)
184 install-data-local: $(INSTALL_DATA_LOCAL)
185 uninstall-local: $(UNINSTALL_LOCAL)
186 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
187
188 include lib/automake.mk
189 include ofproto/automake.mk
190 include utilities/automake.mk
191 include tests/automake.mk
192 include include/automake.mk
193 include third-party/automake.mk
194 include debian/automake.mk
195 include vswitchd/automake.mk
196 include ovsdb/automake.mk
197 include rhel/automake.mk
198 include xenserver/automake.mk
199 include python/automake.mk
200 include python/compat/automake.mk