Updated HACKING notes about debugging.
[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
32 EXTRA_DIST = \
33         make-initramfs.sh update-initramfs.sh \
34         guestfs.pod guestfs-actions.pod guestfs-structs.pod \
35         guestfish.pod guestfish-actions.pod \
36         libguestfs.spec \
37         HACKING
38
39 # Build the root filesystem.
40 # Currently this is arch-dependent, so it seems like putting it in
41 # $(libdir) is best.  When we build cross-architecture filesystems we
42 # should probably move them to $(datadir).
43
44 fsdir = $(libdir)/guestfs
45
46 INITRAMFSIMG = initramfs.$(REPO).$(host_cpu).img
47 VMLINUZ = vmlinuz.$(REPO).$(host_cpu)
48
49 fs_DATA =  $(INITRAMFSIMG) $(VMLINUZ)
50
51 $(INITRAMFSIMG) $(VMLINUZ): initramfs/fakeroot.log
52
53 initramfs/fakeroot.log: make-initramfs.sh.in
54         -mv $(INITRAMFSIMG) $(INITRAMFSIMG).bak
55         -mv $(VMLINUZ) $(VMLINUZ).bak
56         if ! bash $(builddir)/make-initramfs.sh; then rm -f $@; exit 1; fi
57
58 $(INITRAMFSIMG): initramfs/fakeroot.log daemon/guestfsd
59         rm -f $@
60         bash $(builddir)/update-initramfs.sh
61         touch $@
62
63 # Make clean.
64
65 CLEANFILES = $(fs_DATA) emptydisk
66
67 clean-local:
68         rm -rf initramfs
69
70 # Manual pages.
71 # guestfs-actions.pod and guestfs-structs are autogenerated.  There is
72 # no include mechanism for POD, so we have to do it by hand.
73
74 man_MANS = guestfs.3 guestfish.1
75
76 guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod
77         sed \
78           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
79           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
80           < $< | \
81         $(POD2MAN) \
82           --section 3 \
83           -c "Virtualization Support" \
84           --name "guestfs" \
85           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
86           > $@
87
88 guestfish.1: guestfish.pod guestfish-actions.pod
89         sed \
90           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
91           < $< | \
92         $(POD2MAN) \
93           --section 1 \
94           -c "Virtualization Support" \
95           --name "guestfish" \
96           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
97           > $@
98
99 # Test-boot the image.
100
101 test-boot: emptydisk
102         qemu-system-$(host_cpu) \
103           -m 384 \
104           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
105           -hda emptydisk
106
107 emptydisk:
108         rm -f emptydisk
109         dd if=/dev/zero of=emptydisk bs=1024 count=1440
110         echo 0, | sfdisk -q -C 80 -H 2 -S 18 emptydisk > /dev/null
111
112 # This is a more realistic test boot command line which better
113 # reflects what the library does.
114
115 test-boot-realistic: emptydisk
116         qemu-system-$(host_cpu) \
117           -m 384 \
118           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
119           -hda emptydisk \
120           -append "console=ttyS0 guestfs=10.0.2.4:6666" \
121           -nographic \
122           -serial stdio \
123           -net channel,6666:unix:/tmp/sock,server,nowait \
124           -net user,vlan=0 \
125           -net nic,vlan=0