Statistics
| Branch: | Revision:

root / Makefile @ add16157

History | View | Annotate | Download (11.4 kB)

1 0cb3fb1e pbrook
# Makefile for QEMU.
2 0cb3fb1e pbrook
3 55d7e8f6 aurel32
ifneq ($(wildcard config-host.mak),)
4 1ad2134f Paul Brook
# Put the all: rule here so that config-host.mak can contain dependencies.
5 1ad2134f Paul Brook
all: build-all
6 ad064840 pbrook
include config-host.mak
7 17759187 aliguori
include $(SRC_PATH)/rules.mak
8 55d7e8f6 aurel32
else
9 55d7e8f6 aurel32
config-host.mak:
10 55d7e8f6 aurel32
	@echo "Please call configure before running make!"
11 55d7e8f6 aurel32
	@exit 1
12 55d7e8f6 aurel32
endif
13 766a487a bellard
14 818220f5 aliguori
.PHONY: all clean cscope distclean dvi html info install install-doc \
15 818220f5 aliguori
	recurse-all speed tar tarbin test
16 0cb3fb1e pbrook
17 8c462f8f pbrook
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
18 8c462f8f pbrook
19 3e2e0e6b Juan Quintela
LIBS+=-lz $(LIBS_TOOLS)
20 67c0f08d Juan Quintela
21 cc8ae6de pbrook
ifdef BUILD_DOCS
22 7a5ca864 bellard
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
23 cc8ae6de pbrook
else
24 cc8ae6de pbrook
DOCS=
25 cc8ae6de pbrook
endif
26 aa05ae6f bellard
27 c05ac895 Paul Brook
build-all: $(TOOLS) $(DOCS) recurse-all
28 b9dea4fb pbrook
29 55d7e8f6 aurel32
config-host.mak: configure
30 55d7e8f6 aurel32
ifneq ($(wildcard config-host.mak),)
31 55d7e8f6 aurel32
	@echo $@ is out-of-date, running configure
32 052ff921 blueswir1
	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
