1 # Copyright (C) 2007, 2008, 2009, 2010 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
53 dist_pkgdata_SCRIPTS =
64 # This ensures that files added to EXTRA_DIST are always distributed,
65 # even if they are inside an Automake if...endif conditional block that is
66 # disabled by some particular "configure" run. For more information, see:
67 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
68 noinst_HEADERS += $(EXTRA_DIST)
73 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
77 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
79 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
80 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
81 -e 's,[@]PERL[@],$(PERL),g' \
82 -e 's,[@]PYTHON[@],$(PYTHON),g' \
83 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
84 -e 's,[@]VERSION[@],$(VERSION),g' \
85 -e 's,[@]localstatedir[@],$(localstatedir),g' \
86 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
87 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
88 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
89 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
91 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
92 echo chmod +x $@.tmp; \
97 # If we're checked out from a Git repository, make sure that every
98 # file that is in Git is distributed.
99 ALL_LOCAL += dist-hook-git
100 dist-hook-git: distfiles
101 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
102 (cd datapath && $(MAKE) distfiles); \
103 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
104 sort -u > all-distfiles; \
105 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
106 sort -u > all-gitfiles; \
107 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
108 if test -s missing-distfiles; then \
109 echo "The distribution is missing the following files:"; \
110 cat missing-distfiles; \
114 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
115 # The following is based on commands for the Automake "distdir" target.
117 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
118 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
119 list='$(DISTFILES)'; \
120 for file in $$list; do echo $$file; done | \
121 sed -e "s|^$$srcdirstrip/||;t" \
122 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
123 CLEANFILES += distfiles
125 dist-hook: $(DIST_HOOKS)
126 all-local: $(ALL_LOCAL)
127 .PHONY: $(DIST_HOOKS)
129 include lib/automake.mk
130 include ofproto/automake.mk
131 include utilities/automake.mk
132 include tests/automake.mk
133 include include/automake.mk
134 include third-party/automake.mk
135 include debian/automake.mk
136 include vswitchd/automake.mk
137 include ovsdb/automake.mk
138 include xenserver/automake.mk
139 include python/ovs/automake.mk