1 # Copyright (C) 2007, 2008, 2009, 2010, 2011 Nicira Networks, Inc.
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.
8 AUTOMAKE_OPTIONS = foreign subdir-objects
9 ACLOCAL_AMFLAGS = -I m4
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
17 AM_CFLAGS = -Wstrict-prototypes
18 AM_CFLAGS += $(WARNING_FLAGS)
21 AM_CPPFLAGS += -DNDEBUG
22 AM_CFLAGS += -fomit-frame-pointer
24 AM_LDFLAGS = -export-dynamic
56 dist_pkgdata_SCRIPTS =
58 dist_scripts_SCRIPTS =
75 scriptsdir = $(pkgdatadir)/scripts
77 # This ensures that files added to EXTRA_DIST are always distributed,
78 # even if they are inside an Automake if...endif conditional block that is
79 # disabled by some particular "configure" run. For more information, see:
80 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
81 noinst_HEADERS += $(EXTRA_DIST)
86 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
87 ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
91 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
93 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
94 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
95 -e 's,[@]PERL[@],$(PERL),g' \
96 -e 's,[@]PYTHON[@],$(PYTHON),g' \
97 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
98 -e 's,[@]VERSION[@],$(VERSION),g' \
99 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
100 -e 's,[@]localstatedir[@],$(localstatedir),g' \
101 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
102 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
103 -e 's,[@]bindir[@],$(bindir),g' \
104 -e 's,[@]sbindir[@],$(sbindir),g' \
105 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
106 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
108 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
109 echo chmod +x $@.tmp; \
114 # If we're checked out from a Git repository, make sure that every
115 # file that is in Git is distributed.
116 ALL_LOCAL += dist-hook-git
117 dist-hook-git: distfiles
118 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
119 (cd datapath && $(MAKE) distfiles); \
120 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
121 sort -u > all-distfiles; \
122 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
123 sort -u > all-gitfiles; \
124 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
125 if test -s missing-distfiles; then \
126 echo "The distribution is missing the following files:"; \
127 cat missing-distfiles; \
131 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
132 # The following is based on commands for the Automake "distdir" target.
134 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
135 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
136 list='$(DISTFILES)'; \
137 for file in $$list; do echo $$file; done | \
138 sed -e "s|^$$srcdirstrip/||;t" \
139 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
140 CLEANFILES += distfiles
142 # Check that "struct vlog_ratelimit" is always declared "static".
143 ALL_LOCAL += rate-limit-check
145 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
146 git --no-pager grep -n -E '^[ ]+struct vlog_rate_limit.*=' $(srcdir); \
148 echo "See above for list of violations of the rule that "; \
149 echo "'struct vlog_rate_limit' must always be 'static'"; \
154 ALL_LOCAL += manpage-check
155 manpage-check: $(MANS) $(MAN_FRAGMENTS)
157 for d in $(MANS); do \
158 manpages="$$manpages `test -f $$d || echo $(VPATH)/`$$d"; \
160 LANG=en_US.UTF-8 groff -w mac -w delim -w escape -w input -w missing -w tab -T utf8 -man -p -z $$manpages && touch $@
161 CLEANFILES += manpage-check
164 dist-hook: $(DIST_HOOKS)
165 all-local: $(ALL_LOCAL)
166 clean-local: $(CLEAN_LOCAL)
167 install-data-local: $(INSTALL_DATA_LOCAL)
168 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL)
170 include lib/automake.mk
171 include ofproto/automake.mk
172 include utilities/automake.mk
173 include tests/automake.mk
174 include include/automake.mk
175 include third-party/automake.mk
176 include debian/automake.mk
177 include vswitchd/automake.mk
178 include ovsdb/automake.mk
179 include rhel/automake.mk
180 include xenserver/automake.mk
181 include python/ovs/automake.mk