Version 1.5.13.
[libguestfs.git] / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009-2010 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 include $(top_srcdir)/subdir-rules.mk
19
20 ACLOCAL_AMFLAGS = -I m4
21
22 # Basic source for the library.
23 SUBDIRS = gnulib/lib images generator src examples po
24
25 if ENABLE_DAEMON
26 SUBDIRS += daemon
27 endif
28 if ENABLE_APPLIANCE
29 SUBDIRS += appliance
30 endif
31
32 # Tests and the test-tool.
33 SUBDIRS += gnulib/tests capitests regressions test-tool
34
35 # Guestfish.
36 SUBDIRS += fish
37
38 # Language bindings.
39 if HAVE_PERL
40 SUBDIRS += perl
41 endif
42 if HAVE_OCAML
43 SUBDIRS += ocaml ocaml/examples
44 endif
45 if HAVE_PYTHON
46 SUBDIRS += python
47 endif
48 if HAVE_RUBY
49 SUBDIRS += ruby
50 endif
51 if HAVE_JAVA
52 SUBDIRS += java
53 endif
54 if HAVE_HASKELL
55 SUBDIRS += haskell
56 endif
57 if HAVE_PHP
58 SUBDIRS += php
59 endif
60
61 # Virt-inspector, tools and guestmount.
62 if HAVE_INSPECTOR
63 SUBDIRS += inspector
64 endif
65
66 if HAVE_TOOLS
67 SUBDIRS += tools
68 endif
69
70 if HAVE_FUSE
71 SUBDIRS += fuse
72 endif
73
74 # po-docs must come after tools, inspector.
75 SUBDIRS += po-docs
76
77 EXTRA_DIST = \
78         $(generator_built) \
79         html/pod.css \
80         BUGS HACKING RELEASE-NOTES TODO \
81         libguestfs.pc libguestfs.pc.in \
82         recipes/LICENSE \
83         recipes/README \
84         recipes/*.html \
85         recipes/*.sh \
86         recipes/*.example \
87         html/recipes.css \
88         make-recipes.sh \
89         contrib/README \
90         bindtests \
91         .gitignore \
92         m4/.gitignore
93
94 # HTML versions of manual pages.
95
96 noinst_DATA = html/guestfs.3.html html/guestfish.1.html
97
98 html/guestfs.3.html: src/guestfs.pod \
99                 src/guestfs-actions.pod \
100                 src/guestfs-availability.pod \
101                 src/guestfs-structs.pod
102         mkdir -p html
103         sed \
104           -e '/@ACTIONS@/rsrc/guestfs-actions.pod' \
105           -e 's/@ACTIONS@//' \
106           -e '/@AVAILABILITY@/rsrc/guestfs-availability.pod' \
107           -e 's/@AVAILABILITY@//' \
108           -e '/@STRUCTS@/rsrc/guestfs-structs.pod' \
109           -e 's/@STRUCTS@//' \
110           < $< | \
111         pod2html \
112           --css 'pod.css' \
113           --title "libguestfs API documentation" \
114           --htmldir html \
115           --outfile $@
116
117 html/guestfish.1.html: fish/guestfish.pod fish/guestfish-actions.pod
118         mkdir -p html
119         sed \
120           -e '/@ACTIONS@/rfish/guestfish-actions.pod' -e 's/@ACTIONS@//' \
121           < $< | \
122         pod2html \
123           --css 'pod.css' \
124           --title "guestfish, libguestfs filesystem interactive shell" \
125           --htmldir html \
126           --outfile $@
127
128 # Recipes web page.
129 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
130         mkdir -p html
131         rm -f $@ $@-t
132         sh make-recipes.sh recipes/*.sh > $@-t
133         mv $@-t $@
134
135 HTMLFILES = \
136         html/guestfs.3.html \
137         html/guestfish.1.html \
138         html/guestmount.1.html \
139         html/virt-cat.1.html \
140         html/virt-df.1.html \
141         html/virt-edit.1.html \
142         html/virt-inspector.1.html \
143         html/virt-list-filesystems.1.html \
144         html/virt-list-partitions.1.html \
145         html/virt-ls.1.html \
146         html/virt-make-fs.1.html \
147         html/virt-rescue.1.html \
148         html/virt-resize.1.html \
149         html/virt-tar.1.html \
150         html/virt-win-reg.1.html \
151         html/recipes.html \
152         html/pod.css html/recipes.css
153
154 TEXTFILES = README TODO HACKING
155
156 WEBSITEDIR = $(HOME)/d/redhat/websites/libguestfs
157
158 website: $(HTMLFILES) $(TEXTFILES)
159         cp $(HTMLFILES) $(WEBSITEDIR)
160         for f in $(TEXTFILES); do cp $$f $(WEBSITEDIR)/$$f.txt; done
161         cd $(WEBSITEDIR) && \
162         date=`date +%F`; \
163         sed -e "s/SUBST_VERSION/$(VERSION)/" \
164             -e "s/SUBST_DATE/$$date/" \
165         < index.html.in > index.html
166
167 # When doing 'make dist' update a few files automatically.
168 dist-hook:
169         $(top_srcdir)/build-aux/gitlog-to-changelog > ChangeLog
170         cp ChangeLog $(distdir)/ChangeLog
171         $(top_srcdir)/update-bugs > BUGS-t
172         mv BUGS-t BUGS
173         cp BUGS $(distdir)/BUGS
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' | \
180         grep -v '^perl/blib/' | \
181         grep -v '^capitests/' | \
182         grep -v '^daemon/lib/' | \
183         grep -v '^daemon/tests/' | \
184         grep -v '^examples/' | \
185         grep -v '^gnulib/' | \
186         grep -v '^perl/examples/' | \
187         grep -v '/guestfs_protocol.c' | \
188         grep -v '/rc_protocol.c' | \
189         grep -v 'appliance/debian/root' | \
190         grep -v '^po-docs/' | \
191         LC_ALL=C sort | \
192         sed 's,^\./,,' > po/POTFILES.in
193
194 # Pkgconfig.
195
196 pkgconfigdir = $(libdir)/pkgconfig
197 pkgconfig_DATA = libguestfs.pc
198
199 # Make clean.
200
201 CLEANFILES = $(fs_DATA) \
202         emptydisk \
203         pod2htm?.tmp \
204         html/*.html \
205         guestfs.3 guestfish.1
206
207 clean-local:
208         rm -rf initramfs
209
210 # If you don't want to run all of the tests ('make check') then this
211 # will just run libguestfs-test-tool for a quick check.  Note this
212 # is NOT a substitute for proper testing!
213
214 quickcheck:
215         test-tool/run-test-tool-locally
216
217 # Mostly static binary distribution.
218 #
219 # Some binaries are relinked partially statically.  You can make these
220 # binaries "more static" by making sure that as many foo-static
221 # packages are installed as possible.
222 #
223 # We remove the supermin appliance and adjust some directories to make
224 # them non-Fedora-specific.
225
226 BINTMPDIR = /tmp/libguestfs-bin
227 bindist:
228         rm -rf $(BINTMPDIR)
229         mkdir $(BINTMPDIR)
230         $(MAKE)
231         $(MAKE) DESTDIR=$(BINTMPDIR) install
232         rm -r $(BINTMPDIR)$(libdir)/guestfs/supermin.d
233         rm $(BINTMPDIR)$(libdir)/guestfs/kmod.whitelist
234         mv $(BINTMPDIR)$(prefix)/lib64/* $(BINTMPDIR)$(libdir)
235         mv $(BINTMPDIR)/usr/lib64/* $(BINTMPDIR)$(libdir)
236         -find $(BINTMPDIR) -type d -exec rmdir --ignore-fail-on-non-empty {} \;
237         $(MAKE) -C fish guestfish.static
238         cp fish/guestfish.static $(BINTMPDIR)$(bindir)/guestfish
239         $(MAKE) -C fuse guestmount.static
240         cp fuse/guestmount.static $(BINTMPDIR)$(bindir)/guestmount
241         $(MAKE) -C test-tool libguestfs-test-tool.static
242         cp test-tool/libguestfs-test-tool.static $(BINTMPDIR)$(bindir)/libguestfs-test-tool
243         (cd $(BINTMPDIR) && tar cf - .) | \
244           gzip -c -9 > libguestfs-$(VERSION)-$(host_cpu).tar.gz