Makefile 9.8 KB
Newer Older
1 2
# Makefile for QEMU.

3
GENERATED_HEADERS = config-host.h
J
Juan Quintela 已提交
4

5
ifneq ($(wildcard config-host.mak),)
P
Paul Brook 已提交
6 7
# Put the all: rule here so that config-host.mak can contain dependencies.
all: build-all
P
pbrook 已提交
8
include config-host.mak
A
aliguori 已提交
9
include $(SRC_PATH)/rules.mak
10 11 12
config-host.mak: configure
	@echo $@ is out-of-date, running configure
	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
13 14 15 16 17
else
config-host.mak:
	@echo "Please call configure before running make!"
	@exit 1
endif
B
bellard 已提交
18

19 20 21 22 23
# Don't try to regenerate Makefile or configure
# We don't generate any of them
Makefile: ;
configure: ;

24
.PHONY: all clean cscope distclean dvi html info install install-doc \
J
Juan Quintela 已提交
25
	recurse-all speed tar tarbin test build-all
26

P
Paolo Bonzini 已提交
27
$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
P
pbrook 已提交
28

J
Juan Quintela 已提交
29
LIBS+=-lz $(LIBS_TOOLS)
30

31
ifdef BUILD_DOCS
B
bellard 已提交
32
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
33 34 35
else
DOCS=
endif
B
bellard 已提交
36

37
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
38 39 40
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))

config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
41
	$(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@,"  GEN   $@")
42

43 44 45 46
%/config-devices.mak: default-configs/%.mak
	$(call quiet-command,cat $< > $@.tmp, "  GEN   $@")
	@if test -f $@ ; then \
	  echo "WARNING: $@ out of date." ;\
S
Stefan Weil 已提交
47
	  echo "Run \"make defconfig\" to regenerate." ; \
48 49 50 51 52 53 54 55
	  rm $@.tmp ; \
	 else \
	  mv $@.tmp $@ ; \
	 fi

defconfig:
	rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)

56
-include config-all-devices.mak
57

J
Juan Quintela 已提交
58
build-all: $(DOCS) $(TOOLS) recurse-all
P
pbrook 已提交
59

60 61 62
config-host.h: config-host.h-timestamp
config-host.h-timestamp: config-host.mak

63 64
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))

J
Juan Quintela 已提交
65
subdir-%: $(GENERATED_HEADERS)
P
Paul Brook 已提交
66
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
P
pbrook 已提交
67

68 69 70 71
include $(SRC_PATH)/Makefile.objs

$(common-obj-y): $(GENERATED_HEADERS)
$(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y)
P
Paul Brook 已提交
72

73 74
$(filter %-user,$(SUBDIR_RULES)): libuser.a

J
Juergen Lock 已提交
75
libuser.a: $(GENERATED_HEADERS)
B
Blue Swirl 已提交
76
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="libuser/" all,)
77

P
Paul Brook 已提交
78 79 80 81 82 83 84
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
romsubdir-%:
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)

ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))

recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
B
bellard 已提交
85

86
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
87

J
Juan Quintela 已提交
88
QEMU_CFLAGS+=$(CURL_CFLAGS)
A
Alexander Graf 已提交
89

B
bellard 已提交
90 91
cocoa.o: cocoa.m

92 93
keymaps.o: keymaps.c keymaps.h

S
Stefano Stabellini 已提交
94 95 96
sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h

sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
97

J
Juan Quintela 已提交
98
sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
B
bellard 已提交
99

100 101
acl.o: acl.h acl.c

102
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
103

104
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
B
bellard 已提交
105

J
Juan Quintela 已提交
106
vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
B
balrog 已提交
107

108 109 110 111
vnc-tls.o: vnc-tls.c vnc.h

vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h

112 113
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h

114
curses.o: curses.c keymaps.h curses_keys.h
B
balrog 已提交
115

J
Juan Quintela 已提交
116
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
B
bellard 已提交
117 118 119

######################################################################

120
qemu-img.o: qemu-img-cmds.h
121

122 123 124 125 126 127 128 129
obj-y = qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)

qemu-img$(EXESUF): $(obj-y)

obj-y = qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
$(obj-y): $(GENERATED_HEADERS)

