Statistics
| Branch: | Revision:

root / Makefile @ 990caaf1

History | View | Annotate | Download (10.4 kB)

1
# Makefile for QEMU.
2

    
3
GENERATED_HEADERS = config-host.h
4

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

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

    
24
.PHONY: all clean cscope distclean dvi html info install install-doc \
25
	pdf recurse-all speed tar tarbin test build-all
26

    
27
$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
28

    
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
33
else
34
DOCS=
35
endif
36

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

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

    
43
%/config-devices.mak: default-configs/%.mak
44
	$(call quiet-command,cat $< > $@.tmp, "  GEN   $@")
45
	@if test -f $@; then \
46
	  if cmp -s $@.old $@ || cmp -s $@ $@.tmp; then \
47
	    mv $@.tmp $@; \
48
	    cp -p $@ $@.old; \
49
	  else \
50
	    if test -f $@.old; then \
51
	      echo "WARNING: $@ (user modified) out of date.";\
52
	    else \
53
	      echo "WARNING: $@ out of date.";\
54
	    fi; \
55
	    echo "Run \"make defconfig\" to regenerate."; \
56
	    rm $@.tmp; \
57
	  fi; \
58
	 else \
59
	  mv $@.tmp $@; \
60
	  cp -p $@ $@.old; \
61
	 fi
62

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

    
66
-include config-all-devices.mak
67

    
68
build-all: $(DOCS) $(TOOLS) recurse-all
69

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

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

    
75
subdir-%: $(GENERATED_HEADERS)
76
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
77

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

    
82
$(common-obj-y): $(GENERATED_HEADERS)
83
$(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y)
84

    
85
$(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) subdir-libuser
86

    
87
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
88
romsubdir-%:
89
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
90

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

    
93
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
94

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

    
97
QEMU_CFLAGS+=$(CURL_CFLAGS)
98

    
99
cocoa.o: cocoa.m
100

    
101
keymaps.o: keymaps.c keymaps.h
102

    
103
sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
104

    
105
sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
106

    
107
sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
108

    
109
acl.o: acl.h acl.c
110

    
111
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
112

    
113
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
114

    
115
vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
116

    
117
vnc-tls.o: vnc-tls.c vnc.h
118

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

    
121
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
122

    
123
curses.o: curses.c keymaps.h curses_keys.h
124

    
125
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
126

    
127
######################################################################
128

    
129
qemu-img.o: qemu-img-cmds.h
130
qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o: $(GENERATED_HEADERS)
131

    
132
qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
133

    
134
qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
135

    
136
qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y)
137

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

    
141
check-qint: check-qint.o qint.o qemu-malloc.o
142
check-qstring: check-qstring.o qstring.o qemu-malloc.o
143
check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
144
check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
145
check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
146
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
147

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

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

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

    
172
ifdef INSTALL_BLOBS
173
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
174
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
175
gpxe-eepro100-80861209.rom \
176
gpxe-eepro100-80861229.rom \
177
pxe-e1000.bin \
178
pxe-ne2k_pci.bin pxe-pcnet.bin \
179
pxe-rtl8139.bin pxe-virtio.bin \
180
bamboo.dtb petalogix-s3adsp1800.dtb \
181
multiboot.bin linuxboot.bin
182
else
183
BLOBS=
184
endif
185

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

    
196
install-sysconfig:
197
	$(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
198
	$(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
199

    
200
install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig
201
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
202
ifneq ($(TOOLS),)
203
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
204
endif
205
ifneq ($(BLOBS),)
206
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
207
	set -e; for x in $(BLOBS); do \
208
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
209
	done
210
endif
211
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
212
	set -e; for x in $(KEYMAPS); do \
213
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
214
	done
215
	for d in $(TARGET_DIRS); do \
216
	$(MAKE) -C $$d $@ || exit 1 ; \
217
        done
218

    
219
# various test targets
220
test speed: all
221
	$(MAKE) -C tests $@
222

    
223
.PHONY: TAGS
224
TAGS:
225
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
226

    
227
cscope:
228
	rm -f ./cscope.*
229
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
230
	cscope -b
231

    
232
# documentation
233
MAKEINFO=makeinfo
234
MAKEINFOFLAGS=--no-headers --no-split --number-sections
235
TEXIFLAG=$(if $(V),,--quiet)
236
%.dvi: %.texi
237
	$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"  GEN   $@")
238

    
239
%.html: %.texi
240
	$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
241
	"  GEN   $@")