33 55d7e8f6 aurel32
endif
34 55d7e8f6 aurel32
35 0087375e Paul Brook
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
36 cec7d0b6 pbrook
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
37 cec7d0b6 pbrook
38 86e840ee aurel32
subdir-%:
39 0087375e Paul Brook
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
40 4aa42531 pbrook
41 cec7d0b6 pbrook
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
42 c05ac895 Paul Brook
43 add16157 Blue Swirl
$(filter %-user,$(SUBDIR_RULES)): libuser.a
44 add16157 Blue Swirl
45 add16157 Blue Swirl
libuser.a:
46 add16157 Blue Swirl
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="$*/" all,)
47 add16157 Blue Swirl
48 c05ac895 Paul Brook
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
49 c05ac895 Paul Brook
romsubdir-%:
50 c05ac895 Paul Brook
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
51 c05ac895 Paul Brook
52 c05ac895 Paul Brook
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
53 c05ac895 Paul Brook
54 c05ac895 Paul Brook
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
55 83f64091 bellard
56 faf07963 pbrook
#######################################################################
57 319f08ea Juan Quintela
# block-obj-y is code used by both qemu system emulation and qemu-img
58 faf07963 pbrook
59 319f08ea Juan Quintela
block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
60 a25a0ef5 Anthony Liguori
block-obj-y += nbd.o block.o aio.o aes.o osdep.o
61 4dd75c70 Christoph Hellwig
block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
62 5c6c3a6c Christoph Hellwig
block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
63 1a65ba76 Juan Quintela
64 9aebd98a Stefan Weil
block-nested-y += cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o
65 1a65ba76 Juan Quintela
block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o
66 1a65ba76 Juan Quintela
block-nested-y += parallels.o nbd.o
67 eeb6d45b Juan Quintela
block-nested-$(CONFIG_WIN32) += raw-win32.o
68 eeb6d45b Juan Quintela
block-nested-$(CONFIG_POSIX) += raw-posix.o
69 1a65ba76 Juan Quintela
block-nested-$(CONFIG_CURL) += curl.o
70 1a65ba76 Juan Quintela
71 1a65ba76 Juan Quintela
block-obj-y +=  $(addprefix block/, $(block-nested-y))
72 769ce76d Alexander Graf
73 4fb240a4 bellard
######################################################################
74 2e2ea909 bellard
# libqemu_common.a: Target independent part of system emulation. The
75 4fb240a4 bellard
# long term path is to suppress *all* target specific code in case of
76 4fb240a4 bellard
# system emulation, i.e. a single QEMU executable should support all
77 4fb240a4 bellard
# CPUs and machines.
78 47cea614 bellard
79 6ef859b3 Juan Quintela
obj-y = $(block-obj-y)
80 34005a00 Kirill A. Shutemov
obj-y += readline.o console.o
81 6ef859b3 Juan Quintela
82 c2b023b6 Blue Swirl
obj-y += tcg-runtime.o host-utils.o
83 afcea8cb Blue Swirl
obj-y += irq.o ptimer.o ioport.o
84 6ef859b3 Juan Quintela
obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
85 6ef859b3 Juan Quintela
obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
86 6ef859b3 Juan Quintela
obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o
87 6ef859b3 Juan Quintela
obj-y += scsi-disk.o cdrom.o
88 d52affa7 Gerd Hoffmann
obj-y += scsi-generic.o scsi-bus.o
89 6ef859b3 Juan Quintela
obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
90 806b6024 Gerd Hoffmann
obj-y += usb-serial.o usb-net.o usb-bus.o
91 6ef859b3 Juan Quintela
obj-y += sd.o ssi-sd.o
92 6ef859b3 Juan Quintela
obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
93 6ef859b3 Juan Quintela
obj-y += bt-hci-csr.o
94 6ef859b3 Juan Quintela
obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
95 3b47612b Juan Quintela
obj-y += qemu-char.o aio.o net-checksum.o savevm.o
96 6ef859b3 Juan Quintela
obj-y += msmouse.o ps2.o
97 ee6847d1 Gerd Hoffmann
obj-y += qdev.o qdev-properties.o ssi.o
98 a333cd71 Blue Swirl
obj-y += qint.o qstring.o qdict.o qemu-config.o
99 87ecb68b pbrook
100 0e22fd2f Juan Quintela
obj-$(CONFIG_BRLAPI) += baum.o
101 eeb6d45b Juan Quintela
obj-$(CONFIG_WIN32) += tap-win32.o
102 5ac1fad3 Paolo Bonzini
obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
103 4fb240a4 bellard
104 98b068a9 Juan Quintela
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
105 0e22fd2f Juan Quintela
106 0e22fd2f Juan Quintela
audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
107 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_SDL) += sdlaudio.o
108 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_OSS) += ossaudio.o
109 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
110 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_ALSA) += alsaaudio.o
111 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
112 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_FMOD) += fmodaudio.o
113 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_ESD) += esdaudio.o
114 0e22fd2f Juan Quintela
audio-obj-$(CONFIG_PA) += paaudio.o
115 67f86e8e Juan Quintela
audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
116 eda959bd Juan Quintela
audio-obj-y += wavcapture.o
117 6ef859b3 Juan Quintela
obj-y += $(addprefix audio/, $(audio-obj-y))
118 4fb240a4 bellard
119 6ef859b3 Juan Quintela
obj-y += keymaps.o
120 0e22fd2f Juan Quintela
obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
121 0e22fd2f Juan Quintela
obj-$(CONFIG_CURSES) += curses.o
122 6ef859b3 Juan Quintela
obj-y += vnc.o acl.o d3des.o
123 0e22fd2f Juan Quintela
obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
124 0e22fd2f Juan Quintela
obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
125 0e22fd2f Juan Quintela
obj-$(CONFIG_COCOA) += cocoa.o
126 0e22fd2f Juan Quintela
obj-$(CONFIG_IOTHREAD) += qemu-thread.o
127 e5d355d1 aliguori
128 f835ed1c Juan Quintela
slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
129 f835ed1c Juan Quintela
slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
130 f835ed1c Juan Quintela
slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
131 0e22fd2f Juan Quintela
obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
132 4fb240a4 bellard
133 2567f579 Blue Swirl
# xen backend driver support
134 0e22fd2f Juan Quintela
obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
135 0e22fd2f Juan Quintela
obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
136 2567f579 Blue Swirl
137 a558ee17 Juan Quintela
QEMU_CFLAGS+=$(CURL_CFLAGS)
138 769ce76d Alexander Graf
139 4fb240a4 bellard
cocoa.o: cocoa.m
140 4fb240a4 bellard
141 0483755a aliguori
keymaps.o: keymaps.c keymaps.h
142 0483755a aliguori
143 c18a2c36 Stefano Stabellini
sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
144 c18a2c36 Stefano Stabellini
145 c18a2c36 Stefano Stabellini
sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
146 807544e2 aliguori
147 a558ee17 Juan Quintela
sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
148 4fb240a4 bellard
149 76655d6d aliguori
acl.o: acl.h acl.c
150 76655d6d aliguori
151 2f9606b3 aliguori
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
152 5fb6c7a8 aliguori
153 76655d6d aliguori
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
154 4fb240a4 bellard
155 a558ee17 Juan Quintela
vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
156 4d3b6f6e balrog
157 5fb6c7a8 aliguori
vnc-tls.o: vnc-tls.c vnc.h
158 5fb6c7a8 aliguori
159 5fb6c7a8 aliguori
vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
160 5fb6c7a8 aliguori
161 2f9606b3 aliguori
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
162 2f9606b3 aliguori
163 0483755a aliguori
curses.o: curses.c keymaps.h curses_keys.h
164 fb599c9a balrog
165 a558ee17 Juan Quintela
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
166 4fb240a4 bellard
167 6ef859b3 Juan Quintela
libqemu_common.a: $(obj-y)
168 4fb240a4 bellard
169 4fb240a4 bellard
######################################################################
170 4fb240a4 bellard
171 153859be Stuart Brady
qemu-img.o: qemu-img-cmds.h
172 153859be Stuart Brady
173 a25a0ef5 Anthony Liguori
qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y)
174 4fb240a4 bellard
175 a25a0ef5 Anthony Liguori
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o $(block-obj-y)
176 3aa892d7 aliguori
177 a25a0ef5 Anthony Liguori
qemu-io$(EXESUF):  qemu-io.o qemu-tool.o cmd.o $(block-obj-y)
178 0a8e1acd aliguori
179 153859be Stuart Brady
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
180 153859be Stuart Brady
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $@")
181 153859be Stuart Brady
182 33837ba6 Luiz Capitulino
check-qint: check-qint.o qint.o qemu-malloc.o
183 5de65a07 Luiz Capitulino
check-qstring: check-qstring.o qstring.o qemu-malloc.o
184 7b8c51ad Luiz Capitulino
check-qdict: check-qdict.o qdict.o qint.o qstring.o qemu-malloc.o
185 33837ba6 Luiz Capitulino
186 31e31b8a bellard
clean:
187 2d80ae89 bellard
# avoid old build problems by removing potentially incorrect old files
188 5fafdf24 ths
	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
