Commit 76bc68382096b941d58a018166d5604f44915b1b
1 parent
3b22c470
updated
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@363 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
12 additions
and
8 deletions
Makefile
... | ... | @@ -27,7 +27,10 @@ clean: |
27 | 27 | done |
28 | 28 | |
29 | 29 | distclean: clean |
30 | - rm -f config.mak config.h | |
30 | + rm -f config-host.mak config-host.h config.mak config.h | |
31 | + for d in $(TARGET_DIRS); do \ | |
32 | + rm -f $$d/config.h $$d/config.mak || exit 1 ; \ | |
33 | + done | |
31 | 34 | |
32 | 35 | install: all |
33 | 36 | mkdir -p $(prefix)/bin |
... | ... | @@ -49,16 +52,17 @@ qemu-doc.html: qemu-doc.texi |
49 | 52 | |
50 | 53 | FILES= \ |
51 | 54 | README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \ |
52 | -configure \ | |
55 | +configure Makefile Makefile.target \ | |
53 | 56 | dyngen.c dyngen.h dyngen-exec.h ioctls.h syscall_types.h \ |
54 | -Makefile elf.h elfload.c main.c signal.c qemu.h \ | |
57 | +elf.h elfload.c main.c signal.c qemu.h \ | |
55 | 58 | syscall.c syscall_defs.h vm86.c path.c mmap.c \ |
56 | -i386.ld ppc.ld alpha.ld s390.ld sparc.ld arm.ld\ | |
57 | -vl.c i386-vl.ld vl.h block.c vlmkcow.c\ | |
58 | -thunk.c cpu-exec.c translate.c cpu-all.h thunk.h exec.h\ | |
59 | -exec.c cpu-exec.c gdbstub.c\ | |
60 | -cpu-i386.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c \ | |
59 | +i386.ld ppc.ld alpha.ld s390.ld sparc.ld arm.ld m68k.ld \ | |
60 | +vl.c i386-vl.ld vl.h block.c vlmkcow.c vga.c vga_template.h sdl.c \ | |
61 | +thunk.c cpu-exec.c translate.c cpu-all.h cpu-defs.h thunk.h exec.h\ | |
62 | +exec.c cpu-exec.c gdbstub.c bswap.h \ | |
63 | +cpu-i386.h op-i386.c helper-i386.c helper2-i386.c syscall-i386.h translate-i386.c \ | |
61 | 64 | exec-i386.h ops_template.h ops_template_mem.h op_string.h opreg_template.h \ |
65 | +ops_mem.h softmmu_template.h softmmu_header.h \ | |
62 | 66 | cpu-arm.h syscall-arm.h exec-arm.h op-arm.c translate-arm.c op-arm-template.h \ |
63 | 67 | dis-asm.h disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c sparc-dis.c \ |
64 | 68 | arm-dis.c \ | ... | ... |