Makefile 10.3 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
config-host.mak: $(SRC_PATH)/configure
11 12
	@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 \
25
	pdf 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
32
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
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
%/config-devices.mak: default-configs/%.mak
	$(call quiet-command,cat $< > $@.tmp, "  GEN   $@")
45 46 47 48 49 50 51 52 53 54 55 56 57
	@if test -f $@; then \
	  if cmp -s $@.old $@ || cmp -s $@ $@.tmp; then \
	    mv $@.tmp $@; \
	    cp -p $@ $@.old; \
	  else \
	    if test -f $@.old; then \
	      echo "WARNING: $@ (user modified) out of date.";\
	    else \
	      echo "WARNING: $@ out of date.";\
	    fi; \
	    echo "Run \"make defconfig\" to regenerate."; \
	    rm $@.tmp; \
	  fi; \
58
	 else \
59 60
	  mv $@.tmp $@; \
	  cp -p $@ $@.old; \
61 62 63 64 65
	 fi

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

66
-include config-all-devices.mak
67

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

70 71 72
config-host.h: config-host.h-timestamp
config-host.h-timestamp: config-host.mak

73 74
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))

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

78
ifneq ($(wildcard config-host.mak),)
79
include $(SRC_PATH)/Makefile.objs
80
endif
81 82

$(common-obj-y): $(GENERATED_HEADERS)
B
Blue Swirl 已提交
83
$(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y) subdir-libdis
P
Paul Brook 已提交
84

B
Blue Swirl 已提交
85
$(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) subdir-libdis-user subdir-libuser
86

P
Paul Brook 已提交
87 88 89 90 91 92 93
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 已提交
94

95
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
96

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

99
ui/cocoa.o: ui/cocoa.m
B
bellard 已提交
100

101
ui/sdl.o audio/sdlaudio.o ui/sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
102

103
ui/vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
B
balrog 已提交
104

J
Juan Quintela 已提交
105
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
B
bellard 已提交
106 107 108

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

J
Juan Quintela 已提交
109 110
qemu-img.o: qemu-img-cmds.h
qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o: $(GENERATED_HEADERS)
111

112
qemu-img$(EXESUF): qemu-img.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y)
113

114
qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y)
115

116
qemu-io$(EXESUF): qemu-io.o cmd.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y)
117

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

121 122
check-qint.o check-qstring.o check-qdict.o check-qlist.o check-qfloat.o check-qjson.o: $(GENERATED_HEADERS)

L
Luiz Capitulino 已提交
123
check-qint: check-qint.o qint.o qemu-malloc.o
L
Luiz Capitulino 已提交
124
check-qstring: check-qstring.o qstring.o qemu-malloc.o
125
check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
L
Luiz Capitulino 已提交
126
check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
A
Anthony Liguori 已提交
127
check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
A
Anthony Liguori 已提交
128
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 已提交
129

130
clean:
131
# avoid old build problems by removing potentially incorrect old files
132
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
133
	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
