1 -include config-host.mak
3 CFLAGS
=-Wall
-O2
-g
-fno-strict-aliasing
5 CFLAGS
+= -mdynamic-no-pic
9 DEFINES
+=-D_GNU_SOURCE
-D_FILE_OFFSET_BITS
=64 -D_LARGEFILE_SOURCE
10 TOOLS
=qemu-img
$(EXESUF
)
14 DOCS
=qemu-doc.html qemu-tech.html qemu
.1 qemu-img
.1
16 all: dyngen
$(EXESUF
) $(TOOLS
) $(DOCS
)
17 for d in
$(TARGET_DIRS
); do \
18 $(MAKE
) -C
$$d $@ || exit
1 ; \
21 qemu-img
$(EXESUF
): qemu-img.c block.c block-cow.c block-qcow.c aes.c block-vmdk.c block-cloop.c block-dmg.c block-bochs.c block-vpc.c block-vvfat.c
22 $(CC
) -DQEMU_TOOL
$(CFLAGS
) $(LDFLAGS
) $(DEFINES
) -o
$@
$^
-lz
$(LIBS
)
24 dyngen
$(EXESUF
): dyngen.c
25 $(HOST_CC
) $(CFLAGS
) $(DEFINES
) -o
$@
$^
28 # avoid old build problems by removing potentially incorrect old files
29 rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
30 rm -f
*.o
*.a
$(TOOLS
) dyngen
$(EXESUF
) TAGS
*.pod
*~
*/*~
31 $(MAKE
) -C tests
clean
32 for d in
$(TARGET_DIRS
); do \
33 $(MAKE
) -C
$$d $@ || exit
1 ; \
37 rm -f config-host.mak config-host.h
38 for d in
$(TARGET_DIRS
); do \
39 rm -rf
$$d || exit
1 ; \
42 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
43 ar de en-us fi fr-be hr it lv nl pl ru th \
44 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
48 install -m
755 -s
$(TOOLS
) "$(bindir)"
50 install -m
644 pc-bios
/bios.bin pc-bios
/vgabios.bin \
51 pc-bios
/vgabios-cirrus.bin \
52 pc-bios
/ppc_rom.bin pc-bios
/video.x \
54 pc-bios
/linux_boot.bin
"$(datadir)"
56 install -m
644 qemu-doc.html qemu-tech.html
"$(docdir)"
58 mkdir
-p
"$(mandir)/man1"
59 install qemu
.1 qemu-img
.1 "$(mandir)/man1"
60 mkdir
-p
"$(datadir)/keymaps"
61 install -m
644 $(addprefix keymaps
/,$(KEYMAPS
)) "$(datadir)/keymaps"
63 for d in
$(TARGET_DIRS
); do \
64 $(MAKE
) -C
$$d $@ || exit
1 ; \
67 # various test targets
72 etags
*.
[ch
] tests
/*.
[ch
]
76 find .
-name
"*.[ch]" -print > .
/cscope.files
81 texi2html
-monolithic
-number
$<
84 .
/texi2pod.pl
$< qemu.pod
85 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
87 qemu-img
.1: qemu-img.texi
88 .
/texi2pod.pl
$< qemu-img.pod
89 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
91 FILE
=qemu-
$(shell cat VERSION
)
93 # tar release (use 'make -k tar' on a checkouted tree)
97 ( cd
/tmp
; tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
)
100 # generate a binary distribution
102 ( cd
/ ; tar zcvf ~
/qemu-
$(VERSION
)-i386.
tar.gz \
104 $(bindir)/qemu-system-ppc \
105 $(bindir)/qemu-system-sparc \
106 $(bindir)/qemu-system-x86_64 \
107 $(bindir)/qemu-system-mips \
108 $(bindir)/qemu-system-mipsel \
109 $(bindir)/qemu-system-arm \
110 $(bindir)/qemu-i386 \
112 $(bindir)/qemu-armeb \
113 $(bindir)/qemu-sparc \
115 $(bindir)/qemu-mips \
116 $(bindir)/qemu-mipsel \
118 $(datadir)/bios.bin \
119 $(datadir)/vgabios.bin \
120 $(datadir)/vgabios-cirrus.bin \
121 $(datadir)/ppc_rom.bin \
123 $(datadir)/proll.elf \
124 $(datadir)/linux_boot.bin \
125 $(docdir
)/qemu-doc.html \
126 $(docdir
)/qemu-tech.html \
127 $(mandir)/man1
/qemu
.1 $(mandir)/man1
/qemu-img
.1 )
129 ifneq ($(wildcard .depend
),)