189 86e840ee aurel32
	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
190 019d6b8f Anthony Liguori
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d
191 07b44ce9 Blue Swirl
	rm -f qemu-img-cmds.h
192 7d3505c5 bellard
	$(MAKE) -C tests clean
193 add16157 Blue Swirl
	for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \
194 7d3505c5 bellard
	$(MAKE) -C $$d $@ || exit 1 ; \
195 626df76a bellard
        done
196 31e31b8a bellard
197 7d13299d bellard
distclean: clean
198 4bf6b55b Juan Quintela
	rm -f config-host.mak config-host.h config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi
199 0cb3fb1e pbrook
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
200 add16157 Blue Swirl
	for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
201 bc1b050d bellard
	rm -rf $$d || exit 1 ; \
202 76bc6838 bellard
        done
203 7d13299d bellard
204 fed4a9ad bellard
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
205 fed4a9ad bellard
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
206 fed4a9ad bellard
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
207 fed4a9ad bellard
208 77755340 ths
ifdef INSTALL_BLOBS
209 77755340 ths
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
210 e5d01b06 aurel32
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
211 e5d01b06 aurel32
pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
212 253d0942 Alexander Graf
bamboo.dtb petalogix-s3adsp1800.dtb \
213 253d0942 Alexander Graf
multiboot.bin
214 77755340 ths
else
215 77755340 ths
BLOBS=
216 77755340 ths
endif
217 77755340 ths
218 38954dca pbrook
install-doc: $(DOCS)
219 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
220 58f8aead aliguori
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
221 96d409eb Juan Quintela
ifdef CONFIG_POSIX
222 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
223 58f8aead aliguori
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
224 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
225 58f8aead aliguori
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
226 38954dca pbrook
endif
227 38954dca pbrook
228 38954dca pbrook
install: all $(if $(BUILD_DOCS),install-doc)
229 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
230 932a79df ths
ifneq ($(TOOLS),)
231 58f8aead aliguori
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
232 932a79df ths
endif
233 77755340 ths
ifneq ($(BLOBS),)
234 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
235 77755340 ths
	set -e; for x in $(BLOBS); do \