134
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d fsdev/*.o fsdev/*.d ui/*.o ui/*.d
B
Blue Swirl 已提交
135
	rm -f qemu-img-cmds.h
B
bellard 已提交
136
	$(MAKE) -C tests clean
B
Blue Swirl 已提交
137
	for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser libdis libdis-user; do \
M
Magnus Damm 已提交
138
	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
B
bellard 已提交
139
        done
140

B
bellard 已提交
141
distclean: clean
M
Magnus Damm 已提交
142
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
143
	rm -f qemu-options.def
144
	rm -f config-all-devices.mak
M
Magnus Damm 已提交
145
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
146 147
	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.dvi qemu-doc.fn qemu-doc.info qemu-doc.ky qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp qemu-doc.vr
	rm -f qemu-tech.info qemu-tech.aux qemu-tech.cp qemu-tech.dvi qemu-tech.fn qemu-tech.info qemu-tech.ky qemu-tech.log qemu-tech.pdf qemu-tech.pg qemu-tech.toc qemu-tech.tp qemu-tech.vr
B
Blue Swirl 已提交
148
	for d in $(TARGET_DIRS) libhw32 libhw64 libuser libdis libdis-user; do \
B
bellard 已提交
149
	rm -rf $$d || exit 1 ; \
B
updated  
bellard 已提交
150
        done
B
bellard 已提交
151

B
bellard 已提交
152 153 154 155
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 已提交
156 157
ifdef INSTALL_BLOBS
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
A
aurel32 已提交
158
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
159 160 161
gpxe-eepro100-80861209.rom \
gpxe-eepro100-80861229.rom \
pxe-e1000.bin \
162 163
pxe-ne2k_pci.bin pxe-pcnet.bin \
pxe-rtl8139.bin pxe-virtio.bin \
A
Alexander Graf 已提交
164
bamboo.dtb petalogix-s3adsp1800.dtb \
A
Alexander Graf 已提交
165 166
multiboot.bin linuxboot.bin \
s390-zipl.rom
T
ths 已提交
167 168 169 170
else
BLOBS=
endif

171
install-doc: $(DOCS)
172 173
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
174
ifdef CONFIG_POSIX
175 176 177 178
	$(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"
179 180
endif

181
install-sysconfig:
182 183
	$(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
	$(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
184 185

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

B
bellard 已提交
204
# various test targets
B
bellard 已提交
205
test speed: all
B
bellard 已提交
206
	$(MAKE) -C tests $@
207

A
Alexandre Bique 已提交
208
.PHONY: TAGS
209
TAGS:
A
Alexandre Bique 已提交
210
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
211

B
bellard 已提交
212 213
cscope:
	rm -f ./cscope.*
214
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
B
bellard 已提交
215 216
	cscope -b

B
bellard 已提交
217
# documentation
218 219
MAKEINFO=makeinfo
MAKEINFOFLAGS=--no-headers --no-split --number-sections
220 221 222 223
TEXIFLAG=$(if $(V),,--quiet)
%.dvi: %.texi
	$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"  GEN   $@")

B
bellard 已提交
224
%.html: %.texi
225 226
	$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
	"  GEN   $@")
B
bellard 已提交
227

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

231 232
%.pdf: %.texi
	$(call quiet-command,texi2pdf $(TEXIFLAG) -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
QMP/qmp-commands.txt: $(SRC_PATH)/qemu-monitor.hx
	$(call quiet-command,sh $(SRC_PATH)/hxtool -q < $< > $@,"  GEN   $@")

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

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

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

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

264 265
dvi: qemu-doc.dvi qemu-tech.dvi
html: qemu-doc.html qemu-tech.html
266 267
info: qemu-doc.info qemu-tech.info
pdf: qemu-doc.pdf qemu-tech.pdf
268

269 270 271
qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
	qemu-img.texi qemu-nbd.texi qemu-options.texi \
	qemu-monitor.texi qemu-img-cmds.texi
272

273 274
VERSION ?= $(shell cat VERSION)
FILE = qemu-$(VERSION)
B
bellard 已提交
275

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

S
Stuart Brady 已提交
283 284 285 286 287 288 289 290 291 292 293
SYSTEM_TARGETS=$(filter %-softmmu,$(TARGET_DIRS))
SYSTEM_PROGS=$(patsubst qemu-system-i386,qemu, \
             $(patsubst %-softmmu,qemu-system-%, \
             $(SYSTEM_TARGETS)))

USER_TARGETS=$(filter %-user,$(TARGET_DIRS))
USER_PROGS=$(patsubst %-bsd-user,qemu-%, \
           $(patsubst %-darwin-user,qemu-%, \
           $(patsubst %-linux-user,qemu-%, \
           $(USER_TARGETS))))

B
bellard 已提交
294
# generate a binary distribution
295
tarbin:
296
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
S
Stuart Brady 已提交
297 298
	$(patsubst %,$(bindir)/%, $(SYSTEM_PROGS)) \
	$(patsubst %,$(bindir)/%, $(USER_PROGS)) \
299 300
	$(bindir)/qemu-img \
	$(bindir)/qemu-nbd \
B
bellard 已提交
301 302
	$(datadir)/bios.bin \
	$(datadir)/vgabios.bin \
B
bellard 已提交
303
	$(datadir)/vgabios-cirrus.bin \
B
bellard 已提交
304
	$(datadir)/ppc_rom.bin \
B
bellard 已提交
305
	$(datadir)/video.x \
306
	$(datadir)/openbios-sparc32 \
307
	$(datadir)/openbios-sparc64 \
A
aurel32 已提交
308
	$(datadir)/openbios-ppc \
309
	$(datadir)/pxe-ne2k_pci.bin \
B
update  
bellard 已提交
310
	$(datadir)/pxe-rtl8139.bin \
311
	$(datadir)/pxe-pcnet.bin \
312
	$(datadir)/pxe-e1000.bin \
B
bellard 已提交
313 314
	$(docdir)/qemu-doc.html \
	$(docdir)/qemu-tech.html \
315 316
	$(mandir)/man1/qemu.1 \
	$(mandir)/man1/qemu-img.1 \
B
bellard 已提交
317
	$(mandir)/man8/qemu-nbd.8
318

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