Catalli's threaded switch
[sliver-openvswitch.git] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009, 2010 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
16 AM_CFLAGS = -Wstrict-prototypes
17 AM_CFLAGS += $(WARNING_FLAGS)
18
19 if NDEBUG
20 AM_CPPFLAGS += -DNDEBUG
21 AM_CFLAGS += -fomit-frame-pointer
22 else
23 AM_LDFLAGS = -export-dynamic
24 endif
25
26 ALL_LOCAL =
27 BUILT_SOURCES =
28 CLEANFILES =
29 DISTCLEANFILES =
30 EXTRA_DIST = \
31         CodingStyle \
32         INSTALL.KVM \
33         INSTALL.Linux \
34         INSTALL.OpenFlow \
35         INSTALL.SSL \
36         INSTALL.XenServer \
37         INSTALL.bridge \
38         INSTALL.userspace \
39         NOTICE \
40         PORTING \
41         README-gcov \
42         REPORTING-BUGS \
43         SubmittingPatches \
44         WHY-OVS \
45         boot.sh
46 bin_PROGRAMS =
47 sbin_PROGRAMS =
48 bin_SCRIPTS =
49 DIST_HOOKS =
50 dist_man_MANS =
51 dist_pkgdata_DATA =
52 dist_pkgdata_SCRIPTS =
53 dist_sbin_SCRIPTS =
54 man_MANS =
55 noinst_DATA =
56 noinst_HEADERS =
57 noinst_LIBRARIES =
58 noinst_PROGRAMS =
59 noinst_SCRIPTS =
60 OVSIDL_BUILT =
61 SUFFIXES =
62
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)
68
69 EXTRA_DIST += \
70         soexpand.pl
71
72 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
73
74 SUFFIXES += .in
75 .in:
76         $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
77             sed \
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' \
89             > $@.tmp
90         @if head -n 1 $@.tmp | grep -q '#!'; then \
91             echo chmod +x $@.tmp; \
92             chmod +x $@.tmp; \
93         fi
94         mv $@.tmp $@
95
96 # If we're checked out from a Git repository, make sure that every
97 # file that is in Git is distributed.
98 dist-hook-git:
99         if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then    \
100           rc=0;                                                               \
101           for d in `cd $(srcdir) && git ls-files`; do                         \
102             if test ! -e $(distdir)/$$d; then                                 \
103               case $$d in # (                                                 \
104                 .gitignore|*/.gitignore) ;; # (                               \
105                 *)                                                            \
106                    if test $$rc = 0; then                                     \
107                      echo "The distribution is missing the following files:"; \
108                      rc=1;                                                    \
109                    fi;                                                        \
110                    echo "$$d";                                                \
111                    ;;                                                         \
112               esac;                                                           \
113             fi                                                                \
114           done;                                                               \
115           exit $$rc;                                                          \
116         fi
117 DIST_HOOKS += dist-hook-git
118
119 dist-hook: $(DIST_HOOKS)
120 all-local: $(ALL_LOCAL)
121 .PHONY: $(DIST_HOOKS)
122
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