Statistics
| Branch: | Revision:

root / Makefile @ acd935ef

History | View | Annotate | Download (3 kB)

1
-include config-host.mak
2

    
3
CFLAGS=-Wall -O2 -g -fno-strict-aliasing 
4
ifdef CONFIG_DARWIN
5
CFLAGS+= -mdynamic-no-pic
6
endif
7
ifdef CONFIG_WIN32
8
CFLAGS+=-fpack-struct 
9
endif
10
LDFLAGS=-g
11
LIBS=
12
DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
13
TOOLS=qemu-img
14
ifdef CONFIG_STATIC
15
LDFLAGS+=-static
16
endif
17
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
18

    
19
all: dyngen$(EXESUF) $(TOOLS) $(DOCS)
20
	for d in $(TARGET_DIRS); do \
21
	$(MAKE) -C $$d $@ || exit 1 ; \
22
        done
23

    
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)
26

    
27
dyngen$(EXESUF): dyngen.c
28
	$(HOST_CC) $(CFLAGS) $(DEFINES) -o $@ $^
29

    
30
clean:
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 *.pod *~ */*~
34
	$(MAKE) -C tests clean
35
	for d in $(TARGET_DIRS); do \
36
	$(MAKE) -C $$d $@ || exit 1 ; \
37
        done
38

    
39
distclean: clean
40
	rm -f config-host.mak config-host.h
41
	for d in $(TARGET_DIRS); do \
42
	rm -rf $$d || exit 1 ; \
43
        done
44

    
45
install: all 
46
	mkdir -p "$(bindir)"
47
ifndef CONFIG_WIN32
48
	install -m 755 -s $(TOOLS) "$(bindir)"
49
endif
50
	mkdir -p "$(datadir)"
51
	install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
52
                       pc-bios/vgabios-cirrus.bin \
53
                       pc-bios/ppc_rom.bin \
54
                       pc-bios/proll.bin \
55
                       pc-bios/linux_boot.bin "$(datadir)"
56
	mkdir -p "$(docdir)"
57
	install -m 644 qemu-doc.html  qemu-tech.html "$(docdir)"
58
ifndef CONFIG_WIN32
59
	mkdir -p "$(mandir)/man1"
60
	install qemu.1 qemu-img.1 "$(mandir)/man1"
61
endif
62
	for d in $(TARGET_DIRS); do \
63
	$(MAKE) -C $$d $@ || exit 1 ; \
64
        done
65

    
66
# various test targets
67
test speed test2: all
68
	$(MAKE) -C tests $@
69

    
70
TAGS: 
71
	etags *.[ch] tests/*.[ch]
72

    
73
# documentation
74
%.html: %.texi
75
	texi2html -monolithic -number $<
76

    
77
qemu.1: qemu-doc.texi
78
	./texi2pod.pl $< qemu.pod
79
	pod2man --section=1 --center=" " --release=" " qemu.pod > $@
80

    
81
qemu-img.1: qemu-img.texi
82
	./texi2pod.pl $< qemu-img.pod
83
	pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
84

    
85
FILE=qemu-$(shell cat VERSION)
86

    
87
# tar release (use 'make -k tar' on a checkouted tree)
88
tar:
89
	rm -rf /tmp/$(FILE)
90
	cp -r . /tmp/$(FILE)
91
	( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
92
	rm -rf /tmp/$(FILE)
93

    
94
# generate a binary distribution
95
tarbin:
96
	( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
97
	$(bindir)/qemu $(bindir)/qemu-fast \
98
	$(bindir)/qemu-system-ppc \
99
	$(bindir)/qemu-system-sparc \
100
	$(bindir)/qemu-i386 \
101
        $(bindir)/qemu-arm \
102
        $(bindir)/qemu-sparc \
103
        $(bindir)/qemu-ppc \
104
        $(bindir)/qemu-img \
105
	$(datadir)/bios.bin \
106
	$(datadir)/vgabios.bin \
107
	$(datadir)/vgabios-cirrus.bin \
108
	$(datadir)/ppc_rom.bin \
109
	$(datadir)/proll.bin \
110
	$(datadir)/linux_boot.bin \
111
	$(docdir)/qemu-doc.html \
112
	$(docdir)/qemu-tech.html \
113
	$(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
114

    
115
ifneq ($(wildcard .depend),)
116
include .depend
117
endif