]> git.proxmox.com Git - mirror_qemu.git/blob - Makefile
specific VGA BIOS for Cirrus VGA Card
[mirror_qemu.git] / Makefile
1 include config-host.mak
2
3 CFLAGS=-Wall -O2 -g
4 ifdef CONFIG_WIN32
5 CFLAGS+=-fpack-struct
6 endif
7 LDFLAGS=-g
8 LIBS=
9 DEFINES+=-D_GNU_SOURCE
10 ifndef CONFIG_WIN32
11 TOOLS=qemu-mkcow vmdk2raw
12 endif
13 ifdef CONFIG_STATIC
14 LDFLAGS+=-static
15 endif
16
17 all: dyngen$(EXESUF) $(TOOLS) qemu-doc.html qemu-tech.html qemu.1
18 for d in $(TARGET_DIRS); do \
19 $(MAKE) -C $$d $@ || exit 1 ; \
20 done
21
22 qemu-mkcow: qemu-mkcow.c
23 $(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ $(LIBS)
24
25 vmdk2raw: vmdk2raw.c
26 $(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ $(LIBS)
27
28 dyngen$(EXESUF): dyngen.c
29 $(HOST_CC) $(CFLAGS) $(DEFINES) -o $@ $^
30
31 clean:
32 # avoid old build problems by removing potentially incorrect old files
33 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
34 rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS qemu.pod
35 $(MAKE) -C tests clean
36 for d in $(TARGET_DIRS); do \
37 $(MAKE) -C $$d $@ || exit 1 ; \
38 done
39
40 distclean: clean
41 rm -f config-host.mak config-host.h
42 for d in $(TARGET_DIRS); do \
43 rm -rf $$d || exit 1 ; \
44 done
45
46 install: all
47 mkdir -p "$(bindir)"
48 ifndef CONFIG_WIN32
49 install -m 755 -s $(TOOLS) "$(bindir)"
50 endif
51 mkdir -p "$(datadir)"
52 install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
53 pc-bios/vgabios-cirrus.bin \
54 pc-bios/linux_boot.bin "$(datadir)"
55 mkdir -p "$(docdir)"
56 install -m 644 qemu-doc.html qemu-tech.html "$(docdir)"
57 ifndef CONFIG_WIN32
58 mkdir -p "$(mandir)/man1"
59 install qemu.1 qemu-mkcow.1 "$(mandir)/man1"
60 endif
61 for d in $(TARGET_DIRS); do \
62 $(MAKE) -C $$d $@ || exit 1 ; \
63 done
64
65 # various test targets
66 test speed test2: all
67 $(MAKE) -C tests $@
68
69 TAGS:
70 etags *.[ch] tests/*.[ch]
71
72 # documentation
73 %.html: %.texi
74 texi2html -monolithic -number $<
75
76 qemu.1: qemu-doc.texi
77 ./texi2pod.pl $< qemu.pod
78 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
79
80 FILE=qemu-$(shell cat VERSION)
81
82 # tar release (use 'make -k tar' on a checkouted tree)
83 tar:
84 rm -rf /tmp/$(FILE)
85 cp -r . /tmp/$(FILE)
86 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
87 rm -rf /tmp/$(FILE)
88
89 # generate a binary distribution
90 tarbin:
91 ( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
92 $(bindir)/qemu $(bindir)/qemu-fast \
93 $(bindir)/qemu-system-ppc \
94 $(bindir)/qemu-i386 \
95 $(bindir)/qemu-arm \
96 $(bindir)/qemu-sparc \
97 $(bindir)/qemu-ppc \
98 $(bindir)/qemu-mkcow $(bindir)/vmdk2raw \
99 $(datadir)/bios.bin \
100 $(datadir)/vgabios.bin \
101 $(datadir)/vgabios-cirrus.bin \
102 $(datadir)/linux_boot.bin \
103 $(docdir)/qemu-doc.html \
104 $(docdir)/qemu-tech.html \
105 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-mkcow.1 )
106
107 ifneq ($(wildcard .depend),)
108 include .depend
109 endif