236 58f8aead aliguori
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
237 ad064840 pbrook
	done
238 77755340 ths
endif
239 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
240 18be8d77 blueswir1
	set -e; for x in $(KEYMAPS); do \
241 79fd42aa Anthony Liguori
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
242 ad064840 pbrook
	done
243 626df76a bellard
	for d in $(TARGET_DIRS); do \
244 7d3505c5 bellard
	$(MAKE) -C $$d $@ || exit 1 ; \
245 626df76a bellard
        done
246 612384d7 bellard
247 367e86e8 bellard
# various test targets
248 9b0b8203 bellard
test speed: all
249 7d3505c5 bellard
	$(MAKE) -C tests $@
250 31e31b8a bellard
251 21d4e8e3 Alexandre Bique
.PHONY: TAGS
252 5fafdf24 ths
TAGS:
253 21d4e8e3 Alexandre Bique
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
254 31e31b8a bellard
255 6688bc6d bellard
cscope:
256 6688bc6d bellard
	rm -f ./cscope.*
257 ede46085 aurel32
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
258 6688bc6d bellard
	cscope -b
259 6688bc6d bellard
260 3ef693a0 bellard
# documentation
261 1f673135 bellard
%.html: %.texi
262 0d00e563 aliguori
	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
263 3ef693a0 bellard
264 f3548328 bellard
%.info: %.texi
265 0d00e563 aliguori
	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
266 f3548328 bellard
267 f3548328 bellard
%.dvi: %.texi
268 0d00e563 aliguori
	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
269 5824d651 blueswir1
270 5824d651 blueswir1
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
271 0d00e563 aliguori
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
272 f3548328 bellard
273 2313086a Blue Swirl
qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
274 2313086a Blue Swirl
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
275 2313086a Blue Swirl
276 153859be Stuart Brady
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
277 153859be Stuart Brady
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
278 153859be Stuart Brady
279 2313086a Blue Swirl
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
280 0d00e563 aliguori
	$(call quiet-command, \
281 0d00e563 aliguori
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
282 0d00e563 aliguori
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
283 0d00e563 aliguori
	  "  GEN   $@")
284 5a67135a bellard
285 153859be Stuart Brady
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
286 0d00e563 aliguori
	$(call quiet-command, \
287 0d00e563 aliguori
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
288 0d00e563 aliguori
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
289 0d00e563 aliguori
	  "  GEN   $@")
290 acd935ef bellard
291 7a5ca864 bellard
qemu-nbd.8: qemu-nbd.texi
292 0d00e563 aliguori
	$(call quiet-command, \
293 0d00e563 aliguori
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
294 0d00e563 aliguori
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
295 0d00e563 aliguori
	  "  GEN   $@")
296 7a5ca864 bellard
297 0cb3fb1e pbrook
info: qemu-doc.info qemu-tech.info
298 0cb3fb1e pbrook
299 0cb3fb1e pbrook
dvi: qemu-doc.dvi qemu-tech.dvi
300 0cb3fb1e pbrook
301 0cb3fb1e pbrook
html: qemu-doc.html qemu-tech.html
302 0cb3fb1e pbrook
303 153859be Stuart Brady
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
304 818220f5 aliguori
305 df5cf721 ths
VERSION ?= $(shell cat VERSION)
306 df5cf721 ths
FILE = qemu-$(VERSION)
307 586314f2 bellard
308 1e43adfc bellard
# tar release (use 'make -k tar' on a checkouted tree)
309 586314f2 bellard
tar:
310 586314f2 bellard
	rm -rf /tmp/$(FILE)
311 1e43adfc bellard
	cp -r . /tmp/$(FILE)
312 99c6c082 aurel32
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
313 586314f2 bellard
	rm -rf /tmp/$(FILE)
