Statistics
| Branch: | Revision:

root / Makefile @ e1a068b2

History | View | Annotate | Download (10.9 kB)

1 0cb3fb1e pbrook
# Makefile for QEMU.
2 0cb3fb1e pbrook
3 a992fe3d Paul Brook
GENERATED_HEADERS = config-host.h
4 f527c579 Juan Quintela
5 55d7e8f6 aurel32
ifneq ($(wildcard config-host.mak),)
6 1ad2134f Paul Brook
# Put the all: rule here so that config-host.mak can contain dependencies.
7 1ad2134f Paul Brook
all: build-all
8 ad064840 pbrook
include config-host.mak
9 17759187 aliguori
include $(SRC_PATH)/rules.mak
10 59bc10ee Paolo Bonzini
config-host.mak: $(SRC_PATH)/configure
11 e5efe7f5 Juan Quintela
	@echo $@ is out-of-date, running configure
12 e5efe7f5 Juan Quintela
	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
13 55d7e8f6 aurel32
else
14 55d7e8f6 aurel32
config-host.mak:
15 55d7e8f6 aurel32
	@echo "Please call configure before running make!"
16 55d7e8f6 aurel32
	@exit 1
17 55d7e8f6 aurel32
endif
18 766a487a bellard
19 d9ace8b3 Juan Quintela
# Don't try to regenerate Makefile or configure
20 d9ace8b3 Juan Quintela
# We don't generate any of them
21 d9ace8b3 Juan Quintela
Makefile: ;
22 d9ace8b3 Juan Quintela
configure: ;
23 d9ace8b3 Juan Quintela
24 818220f5 aliguori
.PHONY: all clean cscope distclean dvi html info install install-doc \
25 20cc9997 Stefan Weil
	pdf recurse-all speed tar tarbin test build-all
26 0cb3fb1e pbrook
27 076d2471 Paolo Bonzini
$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
28 8c462f8f pbrook
29 3e2e0e6b Juan Quintela
LIBS+=-lz $(LIBS_TOOLS)
30 67c0f08d Juan Quintela
31 cc8ae6de pbrook
ifdef BUILD_DOCS
32 b40292e7 Jan Kiszka
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
33 cc8ae6de pbrook
else
34 cc8ae6de pbrook
DOCS=
35 cc8ae6de pbrook
endif
36 aa05ae6f bellard
37 1215c6e7 Juan Quintela
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
38 1f3d3c8f Juan Quintela
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
39 1f3d3c8f Juan Quintela
40 1f3d3c8f Juan Quintela
config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
41 01d86a85 Stefan Weil
	$(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@,"  GEN   $@")
42 1f3d3c8f Juan Quintela
43 a992fe3d Paul Brook
%/config-devices.mak: default-configs/%.mak
44 a992fe3d Paul Brook
	$(call quiet-command,cat $< > $@.tmp, "  GEN   $@")
45 012f0879 Stefan Weil
	@if test -f $@; then \
46 012f0879 Stefan Weil
	  if cmp -s $@.old $@ || cmp -s $@ $@.tmp; then \
47 012f0879 Stefan Weil
	    mv $@.tmp $@; \
48 012f0879 Stefan Weil
	    cp -p $@ $@.old; \
49 012f0879 Stefan Weil
	  else \
50 012f0879 Stefan Weil
	    if test -f $@.old; then \
51 012f0879 Stefan Weil
	      echo "WARNING: $@ (user modified) out of date.";\
52 012f0879 Stefan Weil
	    else \
53 012f0879 Stefan Weil
	      echo "WARNING: $@ out of date.";\
54 012f0879 Stefan Weil
	    fi; \
55 012f0879 Stefan Weil
	    echo "Run \"make defconfig\" to regenerate."; \
56 012f0879 Stefan Weil
	    rm $@.tmp; \
57 012f0879 Stefan Weil
	  fi; \
58 a992fe3d Paul Brook
	 else \
59 012f0879 Stefan Weil
	  mv $@.tmp $@; \
60 012f0879 Stefan Weil
	  cp -p $@ $@.old; \
61 a992fe3d Paul Brook
	 fi
62 a992fe3d Paul Brook
63 a992fe3d Paul Brook
defconfig:
64 a992fe3d Paul Brook
	rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
