XML output.
[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 = src daemon fish examples images
21
22 if HAVE_OCAML
23 SUBDIRS += ocaml
24 endif
25 if HAVE_PERL
26 SUBDIRS += perl
27 endif
28 if HAVE_PYTHON
29 SUBDIRS += python
30 endif
31 if HAVE_RUBY
32 SUBDIRS += ruby
33 endif
34 if HAVE_JAVA
35 SUBDIRS += java
36 endif
37 if HAVE_INSPECTOR
38 SUBDIRS += inspector
39 endif
40
41 EXTRA_DIST = \
42         make-initramfs.sh update-initramfs.sh \
43         guestfs.pod guestfs-actions.pod guestfs-structs.pod \
44         guestfish.pod guestfish-actions.pod \
45         libguestfs.spec \
46         html/pod.css \
47         HACKING TODO \
48         tests.c \
49         libguestfs.pc libguestfs.pc.in \
50         gitlog-to-changelog \
51         recipes/LICENSE \
52         recipes/README \
53         recipes/*.html \
54         recipes/*.sh \
55         recipes/*.example \
56         html/recipes.css \
57         make-recipes.sh
58
59 # Build the root filesystem.
60 # Currently this is arch-dependent, so it seems like putting it in
61 # $(libdir) is best.  When we build cross-architecture filesystems we
62 # should probably move them to $(datadir).
63
64 fsdir = $(libdir)/guestfs
65
66 INITRAMFSIMG = initramfs.$(REPO).$(host_cpu).img
67 VMLINUZ = vmlinuz.$(REPO).$(host_cpu)
68
69 fs_DATA =  $(INITRAMFSIMG) $(VMLINUZ)
70
71 $(INITRAMFSIMG) $(VMLINUZ): initramfs/fakeroot.log
72
73 initramfs/fakeroot.log: make-initramfs.sh.in
74         -mv $(INITRAMFSIMG) $(INITRAMFSIMG).bak
75         -mv $(VMLINUZ) $(VMLINUZ).bak
76         if ! bash $(top_builddir)/make-initramfs.sh; then rm -f $@; exit 1; fi
77
78 $(INITRAMFSIMG): initramfs/fakeroot.log daemon/guestfsd
79         rm -f $@
80         bash $(top_builddir)/update-initramfs.sh
81         touch $@
82
83 # Tests.  These are auto-generated from the test descriptions.
84
85 check_PROGRAMS = tests
86
87 tests_SOURCES = tests.c
88 tests_CFLAGS = \
89         -I$(top_builddir)/src -Wall
90 tests_LDADD = $(top_builddir)/src/libguestfs.la
91
92 TESTS = $(check_PROGRAMS)
93
94 $(TESTS): $(INITRAMFS) $(VMLINUZ)
95
96 # Manual pages.
97 # guestfs-actions.pod and guestfs-structs are autogenerated.  There is
98 # no include mechanism for POD, so we have to do it by hand.
99
100 man_MANS = guestfs.3 guestfish.1
101
102 guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod
103         sed \
104           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
105           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
106           < $< | \
107         $(POD2MAN) \
108           --section 3 \
109           -c "Virtualization Support" \
110           --name "guestfs" \
111           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
112           > $@
113
114 guestfish.1: guestfish.pod guestfish-actions.pod
115         sed \
116           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
117           < $< | \
118         $(POD2MAN) \
119           --section 1 \
120           -c "Virtualization Support" \
121           --name "guestfish" \
122           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
123           > $@
124
125 noinst_DATA = html/guestfs.3.html html/guestfish.1.html
126
127 html/guestfs.3.html: guestfs.pod guestfs-actions.pod guestfs-structs.pod
128         sed \
129           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
130           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
131           < $< | \
132         pod2html \
133           --css 'pod.css' \
134           --title "libguestfs API documentation" \
135           --htmldir html \
136           --outfile $@
137
138 html/guestfish.1.html: guestfish.pod guestfish-actions.pod
139         sed \
140           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
141           < $< | \
142         pod2html \
143           --css 'pod.css' \
144           --title "guestfish, libguestfs filesystem interactive shell" \
145           --htmldir html \
146           --outfile $@
147
148 # Recipes web page.
149 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
150         rm -f $@ $@-t
151         sh make-recipes.sh recipes/*.sh > $@-t
152         mv $@-t $@
153
154 website: html/guestfs.3.html html/guestfish.1.html html/recipes.html
155         cp $^ html/pod.css html/recipes.css \
156           $(HOME)/d/redhat/et-website/libguestfs/
157
158 # Generate the ChangeLog automatically from the gitlog.
159
160 dist-hook:
161         ./gitlog-to-changelog > ChangeLog
162         cp ChangeLog $(distdir)/ChangeLog
163
164 # Pkgconfig.
165
166 pkgconfigdir = $(libdir)/pkgconfig
167 pkgconfig_DATA = libguestfs.pc
168
169 # Test-boot the image.
170
171 test-boot: emptydisk
172         qemu-system-$(host_cpu) \
173           -m 384 \
174           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
175           -hda emptydisk
176
177 emptydisk:
178         rm -f emptydisk
179         dd if=/dev/zero of=emptydisk bs=1024 count=1440
180         echo 0, | sfdisk -q -C 80 -H 2 -S 18 emptydisk > /dev/null
181
182 # This is a more realistic test boot command line which better
183 # reflects what the library does.
184
185 test-boot-realistic: emptydisk
186         qemu-system-$(host_cpu) \
187           -m 384 \
188           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
189           -hda emptydisk \
190           -append "console=ttyS0 guestfs=10.0.2.4:6666" \
191           -nographic \
192           -serial stdio \
193           -net channel,6666:unix:/tmp/sock,server,nowait \
194           -net user,vlan=0 \
195           -net nic,vlan=0
196
197 # Make clean.
198
199 CLEANFILES = $(fs_DATA) emptydisk pod2htm?.tmp *~ html/*~ recipes/*~
200
201 clean-local:
202         rm -rf initramfs