qemu-nbd$(EXESUF): $(obj-y)
B
bellard 已提交
130

131 132
obj-y = qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y)
$(obj-y): $(GENERATED_HEADERS)
A
aliguori 已提交
133

134
qemu-io$(EXESUF): $(obj-y)
135

136 137 138
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $@")

L
Luiz Capitulino 已提交
139
check-qint: check-qint.o qint.o qemu-malloc.o
L
Luiz Capitulino 已提交
140
check-qstring: check-qstring.o qstring.o qemu-malloc.o
141
check-qdict: check-qdict.o qdict.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
L
Luiz Capitulino 已提交
142
check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
A
Anthony Liguori 已提交
143
check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
A
Anthony Liguori 已提交
144
check-qjson: check-qjson.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o qjson.o json-streamer.o json-lexer.o json-parser.o qemu-malloc.o
L
Luiz Capitulino 已提交
145

146
clean:
147
# avoid old build problems by removing potentially incorrect old files
148
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
149
	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
150
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d
B
Blue Swirl 已提交
151
	rm -f qemu-img-cmds.h
B
bellard 已提交
152
	$(MAKE) -C tests clean
153
	for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \
M
Magnus Damm 已提交
154
	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
B
bellard 已提交
155
        done
156

B
bellard 已提交
157
distclean: clean
M
Magnus Damm 已提交
158
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
159
	rm -f config-all-devices.mak
M
Magnus Damm 已提交
160
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
161
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
162
	for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
B
bellard 已提交
163
	rm -rf $$d || exit 1 ; \
B
updated  
bellard 已提交
164
        done
B
bellard 已提交
165

B
bellard 已提交
166 167 168 169
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr

T
ths 已提交
170 171
ifdef INSTALL_BLOBS
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
A
aurel32 已提交
172
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
173 174 175
pxe-e1000.bin pxe-i82559er.bin \
pxe-ne2k_pci.bin pxe-pcnet.bin \
pxe-rtl8139.bin pxe-virtio.bin \
A
Alexander Graf 已提交
176
bamboo.dtb petalogix-s3adsp1800.dtb \
A
Alexander Graf 已提交
177
multiboot.bin linuxboot.bin
T
ths 已提交
178 179 180 181
else
BLOBS=
endif

182
install-doc: $(DOCS)
183 184
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
185
ifdef CONFIG_POSIX
186 187 188 189
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
190 191 192
endif

install: all $(if $(BUILD_DOCS),install-doc)
193
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
194
ifneq ($(TOOLS),)
195
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
196
endif
T
ths 已提交
197
ifneq ($(BLOBS),)
198
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
T
ths 已提交
199
	set -e; for x in $(BLOBS); do \
200
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
P
pbrook 已提交
201
	done
T
ths 已提交
202
endif
203
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
204
	set -e; for x in $(KEYMAPS); do \
205
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
P
pbrook 已提交
206
	done
B
bellard 已提交
207
	for d in $(TARGET_DIRS); do \
B
bellard 已提交
208
	$(MAKE) -C $$d $@ || exit 1 ; \
B
bellard 已提交
209
        done
B
bellard 已提交
210

B
bellard 已提交
211
# various test targets
B
bellard 已提交
212
test speed: all
B
bellard 已提交
213
	$(MAKE) -C tests $@
214

A
Alexandre Bique 已提交
215
.PHONY: TAGS
216
TAGS:
A
Alexandre Bique 已提交
217
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
218

B
bellard 已提交
219 220
cscope:
	rm -f ./cscope.*
221
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
B
bellard 已提交
222 223
	cscope -b

B
bellard 已提交
224
# documentation
B
bellard 已提交
225
%.html: %.texi
226
	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
B
bellard 已提交
227

B
bellard 已提交
228
%.info: %.texi
229
	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
B
bellard 已提交
230 231

%.dvi: %.texi
232
	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
233 234

qemu-options.texi: $(SRC_PATH)/qemu-options.hx
235
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
B
bellard 已提交
236

237 238 239
qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")

240 241 242
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")

243
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
244 245 246 247
	$(call quiet-command, \
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
	  "  GEN   $@")
248