314 586314f2 bellard
315 76b62fd0 bellard
# generate a binary distribution
316 d691f669 bellard
tarbin:
317 18be8d77 blueswir1
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
318 43095f31 bellard
	$(bindir)/qemu \
319 43095f31 bellard
	$(bindir)/qemu-system-x86_64 \
320 40e8a53b aurel32
	$(bindir)/qemu-system-arm \
321 40e8a53b aurel32
	$(bindir)/qemu-system-cris \
322 40e8a53b aurel32
	$(bindir)/qemu-system-m68k \
323 93856aac bellard
	$(bindir)/qemu-system-mips \
324 38260998 pbrook
	$(bindir)/qemu-system-mipsel \
325 fbe4f65b ths
	$(bindir)/qemu-system-mips64 \
326 fbe4f65b ths
	$(bindir)/qemu-system-mips64el \
327 40e8a53b aurel32
	$(bindir)/qemu-system-ppc \
328 40e8a53b aurel32
	$(bindir)/qemu-system-ppcemb \
329 40e8a53b aurel32
	$(bindir)/qemu-system-ppc64 \
330 ff1aaf65 ths
	$(bindir)/qemu-system-sh4 \
331 85ffbdfc ths
	$(bindir)/qemu-system-sh4eb \
332 40e8a53b aurel32
	$(bindir)/qemu-system-sparc \
333 7efa4387 bellard
	$(bindir)/qemu-i386 \
334 f0403c03 bellard
	$(bindir)/qemu-x86_64 \
335 40e8a53b aurel32
	$(bindir)/qemu-alpha \
336 40e8a53b aurel32
	$(bindir)/qemu-arm \
337 40e8a53b aurel32
	$(bindir)/qemu-armeb \
338 40e8a53b aurel32
	$(bindir)/qemu-cris \
339 40e8a53b aurel32
	$(bindir)/qemu-m68k \
340 40e8a53b aurel32
	$(bindir)/qemu-mips \
341 40e8a53b aurel32
	$(bindir)/qemu-mipsel \
342 40e8a53b aurel32
	$(bindir)/qemu-ppc \
343 40e8a53b aurel32
	$(bindir)/qemu-ppc64 \
344 40e8a53b aurel32
	$(bindir)/qemu-ppc64abi32 \
345 40e8a53b aurel32
	$(bindir)/qemu-sh4 \
346 40e8a53b aurel32
	$(bindir)/qemu-sh4eb \
347 40e8a53b aurel32
	$(bindir)/qemu-sparc \
348 40e8a53b aurel32
	$(bindir)/qemu-sparc64 \
349 40e8a53b aurel32
	$(bindir)/qemu-sparc32plus \
350 40e8a53b aurel32
	$(bindir)/qemu-img \
351 40e8a53b aurel32
	$(bindir)/qemu-nbd \
352 7efa4387 bellard
	$(datadir)/bios.bin \
353 7efa4387 bellard
	$(datadir)/vgabios.bin \
354 de9258a8 bellard
	$(datadir)/vgabios-cirrus.bin \
355 637f6cd7 bellard
	$(datadir)/ppc_rom.bin \
356 d5295253 bellard
	$(datadir)/video.x \
357 0986ac3b bellard
	$(datadir)/openbios-sparc32 \
358 938255d2 blueswir1
	$(datadir)/openbios-sparc64 \
359 e5d01b06 aurel32
	$(datadir)/openbios-ppc \
360 40e8a53b aurel32
	$(datadir)/pxe-ne2k_pci.bin \
361 19c80e50 bellard
	$(datadir)/pxe-rtl8139.bin \
362 40e8a53b aurel32
	$(datadir)/pxe-pcnet.bin \
363 2991990b aliguori
	$(datadir)/pxe-e1000.bin \
364 1f50f8d1 bellard
	$(docdir)/qemu-doc.html \
365 1f50f8d1 bellard
	$(docdir)/qemu-tech.html \
366 40e8a53b aurel32
	$(mandir)/man1/qemu.1 \
367 40e8a53b aurel32
	$(mandir)/man1/qemu-img.1 \
368 7a5ca864 bellard
	$(mandir)/man8/qemu-nbd.8
369 d691f669 bellard
370 4fb240a4 bellard
# Include automatically generated dependency files
371 019d6b8f Anthony Liguori
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d)