65 a992fe3d Paul Brook
66 1f3d3c8f Juan Quintela
-include config-all-devices.mak
67 1215c6e7 Juan Quintela
68 f527c579 Juan Quintela
build-all: $(DOCS) $(TOOLS) recurse-all
69 b9dea4fb pbrook
70 1215c6e7 Juan Quintela
config-host.h: config-host.h-timestamp
71 1215c6e7 Juan Quintela
config-host.h-timestamp: config-host.mak
72 1215c6e7 Juan Quintela
73 cec7d0b6 pbrook
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
74 cec7d0b6 pbrook
75 f527c579 Juan Quintela
subdir-%: $(GENERATED_HEADERS)
76 0087375e Paul Brook
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
77 4aa42531 pbrook
78 b88bc808 Stefan Weil
ifneq ($(wildcard config-host.mak),)
79 0e8c9214 Andreas Färber
include $(SRC_PATH)/Makefile.objs
80 b88bc808 Stefan Weil
endif
81 0e8c9214 Andreas Färber
82 0e8c9214 Andreas Färber
$(common-obj-y): $(GENERATED_HEADERS)
83 4d904533 Blue Swirl
$(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y) subdir-libdis
84 c05ac895 Paul Brook
85 4d904533 Blue Swirl
$(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) subdir-libdis-user subdir-libuser
86 add16157 Blue Swirl
87 c05ac895 Paul Brook
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
88 c05ac895 Paul Brook
romsubdir-%:
89 c05ac895 Paul Brook
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
90 c05ac895 Paul Brook
91 c05ac895 Paul Brook
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
92 c05ac895 Paul Brook
93 c05ac895 Paul Brook
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
94 83f64091 bellard
95 98b068a9 Juan Quintela
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
96 0e22fd2f Juan Quintela
97 a558ee17 Juan Quintela
QEMU_CFLAGS+=$(CURL_CFLAGS)
98 769ce76d Alexander Graf
99 4fb240a4 bellard
cocoa.o: cocoa.m
100 4fb240a4 bellard
101 0483755a aliguori
keymaps.o: keymaps.c keymaps.h
102 0483755a aliguori
103 c18a2c36 Stefano Stabellini
sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
104 c18a2c36 Stefano Stabellini
105 c18a2c36 Stefano Stabellini
sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
106 807544e2 aliguori
107 a558ee17 Juan Quintela
sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
108 4fb240a4 bellard
109 76655d6d aliguori
acl.o: acl.h acl.c
110 76655d6d aliguori
111 2f9606b3 aliguori
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
112 5fb6c7a8 aliguori
113 76655d6d aliguori
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
114 4fb240a4 bellard
115 a558ee17 Juan Quintela
vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
116 4d3b6f6e balrog
117 5fb6c7a8 aliguori
vnc-tls.o: vnc-tls.c vnc.h
118 5fb6c7a8 aliguori
119 5fb6c7a8 aliguori
vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
120 5fb6c7a8 aliguori
121 2f9606b3 aliguori
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
122 2f9606b3 aliguori
123 d9b73e47 Corentin Chary
vnc-encoding-zlib.o: vnc-encoding-zlib.c vnc.h
124 70a4568f Corentin Chary
125 d9b73e47 Corentin Chary
vnc-encoding-hextile.o: vnc-encoding-hextile.c vnc.h
126 70a4568f Corentin Chary
127 d9b73e47 Corentin Chary
vnc-encoding-tight.o: vnc-encoding-tight.c vnc.h vnc-encoding-tight.h
128 380282b0 Corentin Chary
129 0483755a aliguori
curses.o: curses.c keymaps.h curses_keys.h
130 fb599c9a balrog
131 a558ee17 Juan Quintela
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
132 4fb240a4 bellard
133 e4d5639d Amit Shah
iov.o: iov.c iov.h
134 e4d5639d Amit Shah
135 4fb240a4 bellard
######################################################################
136 4fb240a4 bellard
137 3c089e15 Juan Quintela
qemu-img.o: qemu-img-cmds.h
138 3c089e15 Juan Quintela
qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o: $(GENERATED_HEADERS)
139 153859be Stuart Brady
140 526f0ac1 Markus Armbruster
qemu-img$(EXESUF): qemu-img.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y)
141 0e8c9214 Andreas Färber
142 526f0ac1 Markus Armbruster
qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y)
143 0e8c9214 Andreas Färber
144 526f0ac1 Markus Armbruster
qemu-io$(EXESUF): qemu-io.o cmd.o qemu-tool.o qemu-error.o $(block-obj-y) $(qobject-obj-y)
145 0a8e1acd aliguori
146 153859be Stuart Brady
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
147 153859be Stuart Brady
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $@")
148 153859be Stuart Brady
149 4091da4b Jan Kiszka
check-qint.o check-qstring.o check-qdict.o check-qlist.o check-qfloat.o check-qjson.o: $(GENERATED_HEADERS)
150 4091da4b Jan Kiszka
151 33837ba6 Luiz Capitulino
check-qint: check-qint.o qint.o qemu-malloc.o
152 5de65a07 Luiz Capitulino
check-qstring: check-qstring.o qstring.o qemu-malloc.o
153 acc3b033 Markus Armbruster
check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
154 3aa3dcff Luiz Capitulino
check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
155 9c9efb6b Anthony Liguori
check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
156 422c46a8 Anthony Liguori
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
157 33837ba6 Luiz Capitulino
158 31e31b8a bellard
clean:
159 2d80ae89 bellard
# avoid old build problems by removing potentially incorrect old files
160 25be210f Juan Quintela
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
161 86e840ee aurel32
	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
