1 -include config-host.mak
3 CFLAGS=-Wall -O2 -g -fno-strict-aliasing
5 CFLAGS+= -mdynamic-no-pic
12 DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
17 DOCS=qemu-doc.html qemu-tech.html qemu.1
19 all: dyngen$(EXESUF) $(TOOLS) $(DOCS)
20 for d in $(TARGET_DIRS); do \
21 $(MAKE) -C $$d $@ || exit 1 ; \
24 qemu-img: qemu-img.c block.c block-cow.c block-qcow.c aes.c block-vmdk.c block-cloop.c
25 $(CC) -DQEMU_TOOL $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ -lz $(LIBS)
27 dyngen$(EXESUF): dyngen.c
28 $(HOST_CC) $(CFLAGS) $(DEFINES) -o $@ $^
31 # avoid old build problems by removing potentially incorrect old files
32 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
33 rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS qemu.pod *~ */*~
34 $(MAKE) -C tests clean
35 for d in $(TARGET_DIRS); do \
36 $(MAKE) -C $$d $@ || exit 1 ; \
40 rm -f config-host.mak config-host.h $(DOCS)
41 for d in $(TARGET_DIRS); do \
42 rm -rf $$d || exit 1 ; \
48 install -m 755 -s $(TOOLS) "$(bindir)"
51 install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
52 pc-bios/vgabios-cirrus.bin \
55 pc-bios/linux_boot.bin "$(datadir)"
57 install -m 644 qemu-doc.html qemu-tech.html "$(docdir)"
59 mkdir -p "$(mandir)/man1"
60 install qemu.1 qemu-mkcow.1 "$(mandir)/man1"
62 for d in $(TARGET_DIRS); do \
63 $(MAKE) -C $$d $@ || exit 1 ; \
66 # various test targets
71 etags *.[ch] tests/*.[ch]
75 texi2html -monolithic -number $<
78 ./texi2pod.pl $< qemu.pod
79 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
81 FILE=qemu-$(shell cat VERSION)
83 # tar release (use 'make -k tar' on a checkouted tree)
87 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
90 # generate a binary distribution
92 ( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
93 $(bindir)/qemu $(bindir)/qemu-fast \
94 $(bindir)/qemu-system-ppc \
97 $(bindir)/qemu-sparc \
100 $(datadir)/bios.bin \
101 $(datadir)/vgabios.bin \
102 $(datadir)/vgabios-cirrus.bin \
103 $(datadir)/ppc_rom.bin \
104 $(datadir)/proll.bin \
105 $(datadir)/linux_boot.bin \
106 $(docdir)/qemu-doc.html \
107 $(docdir)/qemu-tech.html \
108 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-mkcow.1 )
110 ifneq ($(wildcard .depend),)