1 # libguestfs test images
2 # Copyright (C) 2009 Red Hat Inc.
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.
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.
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.
18 include $(top_srcdir)/subdir-rules.mk
20 # Old RHEL 5 autoconf doesn't have builddir.
21 builddir ?= $(top_builddir)/images
27 mbr-ext2-empty.img.gz \
28 empty known-1 known-2 known-3 known-4 known-5 \
41 noinst_DATA = test.iso
45 100kallzeroes 100kallnewlines 100kallspaces 100krandom 10klines \
49 $(srcdir)/helloworld.tar \
50 $(srcdir)/helloworld.tar.gz \
51 $(srcdir)/helloworld.tar.xz \
58 $(srcdir)/bin-i586-dynamic \
59 $(srcdir)/bin-sparc-dynamic \
60 $(srcdir)/bin-win32.exe \
61 $(srcdir)/bin-win64.exe \
62 $(srcdir)/bin-x86_64-dynamic \
63 $(srcdir)/lib-i586.so \
64 $(srcdir)/lib-sparc.so \
65 $(srcdir)/lib-win32.dll \
66 $(srcdir)/lib-win64.dll \
67 $(srcdir)/lib-x86_64.so \
68 $(srcdir)/test-grep.txt
70 images_files_build = \
71 $(builddir)/100kallzeroes \
72 $(builddir)/100kallnewlines \
73 $(builddir)/100kallspaces \
74 $(builddir)/100krandom \
75 $(builddir)/10klines \
76 $(builddir)/hello.b64 \
78 $(builddir)/initrd-x86_64.img \
79 $(builddir)/initrd-x86_64.img.gz \
80 $(builddir)/test-grep.txt.gz
82 images_files = $(images_files_src) $(images_files_build)
84 test.iso: $(images_files)
87 $(MKISOFS) -J -r -graft-points \
89 $(images_files) /directory=directory
93 $(builddir)/100kallzeroes:
95 dd if=/dev/zero of=$@-t bs=1024 count=100
98 $(builddir)/100kallnewlines: $(builddir)/100kallzeroes
100 tr '\0' '\n' < $< > $@-t
103 $(builddir)/100kallspaces: $(builddir)/100kallzeroes
105 tr '\0' ' ' < $< > $@-t
108 $(builddir)/100krandom:
110 dd if=/dev/urandom of=$@-t bs=1024 count=100
113 $(builddir)/10klines:
116 while [ $$i -lt 10000 ]; do \
117 echo "$${i}abcdefghijklmnopqrstuvwxyz"; \
122 $(builddir)/hello.b64:
123 echo "hello" | base64 > $@
125 $(builddir)/initrd: empty known-1 known-2 known-3 known-4 known-5
127 for f in $^; do echo $$f; done | cpio -o -H newc | gzip --best > $@-t
130 # Create a dummy initrd with a single file called 'bin/nash' which
131 # is used to test the Sys::Guestfs::Lib::file_architecture function.
132 $(builddir)/initrd-x86_64.img: bin-x86_64-dynamic
136 echo bin/nash | cpio -o -H newc > $@-t
140 $(builddir)/initrd-x86_64.img.gz: initrd-x86_64.img
142 gzip --best -c $< > $@-t
145 $(builddir)/test-grep.txt.gz: test-grep.txt
147 gzip --best -c $< > $@-t