-localtime option
[qemu.git] / Makefile
blob4137e9b95b249c6b82101c5903fc8cb353bafd4c
1 include config-host.mak
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
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
22 qemu-mkcow: qemu-mkcow.c
23 $(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ $(LIBS)
25 vmdk2raw: vmdk2raw.c
26 $(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ $(LIBS)
28 dyngen$(EXESUF): dyngen.c
29 $(HOST_CC) $(CFLAGS) $(DEFINES) -o $@ $^
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
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
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/linux_boot.bin "$(datadir)"
54 mkdir -p "$(docdir)"
55 install -m 644 qemu-doc.html qemu-tech.html "$(docdir)"
56 ifndef CONFIG_WIN32
57 mkdir -p "$(mandir)/man1"
58 install qemu.1 qemu-mkcow.1 "$(mandir)/man1"
59 endif
60 for d in $(TARGET_DIRS); do \
61 $(MAKE) -C $$d $@ || exit 1 ; \
62 done
64 # various test targets
65 test speed test2: all
66 $(MAKE) -C tests $@
68 TAGS:
69 etags *.[ch] tests/*.[ch]
71 # documentation
72 %.html: %.texi
73 texi2html -monolithic -number $<
75 qemu.1: qemu-doc.texi
76 ./texi2pod.pl $< qemu.pod
77 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
79 FILE=qemu-$(shell cat VERSION)
81 # tar release (use 'make -k tar' on a checkouted tree)
82 tar:
83 rm -rf /tmp/$(FILE)
84 cp -r . /tmp/$(FILE)
85 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
86 rm -rf /tmp/$(FILE)
88 # generate a binary distribution
89 tarbin:
90 ( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
91 $(bindir)/qemu $(bindir)/qemu-fast \
92 $(bindir)/qemu-system-ppc \
93 $(bindir)/qemu-i386 \
94 $(bindir)/qemu-arm \
95 $(bindir)/qemu-sparc \
96 $(bindir)/qemu-ppc \
97 $(bindir)/qemu-mkcow $(bindir)/vmdk2raw \
98 $(datadir)/bios.bin \
99 $(datadir)/vgabios.bin \
100 $(datadir)/linux_boot.bin \
101 $(docdir)/qemu-doc.html \
102 $(docdir)/qemu-tech.html \
103 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-mkcow.1 )
105 ifneq ($(wildcard .depend),)
106 include .depend
107 endif