249
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
250 251 252 253
	$(call quiet-command, \
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
	  "  GEN   $@")
B
bellard 已提交
254

B
bellard 已提交
255
qemu-nbd.8: qemu-nbd.texi
256 257 258 259
	$(call quiet-command, \
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
	  "  GEN   $@")
B
bellard 已提交
260

261 262 263 264 265 266
info: qemu-doc.info qemu-tech.info

dvi: qemu-doc.dvi qemu-tech.dvi

html: qemu-doc.html qemu-tech.html

267
qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi
268

269 270
VERSION ?= $(shell cat VERSION)
FILE = qemu-$(VERSION)
B
bellard 已提交
271

272
# tar release (use 'make -k tar' on a checkouted tree)
B
bellard 已提交
273 274
tar:
	rm -rf /tmp/$(FILE)
275
	cp -r . /tmp/$(FILE)
276
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
B
bellard 已提交
277 278
	rm -rf /tmp/$(FILE)

B
bellard 已提交
279
# generate a binary distribution
280
tarbin:
281
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
B
bellard 已提交
282 283
	$(bindir)/qemu \
	$(bindir)/qemu-system-x86_64 \
284 285 286
	$(bindir)/qemu-system-arm \
	$(bindir)/qemu-system-cris \
	$(bindir)/qemu-system-m68k \
287
	$(bindir)/qemu-system-microblaze \
B
bellard 已提交
288
	$(bindir)/qemu-system-mips \
289
	$(bindir)/qemu-system-mipsel \
T
ths 已提交
290 291
	$(bindir)/qemu-system-mips64 \
	$(bindir)/qemu-system-mips64el \
292 293 294
	$(bindir)/qemu-system-ppc \
	$(bindir)/qemu-system-ppcemb \
	$(bindir)/qemu-system-ppc64 \
T
ths 已提交
295
	$(bindir)/qemu-system-sh4 \
296
	$(bindir)/qemu-system-sh4eb \
297
	$(bindir)/qemu-system-sparc \
B
bellard 已提交
298
	$(bindir)/qemu-i386 \
B
bellard 已提交
299
	$(bindir)/qemu-x86_64 \
300 301 302 303 304
	$(bindir)/qemu-alpha \
	$(bindir)/qemu-arm \
	$(bindir)/qemu-armeb \
	$(bindir)/qemu-cris \
	$(bindir)/qemu-m68k \
305
	$(bindir)/qemu-microblaze \
306 307 308 309 310 311 312 313 314 315 316 317
	$(bindir)/qemu-mips \
	$(bindir)/qemu-mipsel \
	$(bindir)/qemu-ppc \
	$(bindir)/qemu-ppc64 \
	$(bindir)/qemu-ppc64abi32 \
	$(bindir)/qemu-sh4 \
	$(bindir)/qemu-sh4eb \
	$(bindir)/qemu-sparc \
	$(bindir)/qemu-sparc64 \
	$(bindir)/qemu-sparc32plus \
	$(bindir)/qemu-img \
	$(bindir)/qemu-nbd \
B
bellard 已提交
318 319
	$(datadir)/bios.bin \
	$(datadir)/vgabios.bin \
B
bellard 已提交
320
	$(datadir)/vgabios-cirrus.bin \
B
bellard 已提交
321
	$(datadir)/ppc_rom.bin \
B
bellard 已提交
322
	$(datadir)/video.x \
323
	$(datadir)/openbios-sparc32 \
324
	$(datadir)/openbios-sparc64 \
A
aurel32 已提交
325
	$(datadir)/openbios-ppc \
326
	$(datadir)/pxe-ne2k_pci.bin \
B
update  
bellard 已提交
327
	$(datadir)/pxe-rtl8139.bin \
328
	$(datadir)/pxe-pcnet.bin \
329
	$(datadir)/pxe-e1000.bin \
B
bellard 已提交
330 331
	$(docdir)/qemu-doc.html \
	$(docdir)/qemu-tech.html \
332 333
	$(mandir)/man1/qemu.1 \
	$(mandir)/man1/qemu-img.1 \
B
bellard 已提交
334
	$(mandir)/man8/qemu-nbd.8
335

B
bellard 已提交
336
# Include automatically generated dependency files
337
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d)