debian: Ignore some generated debirf files.
[libguestfs.git] / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 ACLOCAL_AMFLAGS = -I m4
19
20 SUBDIRS = gnulib/lib hivex src daemon appliance fish po examples images \
21         gnulib/tests capitests regressions test-tool
22
23 # NB: Must build inspector directory after perl and before ocaml.
24 # We could relax this if we combined the inspector_generator with
25 # the ordinary generator, but that brings other problems.
26 if HAVE_PERL
27 SUBDIRS += perl
28 endif
29
30 if HAVE_INSPECTOR
31 SUBDIRS += inspector
32 endif
33 if HAVE_TOOLS
34 SUBDIRS += tools
35 endif
36
37 if HAVE_FUSE
38 SUBDIRS += fuse
39 endif
40
41 if HAVE_OCAML
42 SUBDIRS += ocaml ocaml/examples
43 endif
44 if HAVE_PYTHON
45 SUBDIRS += python
46 endif
47 if HAVE_RUBY
48 SUBDIRS += ruby
49 endif
50 if HAVE_JAVA
51 SUBDIRS += java
52 endif
53 if HAVE_HASKELL
54 SUBDIRS += haskell
55 endif
56
57 EXTRA_DIST = \
58         guestfs.pod guestfs-actions.pod guestfs-structs.pod \
59         guestfish.pod guestfish-actions.pod \
60         html/pod.css \
61         HACKING TODO \
62         libguestfs.pc libguestfs.pc.in \
63         recipes/LICENSE \
64         recipes/README \
65         recipes/*.html \
66         recipes/*.sh \
67         recipes/*.example \
68         html/recipes.css \
69         make-recipes.sh \
70         contrib/README \
71         contrib/febootstrap/install.title \
72         contrib/febootstrap/install.html \
73         contrib/febootstrap/install.sh \
74         bindtests \
75         libguestfs.3
76
77 # Manual pages.
78 # guestfs-actions.pod and guestfs-structs are autogenerated.  There is
79 # no include mechanism for POD, so we have to do it by hand.
80
81 man_MANS = guestfs.3 libguestfs.3 guestfish.1
82
83 guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod
84         sed \
85           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
86           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
87           < $< | \
88         $(POD2MAN) \
89           --section 3 \
90           -c "Virtualization Support" \
91           --name "guestfs" \
92           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
93           > $@
94
95 guestfish.1: guestfish.pod guestfish-actions.pod
96         sed \
97           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
98           < $< | \
99         $(POD2MAN) \
100           --section 1 \
101           -c "Virtualization Support" \
102           --name "guestfish" \
103           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
104           > $@
105
106 noinst_DATA = html/guestfs.3.html html/guestfish.1.html
107
108 html/guestfs.3.html: guestfs.pod guestfs-actions.pod guestfs-structs.pod
109         mkdir -p html
110         sed \
111           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
112           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
113           < $< | \
114         pod2html \
115           --css 'pod.css' \
116           --title "libguestfs API documentation" \
117           --htmldir html \
118           --outfile $@
119
120 html/guestfish.1.html: guestfish.pod guestfish-actions.pod
121         mkdir -p html
122         sed \
123           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
124           < $< | \
125         pod2html \
126           --css 'pod.css' \
127           --title "guestfish, libguestfs filesystem interactive shell" \
128           --htmldir html \
129           --outfile $@
130
131 # Recipes web page.
132 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
133         mkdir -p html
134         rm -f $@ $@-t
135         sh make-recipes.sh recipes/*.sh > $@-t
136         mv $@-t $@
137
138 HTMLFILES = \
139         html/guestfs.3.html \
140         html/guestfish.1.html \
141         html/guestmount.1.html \
142         html/hivex.3.html \
143         html/hivexget.1.html \
144         html/hivexml.1.html \
145         html/virt-cat.1.html \
146         html/virt-df.1.html \
147         html/virt-edit.1.html \
148         html/virt-inspector.1.html \
149         html/virt-ls.1.html \
150         html/virt-rescue.1.html \
151         html/virt-tar.1.html \
152         html/virt-win-reg.1.html \
153         html/recipes.html \
154         html/pod.css html/recipes.css
155
156 TEXTFILES = README TODO HACKING
157
158 WEBSITEDIR = $(HOME)/d/redhat/websites/libguestfs
159
160 website: $(HTMLFILES) $(TEXTFILES)
161         cp $(HTMLFILES) $(WEBSITEDIR)
162         for f in $(TEXTFILES); do cp $$f $(WEBSITEDIR)/$$f.txt; done
163         cd $(WEBSITEDIR) && \
164         date=`date +%F`; \
165         sed -e "s/SUBST_VERSION/$(VERSION)/" \
166             -e "s/SUBST_DATE/$$date/" \
167         < index.html.in > index.html
168
169 # Generate the ChangeLog automatically from the gitlog.
170
171 dist-hook:
172         $(top_srcdir)/build-aux/gitlog-to-changelog > ChangeLog
173         cp ChangeLog $(distdir)/ChangeLog
174
175 # Update the list of translatable files in po/POTFILES.in.
176 all-local:
177         cd $(srcdir); \
178         find $(DIST_SUBDIRS) \
179             -name '*.c' -o -name '*.pl' -o -name '*.pm' -o \
180             -name 'virt-cat' -o \
181             -name 'virt-df' -o \
182             -name 'virt-edit' -o \
183             -name 'virt-inspector' -o \
184             -name 'virt-ls' -o \
185             -name 'virt-rescue' -o \
186             -name 'virt-tar' -o \
187             -name 'virt-win-reg' | \
188         grep -v '^perl/blib/' | \
189         grep -v '^capitests/' | \
190         grep -v '^daemon/lib/' | \
191         grep -v '^daemon/tests/' | \
192         grep -v '^examples/' | \
193         grep -v '^gnulib/' | \
194         grep -v '^perl/examples/' | \
195         grep -v '/guestfs_protocol.c' | \
196         grep -v '/rc_protocol.c' | \
197         LC_ALL=C sort | \
198         sed 's,^\./,,' > po/POTFILES.in
199
200 # Pkgconfig.
201
202 pkgconfigdir = $(libdir)/pkgconfig
203 pkgconfig_DATA = libguestfs.pc
204
205 # Make clean.
206
207 CLEANFILES = $(fs_DATA) \
208         emptydisk \
209         pod2htm?.tmp \
210         html/*.html \
211         guestfs.3 guestfish.1
212
213 clean-local:
214         rm -rf initramfs