Remove generated files in make clean.
[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 EXTRA_DIST = \
19         helloworld.tar \
20         helloworld.tar.gz \
21         mbr-ext2-empty.img.gz \
22         empty known-1 known-2 known-3
23
24 noinst_DATA = test.sqsh
25
26 CLEANFILES = \
27         test.sqsh \
28         100kallzeroes 100kallnewlines 100kallspaces 100krandom 10klines \
29         initrd
30
31 squash_files = helloworld.tar helloworld.tar.gz empty known-1 known-2 known-3 \
32         100kallzeroes 100kallnewlines 100kallspaces 100krandom 10klines \
33         initrd
34
35 test.sqsh: $(squash_files)
36         rm -f $@
37         $(MKSQUASHFS) $(squash_files) $@
38
39 100kallzeroes:
40         rm -f $@ $@-t
41         dd if=/dev/zero of=$@-t bs=1024 count=100
42         mv $@-t $@
43
44 100kallnewlines: 100kallzeroes
45         rm -f $@ $@-t
46         tr '\0' '\n' < $< > $@-t
47         mv $@-t $@
48
49 100kallspaces: 100kallzeroes
50         rm -f $@ $@-t
51         tr '\0' ' ' < $< > $@-t
52         mv $@-t $@
53
54 100krandom:
55         rm -f $@ $@-t
56         dd if=/dev/urandom of=$@-t bs=1024 count=100
57         mv $@-t $@
58
59 10klines:
60         rm -f $@ $@-t
61         i=0; \
62         while [ $$i -lt 10000 ]; do \
63           echo "$${i}abcdefghijklmnopqrstuvwxyz"; \
64           i=$$(($$i+1)); \
65         done > $@-t
66         mv $@-t $@
67
68 initrd: empty known-1 known-2 known-3
69         rm -f $@ $@-t
70         for f in $^; do echo $$f; done | cpio -o -H newc | gzip --best > $@-t
71         mv $@-t $@