]> git.proxmox.com Git - ovs.git/blob - Makefile.am
Makefile: Check for undistributed files on every make, not just "make dist".
[ovs.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 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 DISTCLEANFILES =
31 EXTRA_DIST = \
32 CodingStyle \
33 INSTALL.KVM \
34 INSTALL.Linux \
35 INSTALL.OpenFlow \
36 INSTALL.SSL \
37 INSTALL.XenServer \
38 INSTALL.bridge \
39 INSTALL.userspace \
40 NOTICE \
41 PORTING \
42 README-gcov \
43 REPORTING-BUGS \
44 SubmittingPatches \
45 WHY-OVS \
46 boot.sh
47 bin_PROGRAMS =
48 sbin_PROGRAMS =
49 bin_SCRIPTS =
50 DIST_HOOKS =
51 dist_man_MANS =
52 dist_pkgdata_DATA =
53 dist_pkgdata_SCRIPTS =
54 dist_sbin_SCRIPTS =
55 man_MANS =
56 noinst_DATA =
57 noinst_HEADERS =
58 noinst_LIBRARIES =
59 noinst_PROGRAMS =
60 noinst_SCRIPTS =
61 OVSIDL_BUILT =
62 SUFFIXES =
63
64 # This ensures that files added to EXTRA_DIST are always distributed,
65 # even if they are inside an Automake if...endif conditional block that is
66 # disabled by some particular "configure" run. For more information, see:
67 # http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
68 noinst_HEADERS += $(EXTRA_DIST)
69
70 EXTRA_DIST += \
71 soexpand.pl
72
73 ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
74
75 SUFFIXES += .in
76 .in:
77 $(PERL) $(srcdir)/soexpand.pl -I$(srcdir) < $< | \
78 sed \
79 -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
80 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
81 -e 's,[@]PERL[@],$(PERL),g' \
82 -e 's,[@]PYTHON[@],$(PYTHON),g' \
83 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
84 -e 's,[@]VERSION[@],$(VERSION),g' \
85 -e 's,[@]localstatedir[@],$(localstatedir),g' \
86 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
87 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
88 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
89 -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
90 > $@.tmp
91 @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
92 echo chmod +x $@.tmp; \
93 chmod +x $@.tmp; \
94 fi
95 mv $@.tmp $@
96
97 # If we're checked out from a Git repository, make sure that every
98 # file that is in Git is distributed.
99 ALL_LOCAL += dist-hook-git
100 dist-hook-git: distfiles
101 @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
102 (cd datapath && $(MAKE) distfiles); \
103 (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
104 sort -u > all-distfiles; \
105 (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
106 sort -u > all-gitfiles; \
107 comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
108 if test -s missing-distfiles; then \
109 echo "The distribution is missing the following files:"; \
110 cat missing-distfiles; \
111 exit 1; \
112 fi; \
113 fi
114 CLEANFILES += all-distfiles all-gitfiles missing-distfiles
115 # The following is based on commands for the Automake "distdir" target.
116 distfiles: Makefile
117 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
118 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
119 list='$(DISTFILES)'; \
120 for file in $$list; do echo $$file; done | \
121 sed -e "s|^$$srcdirstrip/||;t" \
122 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
123 CLEANFILES += distfiles
124
125 dist-hook: $(DIST_HOOKS)
126 all-local: $(ALL_LOCAL)
127 .PHONY: $(DIST_HOOKS)
128
129 include lib/automake.mk
130 include ofproto/automake.mk
131 include utilities/automake.mk
132 include tests/automake.mk
133 include include/automake.mk
134 include third-party/automake.mk
135 include debian/automake.mk
136 include vswitchd/automake.mk
137 include ovsdb/automake.mk
138 include xenserver/automake.mk
139 include python/ovs/automake.mk