Various fixes to the build system, add 'make test-boot-image' target.
[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 examples
21
22 EXTRA_DIST = make-initramfs.sh
23
24 # Build the root filesystem.
25 # Currently this is arch-dependent, so it seems like putting it in
26 # $(libdir) is best.  When we build cross-architecture filesystems we
27 # should probably move them to $(datadir).
28
29 fsdir = $(libdir)/guestfs
30
31 INITRAMFSIMG = initramfs.$(REPO).$(host_cpu).img
32 VMLINUZ = vmlinuz.$(REPO).$(host_cpu)
33
34 fs_DATA =  $(INITRAMFSIMG) $(VMLINUZ)
35
36 $(VMLINUZ) $(INITRAMFSIMG): initramfs.timestamp
37
38 initramfs.timestamp: make-initramfs.sh.in daemon/guestfsd
39         rm -f $@
40         $(builddir)/make-initramfs.sh
41         touch $@
42
43 .PHONY: daemon/guestfsd
44
45 # Make clean.
46
47 CLEANFILES = $(fs_DATA) initramfs.timestamp
48
49 clean-local:
50         rm -rf initramfs
51
52 # Test-boot the image.
53
54 test-boot-image:
55         rm -f emptydisk
56         dd if=/dev/zero of=emptydisk bs=1024 count=1440
57         echo 0, | sfdisk -C 80 -H 2 -S 18 emptydisk
58         qemu-system-$(host_cpu) \
59           -m 384 \
60           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
61           -hda emptydisk -boot c
62         rm -f emptydisk