Statistics
| Branch: | Revision:

root / Makefile @ 012f0879

History | View | Annotate | Download (10 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: 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
	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
include $(SRC_PATH)/Makefile.objs
79

    
80
$(common-obj-y): $(GENERATED_HEADERS)
81
$(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y)
82

    
83
$(filter %-user,$(SUBDIR_RULES)): libuser.a
84

    
85
libuser.a: $(GENERATED_HEADERS)
86
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="libuser/" all,)
87

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

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

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

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

    
98
QEMU_CFLAGS+=$(CURL_CFLAGS)
99

    
100
cocoa.o: cocoa.m
101

    
102
keymaps.o: keymaps.c keymaps.h
103

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

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

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

    
110
acl.o: acl.h acl.c
111

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

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

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

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

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

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

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

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

    
128
######################################################################
129

    
130
qemu-img.o: qemu-img-cmds.h
131

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

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

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

    
139
qemu-nbd$(EXESUF): $(obj-y)
140

    
141
obj-y = qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y)
142
$(obj-y): $(GENERATED_HEADERS)
143

    
144
qemu-io$(EXESUF): $(obj-y)
145

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

    
149
check-qint: check-qint.o qint.o qemu-malloc.o
150
check-qstring: check-qstring.o qstring.o qemu-malloc.o
151
check-qdict: check-qdict.o qdict.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
152
check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
153
check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
154
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
155

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

    
167
distclean: clean
168
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
169
	rm -f config-all-devices.mak
170
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
171
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
172
	for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
173
	rm -rf $$d || exit 1 ; \
174
        done
175

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

    
180
ifdef INSTALL_BLOBS
181
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
182
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
183
pxe-e1000.bin pxe-i82559er.bin \
184
pxe-ne2k_pci.bin pxe-pcnet.bin \
185
pxe-rtl8139.bin pxe-virtio.bin \
186
bamboo.dtb petalogix-s3adsp1800.dtb \
187
multiboot.bin linuxboot.bin
188
else
189
BLOBS=
190
endif
191

    
192
install-doc: $(DOCS)
193
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
194
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
195
ifdef CONFIG_POSIX
196
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
197
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
198
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
199
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
200
endif
201

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

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

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

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

    
234
# documentation
235
%.html: %.texi
236
	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
237

    
238
%.info: %.texi
239
	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
240

    
241
%.dvi: %.texi
242
	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
243

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

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

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

    
253
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
254
	$(call quiet-command, \
255
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
256
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
257
	  "  GEN   $@")
258

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

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

    
271
info: qemu-doc.info qemu-tech.info
272

    
273
dvi: qemu-doc.dvi qemu-tech.dvi
274

    
275
html: qemu-doc.html qemu-tech.html
276

    
277
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
278

    
279
VERSION ?= $(shell cat VERSION)
280
FILE = qemu-$(VERSION)
281

    
282
# tar release (use 'make -k tar' on a checkouted tree)
283
tar:
284
	rm -rf /tmp/$(FILE)
285
	cp -r . /tmp/$(FILE)
286
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
287
	rm -rf /tmp/$(FILE)
288

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

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