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 += $(NCURSES_CFLAGS)
14 AM_CPPFLAGS += $(PCRE_CFLAGS)
15 AM_CPPFLAGS += -I $(top_srcdir)/include
16 AM_CPPFLAGS += -I $(top_srcdir)/lib
18 AM_CFLAGS = -Wstrict-prototypes
19 AM_CFLAGS += $(WARNING_FLAGS)
22 AM_CPPFLAGS += -DNDEBUG
23 AM_CFLAGS += -fomit-frame-pointer
25 AM_LDFLAGS = -export-dynamic
51 dist_pkgdata_SCRIPTS =
63 build-aux/update-debian-changelog \
66 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
70 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
72 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
73 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
74 -e 's,[@]PERL[@],$(PERL),g' \
75 -e 's,[@]PYTHON[@],$(PYTHON),g' \
76 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
77 -e 's,[@]VERSION[@],$(VERSION),g' \
78 -e 's,[@]localstatedir[@],$(localstatedir),g' \
79 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
80 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
81 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
82 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
84 @if head -n 1 $@.tmp | grep -q '#!'; then \
85 echo chmod +x $@.tmp; \
90 # If we're checked out from a Git repository, make sure that every
91 # file that is in Git is distributed.
93 if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
95 for d in `cd $(srcdir) && git ls-files`; do \
96 if test ! -e $(distdir)/$$d; then \
98 .gitignore|*/.gitignore) ;; # ( \
100 if test $$rc = 0; then \
101 echo "The distribution is missing the following files:"; \
111 DIST_HOOKS += dist-hook-git
113 dist-hook: $(DIST_HOOKS)
114 .PHONY: $(DIST_HOOKS)
116 include lib/automake.mk
117 include ofproto/automake.mk
118 include utilities/automake.mk
119 include tests/automake.mk
120 include include/automake.mk
121 include third-party/automake.mk
122 include debian/automake.mk
123 include vswitchd/automake.mk
124 include ovsdb/automake.mk
125 include xenserver/automake.mk
126 include extras/ezio/automake.mk