242

    
243
%.info: %.texi
244
	$(call quiet-command,$(MAKEINFO) $< -o $@,"  GEN   $@")
245

    
246
%.pdf: %.texi
247
	$(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"  GEN   $@")
248

    
249
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
250
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
251

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

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

    
258
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
259
	$(call quiet-command, \
260
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
261
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
262
	  "  GEN   $@")
263

    
264
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
265
	$(call quiet-command, \
266
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
267
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
268
	  "  GEN   $@")
269

    
270
qemu-nbd.8: qemu-nbd.texi
271
	$(call quiet-command, \
272
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
273
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
274
	  "  GEN   $@")
275

    
276
dvi: qemu-doc.dvi qemu-tech.dvi
277
html: qemu-doc.html qemu-tech.html
278
info: qemu-doc.info qemu-tech.info
279
pdf: qemu-doc.pdf qemu-tech.pdf
280

    
281
qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
282
	qemu-img.texi qemu-nbd.texi qemu-options.texi \
283
	qemu-monitor.texi qemu-img-cmds.texi
284

    
285
VERSION ?= $(shell cat VERSION)
286
FILE = qemu-$(VERSION)
287

    
288
# tar release (use 'make -k tar' on a checkouted tree)
289
tar:
290
	rm -rf /tmp/$(FILE)
291
	cp -r . /tmp/$(FILE)
292
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
293
	rm -rf /tmp/$(FILE)
294

    
295
# generate a binary distribution
296
tarbin:
297
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
298
	$(bindir)/qemu \
299
	$(bindir)/qemu-system-x86_64 \
300
	$(bindir)/qemu-system-arm \
301
	$(bindir)/qemu-system-cris \
302
	$(bindir)/qemu-system-m68k \
303
	$(bindir)/qemu-system-microblaze \
304
	$(bindir)/qemu-system-mips \
305
	$(bindir)/qemu-system-mipsel \
306
	$(bindir)/qemu-system-mips64 \
307
	$(bindir)/qemu-system-mips64el \
308
	$(bindir)/qemu-system-ppc \
309
	$(bindir)/qemu-system-ppcemb \
310
	$(bindir)/qemu-system-ppc64 \
311
	$(bindir)/qemu-system-sh4 \
312
	$(bindir)/qemu-system-sh4eb \
313
	$(bindir)/qemu-system-sparc \
314
	$(bindir)/qemu-i386 \
315
	$(bindir)/qemu-x86_64 \
316
	$(bindir)/qemu-alpha \
317
	$(bindir)/qemu-arm \
318
	$(bindir)/qemu-armeb \
319
	$(bindir)/qemu-cris \
320
	$(bindir)/qemu-m68k \
321
	$(bindir)/qemu-microblaze \
322
	$(bindir)/qemu-mips \
323
	$(bindir)/qemu-mipsel \
324
	$(bindir)/qemu-ppc \
325
	$(bindir)/qemu-ppc64 \
326
	$(bindir)/qemu-ppc64abi32 \
327
	$(bindir)/qemu-sh4 \
328
	$(bindir)/qemu-sh4eb \
329
	$(bindir)/qemu-sparc \
330
	$(bindir)/qemu-sparc64 \
331
	$(bindir)/qemu-sparc32plus \
332
	$(bindir)/qemu-img \
333
	$(bindir)/qemu-nbd \
334
	$(datadir)/bios.bin \
335
	$(datadir)/vgabios.bin \
336
	$(datadir)/vgabios-cirrus.bin \
337
	$(datadir)/ppc_rom.bin \
338
	$(datadir)/video.x \
339
	$(datadir)/openbios-sparc32 \
340
	$(datadir)/openbios-sparc64 \
341
	$(datadir)/openbios-ppc \
342
	$(datadir)/pxe-ne2k_pci.bin \
343
	$(datadir)/pxe-rtl8139.bin \
344
	$(datadir)/pxe-pcnet.bin \
345
	$(datadir)/pxe-e1000.bin \
346
	$(docdir)/qemu-doc.html \
347
	$(docdir)/qemu-tech.html \
348
	$(mandir)/man1/qemu.1 \
349
	$(mandir)/man1/qemu-img.1 \
350
	$(mandir)/man8/qemu-nbd.8
351

    
352
# Include automatically generated dependency files
353
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d)