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
16 AM_CFLAGS = -Wstrict-prototypes
17 AM_CFLAGS += $(WARNING_FLAGS)
20 AM_CPPFLAGS += -DNDEBUG
21 AM_CFLAGS += -fomit-frame-pointer
23 AM_LDFLAGS = -export-dynamic
52 dist_pkgdata_SCRIPTS =
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
67 noinst_HEADERS += $(EXTRA_DIST)
72 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
76 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
78 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
79 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
80 -e 's,[@]PERL[@],$(PERL),g' \
81 -e 's,[@]PYTHON[@],$(PYTHON),g' \
82 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
83 -e 's,[@]VERSION[@],$(VERSION),g' \
84 -e 's,[@]localstatedir[@],$(localstatedir),g' \
85 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
86 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
87 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
88 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
90 @if head -n 1 $@.tmp | grep -q '#!'; then \
91 echo chmod +x $@.tmp; \
96 # If we're checked out from a Git repository, make sure that every
97 # file that is in Git is distributed.
99 if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
101 for d in `cd $(srcdir) && git ls-files`; do \
102 if test ! -e $(distdir)/$$d; then \
104 .gitignore|*/.gitignore) ;; # ( \
106 if test $$rc = 0; then \
107 echo "The distribution is missing the following files:"; \
117 DIST_HOOKS += dist-hook-git
119 dist-hook: $(DIST_HOOKS)
120 all-local: $(ALL_LOCAL)
121 .PHONY: $(DIST_HOOKS)
123 include lib/automake.mk
124 include ofproto/automake.mk
125 include utilities/automake.mk
126 include tests/automake.mk
127 include include/automake.mk
128 include third-party/automake.mk
129 include debian/automake.mk
130 include vswitchd/automake.mk
131 include ovsdb/automake.mk
132 include xenserver/automake.mk
133 include python/ovs/automake.mk