man: fix pic issue at the source
[sliver-openvswitch.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         build-aux/sodepends.pl \
50         build-aux/soexpand.pl \
51         $(MAN_FRAGMENTS) \
52         $(MAN_ROOTS)
53 bin_PROGRAMS =
54 sbin_PROGRAMS =
55 bin_SCRIPTS =
56 DIST_HOOKS =
57 dist_man_MANS =
58 dist_pkgdata_DATA =
59 dist_pkgdata_SCRIPTS =
60 dist_sbin_SCRIPTS =
61 dist_scripts_SCRIPTS =
62 INSTALL_DATA_LOCAL =
63 UNINSTALL_LOCAL =
64 man_MANS =
65 MAN_FRAGMENTS =
66 MAN_ROOTS =
67 noinst_DATA =
68 noinst_HEADERS =
69 noinst_LIBRARIES =
70 noinst_man_MANS =
71 noinst_PROGRAMS =
72 noinst_SCRIPTS =
73 OVSIDL_BUILT =
74 pkgdata_DATA =
75 sbin_SCRIPTS =
76 scripts_SCRIPTS =
77 SUFFIXES =
78 check_DATA =
79
80 scriptsdir = $(pkgdatadir)/scripts
81
82 # This ensures that files added to EXTRA_DIST are always distributed,
83 # even if they are inside an Automake if...endif conditional block that is
84 # disabled by some particular "configure" run.  For more information, see:
85 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
86 noinst_HEADERS += $(EXTRA_DIST)
87
88 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
89 ro_shell = printf '\043 Generated automatically -- do not modify!    -*- buffer-read-only: t -*-\n'
90
91 SUFFIXES += .in
92 .in:
93         $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
94             sed \
95                 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
96                 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
97                 -e 's,[@]PERL[@],$(PERL),g' \
98                 -e 's,[@]PYTHON[@],$(PYTHON),g' \
99                 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
100                 -e 's,[@]VERSION[@],$(VERSION),g' \
101                 -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
102                 -e 's,[@]localstatedir[@],$(localstatedir),g' \
103                 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
104                 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
105                 -e 's,[@]bindir[@],$(bindir),g' \
106                 -e 's,[@]sbindir[@],$(sbindir),g' \
107                 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
108                 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
109             > $@.tmp
110         @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
111             echo chmod +x $@.tmp; \
112             chmod +x $@.tmp; \
113         fi
114         mv $@.tmp $@
115
116 # If we're checked out from a Git repository, make sure that every
117 # file that is in Git is distributed.
118 ALL_LOCAL += dist-hook-git
119 dist-hook-git: distfiles
120         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
121           (cd datapath && $(MAKE) distfiles);                               \
122           (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) |        \
123             sort -u > all-distfiles;                                        \
124           (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' |        \
125             sort -u > all-gitfiles;                                         \
126           comm -1 -3 all-distfiles all-gitfiles > missing-distfiles;        \
127           if test -s missing-distfiles; then                                \
128             echo "The distribution is missing the following files:";        \
129             cat missing-distfiles;                                          \
130             exit 1;                                                         \
131           fi;                                                               \
132         fi
133 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
134 # The following is based on commands for the Automake "distdir" target.
135 distfiles: Makefile
136         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
137         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
138         list='$(DISTFILES)'; \
139         for file in $$list; do echo $$file; done | \
140           sed -e "s|^$$srcdirstrip/||;t" \
141               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
142 CLEANFILES += distfiles
143
144 # Check that "struct vlog_ratelimit" is always declared "static".
145 ALL_LOCAL += rate-limit-check
146 rate-limit-check:
147         @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
148             git --no-pager grep -n -E '^[       ]+struct vlog_rate_limit.*=' $(srcdir); \
149          then \
150             echo "See above for list of violations of the rule that "; \
151             echo "'struct vlog_rate_limit' must always be 'static'"; \
152             exit 1; \
153          fi
154
155 if HAVE_GROFF
156 ALL_LOCAL += manpage-check
157 manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
158         @error=false; \
159         for manpage in $?; do \
160                 LANG=en_US.UTF-8 groff -w mac -w delim -w escape -w input -w missing -w tab -T utf8 -man -p -z $$manpage >$@.tmp 2>&1; \
161                 if grep warning: $@.tmp; then error=:; fi; \
162                 rm -f $@.tmp; \
163         done; \
164         if $$error; then exit 1; else echo touch $@; touch $@; fi
165 CLEANFILES += manpage-check
166 endif
167
168 include $(srcdir)/manpages.mk
169 $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl
170         @$(PERL) $(srcdir)/build-aux/sodepends.pl -I. -I$(srcdir) $(MAN_ROOTS) >$(@F).tmp
171         @if cmp -s $(@F).tmp $@; then \
172                 touch $@; \
173                 rm -f $(@F).tmp; \
174         else \
175                 mv $(@F).tmp $@; \
176         fi
177 CLEANFILES += manpage-dep-check
178
179 dist-hook: $(DIST_HOOKS)
180 all-local: $(ALL_LOCAL)
181 clean-local: $(CLEAN_LOCAL)
182 install-data-local: $(INSTALL_DATA_LOCAL)
183 uninstall-local: $(UNINSTALL_LOCAL)
184 .PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL)
185
186 include lib/automake.mk
187 include ofproto/automake.mk
188 include utilities/automake.mk
189 include tests/automake.mk
190 include include/automake.mk
191 include third-party/automake.mk
192 include debian/automake.mk
193 include vswitchd/automake.mk
194 include ovsdb/automake.mk
195 include rhel/automake.mk
196 include xenserver/automake.mk
197 include python/automake.mk
198 include python/compat/automake.mk