162 ac46eb8b Hidetoshi Seto
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d fsdev/*.o fsdev/*.d
163 07b44ce9 Blue Swirl
	rm -f qemu-img-cmds.h
164 7d3505c5 bellard
	$(MAKE) -C tests clean
165 4d904533 Blue Swirl
	for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser libdis libdis-user; do \
166 fc8e320e Magnus Damm
	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
167 626df76a bellard
        done
168 31e31b8a bellard
169 7d13299d bellard
distclean: clean
170 fc8e320e Magnus Damm
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
171 d6f3a845 Hidetoshi Seto
	rm -f qemu-options.def
172 a992fe3d Paul Brook
	rm -f config-all-devices.mak
173 fc8e320e Magnus Damm
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
174 e1a068b2 Hidetoshi Seto
	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
175 e1a068b2 Hidetoshi Seto
	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
176 4d904533 Blue Swirl
	for d in $(TARGET_DIRS) libhw32 libhw64 libuser libdis libdis-user; do \
177 bc1b050d bellard
	rm -rf $$d || exit 1 ; \
178 76bc6838 bellard
        done
179 7d13299d bellard
180 fed4a9ad bellard
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
181 fed4a9ad bellard
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
182 fed4a9ad bellard
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
183 fed4a9ad bellard
184 77755340 ths
ifdef INSTALL_BLOBS
185 77755340 ths
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
186 e5d01b06 aurel32
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
187 5309e5fb Stefan Weil
gpxe-eepro100-80861209.rom \
188 5309e5fb Stefan Weil
gpxe-eepro100-80861229.rom \
189 5309e5fb Stefan Weil
pxe-e1000.bin \
190 88e2b0a5 Stefan Weil
pxe-ne2k_pci.bin pxe-pcnet.bin \
191 88e2b0a5 Stefan Weil
pxe-rtl8139.bin pxe-virtio.bin \
192 253d0942 Alexander Graf
bamboo.dtb petalogix-s3adsp1800.dtb \
193 fe270d04 Alexander Graf
multiboot.bin linuxboot.bin \
194 fe270d04 Alexander Graf
s390-zipl.rom
195 77755340 ths
else
196 77755340 ths
BLOBS=
197 77755340 ths
endif
198 77755340 ths
199 38954dca pbrook
install-doc: $(DOCS)
200 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
201 58f8aead aliguori
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
202 96d409eb Juan Quintela
ifdef CONFIG_POSIX
203 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
204 58f8aead aliguori
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
205 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
206 58f8aead aliguori
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
207 38954dca pbrook
endif
208 38954dca pbrook
209 b5ec5ce0 john cooper
install-sysconfig:
210 990caaf1 Andre Przywara
	$(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
211 990caaf1 Andre Przywara
	$(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
212 b5ec5ce0 john cooper
213 b5ec5ce0 john cooper
install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig
214 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
215 932a79df ths
ifneq ($(TOOLS),)
216 58f8aead aliguori
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
217 932a79df ths
endif
218 77755340 ths
ifneq ($(BLOBS),)
219 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
220 77755340 ths
	set -e; for x in $(BLOBS); do \
221 58f8aead aliguori
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
222 ad064840 pbrook
	done
223 77755340 ths
endif
224 58f8aead aliguori
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
225 18be8d77 blueswir1
	set -e; for x in $(KEYMAPS); do \
226 79fd42aa Anthony Liguori
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
227 ad064840 pbrook
	done
228 626df76a bellard
	for d in $(TARGET_DIRS); do \
229 7d3505c5 bellard
	$(MAKE) -C $$d $@ || exit 1 ; \
230 626df76a bellard
        done
231 612384d7 bellard
232 367e86e8 bellard
# various test targets
233 9b0b8203 bellard
test speed: all
234 7d3505c5 bellard
	$(MAKE) -C tests $@
235 31e31b8a bellard
236 21d4e8e3 Alexandre Bique
.PHONY: TAGS
237 5fafdf24 ths
TAGS:
238 21d4e8e3 Alexandre Bique
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
239 31e31b8a bellard
240 6688bc6d bellard
cscope:
241 6688bc6d bellard
	rm -f ./cscope.*
242 ede46085 aurel32
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
243 6688bc6d bellard
	cscope -b
244 6688bc6d bellard
245 3ef693a0 bellard
# documentation
246 01668d98 Stefan Weil
MAKEINFO=makeinfo
247 01668d98 Stefan Weil
MAKEINFOFLAGS=--no-headers --no-split --number-sections
248 20cc9997 Stefan Weil
TEXIFLAG=$(if $(V),,--quiet)
249 20cc9997 Stefan Weil
%.dvi: %.texi
250 20cc9997 Stefan Weil
	$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"  GEN   $@")
251 20cc9997 Stefan Weil
252 1f673135 bellard
%.html: %.texi
253 01668d98 Stefan Weil
	$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
254 01668d98 Stefan Weil
	"  GEN   $@")
255 3ef693a0 bellard
256 f3548328 bellard
%.info: %.texi
257 01668d98 Stefan Weil
	$(call quiet-command,$(MAKEINFO) $< -o $@,"  GEN   $@")
258 f3548328 bellard
259 20cc9997 Stefan Weil
%.pdf: %.texi
260 20cc9997 Stefan Weil
	$(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"  GEN   $@")
261 5824d651 blueswir1
262 5824d651 blueswir1
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
263 0d00e563 aliguori
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
264 f3548328 bellard
265 2313086a Blue Swirl
qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
266 2313086a Blue Swirl
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
267 2313086a Blue Swirl
268 b40292e7 Jan Kiszka
QMP/qmp-commands.txt: $(SRC_PATH)/qemu-monitor.hx
269 b40292e7 Jan Kiszka
	$(call quiet-command,sh $(SRC_PATH)/hxtool -q < $< > $@,"  GEN   $@")
270 b40292e7 Jan Kiszka
271 153859be Stuart Brady
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
272 153859be Stuart Brady
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
273 153859be Stuart Brady
274 2313086a Blue Swirl
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
275 0d00e563 aliguori
	$(call quiet-command, \
276 0d00e563 aliguori
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
277 0d00e563 aliguori
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
278 0d00e563 aliguori
	  "  GEN   $@")
279 5a67135a bellard
280 153859be Stuart Brady
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
281 0d00e563 aliguori
	$(call quiet-command, \
282 0d00e563 aliguori
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
283 0d00e563 aliguori
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
284 0d00e563 aliguori
	  "  GEN   $@")
285 acd935ef bellard
286 7a5ca864 bellard
qemu-nbd.8: qemu-nbd.texi
287 0d00e563 aliguori
	$(call quiet-command, \
288 0d00e563 aliguori
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
289 0d00e563 aliguori
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
290 0d00e563 aliguori
	  "  GEN   $@")
291 7a5ca864 bellard
292 0cb3fb1e pbrook
dvi: qemu-doc.dvi qemu-tech.dvi
293 0cb3fb1e pbrook
html: qemu-doc.html qemu-tech.html
294 20cc9997 Stefan Weil
info: qemu-doc.info qemu-tech.info
295 20cc9997 Stefan Weil
pdf: qemu-doc.pdf qemu-tech.pdf
296 0cb3fb1e pbrook
297 20cc9997 Stefan Weil
qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
298 20cc9997 Stefan Weil
	qemu-img.texi qemu-nbd.texi qemu-options.texi \
299 20cc9997 Stefan Weil
	qemu-monitor.texi qemu-img-cmds.texi
300 818220f5 aliguori
301 df5cf721 ths
VERSION ?= $(shell cat VERSION)
302 df5cf721 ths
FILE = qemu-$(VERSION)
303 586314f2 bellard
304 1e43adfc bellard
# tar release (use 'make -k tar' on a checkouted tree)
305 586314f2 bellard
tar:
306 586314f2 bellard
	rm -rf /tmp/$(FILE)
307 1e43adfc bellard
	cp -r . /tmp/$(FILE)
308 99c6c082 aurel32
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
309 586314f2 bellard
	rm -rf /tmp/$(FILE)
310 586314f2 bellard
311 4c0a6db0 Stuart Brady
SYSTEM_TARGETS=$(filter %-softmmu,$(TARGET_DIRS))
312 4c0a6db0 Stuart Brady
SYSTEM_PROGS=$(patsubst qemu-system-i386,qemu, \
313 4c0a6db0 Stuart Brady
             $(patsubst %-softmmu,qemu-system-%, \
314 4c0a6db0 Stuart Brady
             $(SYSTEM_TARGETS)))
315 4c0a6db0 Stuart Brady
316 4c0a6db0 Stuart Brady
USER_TARGETS=$(filter %-user,$(TARGET_DIRS))
317 4c0a6db0 Stuart Brady
USER_PROGS=$(patsubst %-bsd-user,qemu-%, \
318 4c0a6db0 Stuart Brady
           $(patsubst %-darwin-user,qemu-%, \
319 4c0a6db0 Stuart Brady
           $(patsubst %-linux-user,qemu-%, \
320 4c0a6db0 Stuart Brady
           $(USER_TARGETS))))
321 4c0a6db0 Stuart Brady
322 76b62fd0 bellard
# generate a binary distribution
323 d691f669 bellard
tarbin:
324 18be8d77 blueswir1
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
325 4c0a6db0 Stuart Brady
	$(patsubst %,$(bindir)/%, $(SYSTEM_PROGS)) \
326 4c0a6db0 Stuart Brady
	$(patsubst %,$(bindir)/%, $(USER_PROGS)) \
327 40e8a53b aurel32
	$(bindir)/qemu-img \
328 40e8a53b aurel32
	$(bindir)/qemu-nbd \
329 7efa4387 bellard
	$(datadir)/bios.bin \
330 7efa4387 bellard
	$(datadir)/vgabios.bin \
331 de9258a8 bellard
	$(datadir)/vgabios-cirrus.bin \
332 637f6cd7 bellard
	$(datadir)/ppc_rom.bin \
333 d5295253 bellard
	$(datadir)/video.x \
334 0986ac3b bellard
	$(datadir)/openbios-sparc32 \
335 938255d2 blueswir1
	$(datadir)/openbios-sparc64 \
336 e5d01b06 aurel32
	$(datadir)/openbios-ppc \
337 40e8a53b aurel32
	$(datadir)/pxe-ne2k_pci.bin \
338 19c80e50 bellard
	$(datadir)/pxe-rtl8139.bin \
339 40e8a53b aurel32
	$(datadir)/pxe-pcnet.bin \
340 2991990b aliguori
	$(datadir)/pxe-e1000.bin \
341 1f50f8d1 bellard
	$(docdir)/qemu-doc.html \
342 1f50f8d1 bellard
	$(docdir)/qemu-tech.html \
343 40e8a53b aurel32
	$(mandir)/man1/qemu.1 \
344 40e8a53b aurel32
	$(mandir)/man1/qemu-img.1 \
345 7a5ca864 bellard
	$(mandir)/man8/qemu-nbd.8
346 d691f669 bellard
347 4fb240a4 bellard
# Include automatically generated dependency files
348 e1144d00 Mark McLoughlin
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d)