]> git.proxmox.com Git - mirror_ovs.git/blob - Makefile.am
Add RHEL 5/6 spec files and instructions.
[mirror_ovs.git] / Makefile.am
1 # Copyright (C) 2007, 2008, 2009, 2010, 2011 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 AM_CPPFLAGS += -I $(top_builddir)/lib
16
17 AM_CFLAGS = -Wstrict-prototypes
18 AM_CFLAGS += $(WARNING_FLAGS)
19
20 if NDEBUG
21 AM_CPPFLAGS += -DNDEBUG
22 AM_CFLAGS += -fomit-frame-pointer
23 else
24 AM_LDFLAGS = -export-dynamic
25 endif
26
27 ALL_LOCAL =
28 BUILT_SOURCES =
29 CLEANFILES =
30 CLEAN_LOCAL =
31 DISTCLEANFILES =
32 EXTRA_DIST = \
33 CodingStyle \
34 DESIGN \
35 INSTALL.KVM \
36 INSTALL.Linux \
37 INSTALL.RHEL \
38 INSTALL.SSL \
39 INSTALL.XenServer \
40 INSTALL.bridge \
41 INSTALL.userspace \
42 NOTICE \
43 PORTING \
44 README-gcov \
45 REPORTING-BUGS \
46 SubmittingPatches \
47 WHY-OVS \
48 boot.sh
49 bin_PROGRAMS =
50 sbin_PROGRAMS =
51 bin_SCRIPTS =
52 DIST_HOOKS =
53 dist_man_MANS =
54 dist_pkgdata_DATA =
55 dist_pkgdata_SCRIPTS =
56 dist_sbin_SCRIPTS =
57 man_MANS =
58 noinst_DATA =
59 noinst_HEADERS =
60 noinst_LIBRARIES =
61 noinst_man_MANS =
62 noinst_PROGRAMS =
63 noinst_SCRIPTS =
64 OVSIDL_BUILT =
65 pkgdata_DATA =
66 scripts_SCRIPTS =
67 SUFFIXES =
68 check_DATA =
69
70 scriptsdir = $(pkgdatadir)/scripts
71
72 # This ensures that files added to EXTRA_DIST are always distributed,
73 # even if they are inside an Automake if...endif conditional block that is
74 # disabled by some particular "configure" run. For more information, see:
75 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
76 noinst_HEADERS += $(EXTRA_DIST)
77
78 EXTRA_DIST += \
79 soexpand.pl
80
81 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
82
83 SUFFIXES += .in
84 .in:
85 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
86 sed \
87 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
88 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
89 -e 's,[@]PERL[@],$(PERL),g' \
90 -e 's,[@]PYTHON[@],$(PYTHON),g' \
91 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
92 -e 's,[@]VERSION[@],$(VERSION),g' \
93 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
94 -e 's,[@]localstatedir[@],$(localstatedir),g' \
95 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
96 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
97 -e 's,[@]bindir[@],$(bindir),g' \
98 -e 's,[@]sbindir[@],$(sbindir),g' \
99 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
100 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
101 > $@.tmp
102 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
103 echo chmod +x $@.tmp; \
104 chmod +x $@.tmp; \
105 fi
106 mv $@.tmp $@
107
108 # If we're checked out from a Git repository, make sure that every
109 # file that is in Git is distributed.
110 ALL_LOCAL += dist-hook-git
111 dist-hook-git: distfiles
112 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
113 (cd datapath && $(MAKE) distfiles); \
114 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
115 sort -u > all-distfiles; \
116 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
117 sort -u > all-gitfiles; \
118 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
119 if test -s missing-distfiles; then \
120 echo "The distribution is missing the following files:"; \
121 cat missing-distfiles; \
122 exit 1; \
123 fi; \
124 fi
125 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
126 # The following is based on commands for the Automake "distdir" target.
127 distfiles: Makefile
128 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
129 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
130 list='$(DISTFILES)'; \
131 for file in $$list; do echo $$file; done | \
132 sed -e "s|^$$srcdirstrip/||;t" \
133 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
134 CLEANFILES += distfiles
135
136 # Check that "struct vlog_ratelimit" is always declared "static".
137 ALL_LOCAL += rate-limit-check
138 rate-limit-check:
139 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
140 git --no-pager grep -n -E '^[ ]+struct vlog_rate_limit.*=' $(srcdir); \
141 then \
142 echo "See above for list of violations of the rule that "; \
143 echo "'struct vlog_rate_limit' must always be 'static'"; \
144 exit 1; \
145 fi
146
147 dist-hook: $(DIST_HOOKS)
148 all-local: $(ALL_LOCAL)
149 clean-local: $(CLEAN_LOCAL)
150 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL)
151
152 include lib/automake.mk
153 include ofproto/automake.mk
154 include utilities/automake.mk
155 include tests/automake.mk
156 include include/automake.mk
157 include third-party/automake.mk
158 include debian/automake.mk
159 include vswitchd/automake.mk
160 include ovsdb/automake.mk
161 include rhel/automake.mk
162 include xenserver/automake.mk
163 include python/ovs/automake.mk