424f5e458e8e13eb562fb9ad3a5fe7d7d9ffdd24
[libguestfs.git] / images / Makefile.am
1 # libguestfs test images
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 # Old RHEL 5 autoconf doesn't have builddir.
19 builddir ?= $(top_builddir)/images
20
21 EXTRA_DIST = \
22         helloworld.tar \
23         helloworld.tar.gz \
24         mbr-ext2-empty.img.gz \
25         empty known-1 known-2 known-3 known-4 known-5 \
26         bin-i586-dynamic \
27         bin-sparc-dynamic \
28         bin-win32.exe \
29         bin-win64.exe \
30         bin-x86_64-dynamic \
31         lib-i586.so \
32         lib-sparc.so \
33         lib-win32.dll \
34         lib-win64.dll \
35         lib-x86_64.so \
36         test-grep.txt
37
38 noinst_DATA = test.sqsh
39
40 CLEANFILES = \
41         test.sqsh \
42         100kallzeroes 100kallnewlines 100kallspaces 100krandom 10klines \
43         initrd
44
45 squash_files_src = \
46         $(srcdir)/helloworld.tar \
47         $(srcdir)/helloworld.tar.gz \
48         $(srcdir)/empty \
49         $(srcdir)/known-1 \
50         $(srcdir)/known-2 \
51         $(srcdir)/known-3 \
52         $(srcdir)/known-4 \
53         $(srcdir)/known-5 \
54         $(srcdir)/bin-i586-dynamic \
55         $(srcdir)/bin-sparc-dynamic \
56         $(srcdir)/bin-win32.exe \
57         $(srcdir)/bin-win64.exe \
58         $(srcdir)/bin-x86_64-dynamic \
59         $(srcdir)/lib-i586.so \
60         $(srcdir)/lib-sparc.so \
61         $(srcdir)/lib-win32.dll \
62         $(srcdir)/lib-win64.dll \
63         $(srcdir)/lib-x86_64.so \
64         $(srcdir)/test-grep.txt
65
66 squash_files_build = \
67         $(builddir)/100kallzeroes \
68         $(builddir)/100kallnewlines \
69         $(builddir)/100kallspaces \
70         $(builddir)/100krandom \
71         $(builddir)/10klines \
72         $(builddir)/initrd \
73         $(builddir)/initrd-x86_64.img \
74         $(builddir)/initrd-x86_64.img.gz \
75         $(builddir)/test-grep.txt.gz
76
77 squash_files = $(squash_files_src) $(squash_files_build)
78
79 test.sqsh: $(squash_files)
80         rm -f $@
81         $(MKSQUASHFS) $(squash_files) $@
82
83 $(builddir)/100kallzeroes:
84         rm -f $@ $@-t
85         dd if=/dev/zero of=$@-t bs=1024 count=100
86         mv $@-t $@
87
88 $(builddir)/100kallnewlines: $(builddir)/100kallzeroes
89         rm -f $@ $@-t
90         tr '\0' '\n' < $< > $@-t
91         mv $@-t $@
92
93 $(builddir)/100kallspaces: $(builddir)/100kallzeroes
94         rm -f $@ $@-t
95         tr '\0' ' ' < $< > $@-t
96         mv $@-t $@
97
98 $(builddir)/100krandom:
99         rm -f $@ $@-t
100         dd if=/dev/urandom of=$@-t bs=1024 count=100
101         mv $@-t $@
102
103 $(builddir)/10klines:
104         rm -f $@ $@-t
105         i=0; \
106         while [ $$i -lt 10000 ]; do \
107           echo "$${i}abcdefghijklmnopqrstuvwxyz"; \
108           i=$$(($$i+1)); \
109         done > $@-t
110         mv $@-t $@
111
112 $(builddir)/initrd: empty known-1 known-2 known-3
113         rm -f $@ $@-t
114         for f in $^; do echo $$f; done | cpio -o -H newc | gzip --best > $@-t
115         mv $@-t $@
116
117 # Create a dummy initrd with a single file called 'bin/nash' which
118 # is used to test the Sys::Guestfs::Lib::file_architecture function.
119 $(builddir)/initrd-x86_64.img: bin-x86_64-dynamic
120         rm -rf bin $@ $@-t
121         mkdir bin
122         cp $< bin/nash
123         echo bin/nash | cpio -o -H newc > $@-t
124         mv $@-t $@
125         rm -rf bin $@-t
126
127 $(builddir)/initrd-x86_64.img.gz: initrd-x86_64.img
128         rm -f $@ $@-t
129         gzip --best -c $< > $@-t
130         mv $@-t $@
131
132 $(builddir)/test-grep.txt.gz: test-grep.txt
133         rm -f $@ $@-t
134         gzip --best -c $< > $@-t
135         mv $@-t $@