xref: /openbmc/qemu/Makefile (revision d3f24367)
10cb3fb1eSpbrook# Makefile for QEMU.
20cb3fb1eSpbrook
355d7e8f6Saurel32ifneq ($(wildcard config-host.mak),)
41ad2134fSPaul Brook# Put the all: rule here so that config-host.mak can contain dependencies.
51ad2134fSPaul Brookall: build-all
6ad064840Spbrookinclude config-host.mak
717759187Saliguoriinclude $(SRC_PATH)/rules.mak
855d7e8f6Saurel32else
955d7e8f6Saurel32config-host.mak:
1055d7e8f6Saurel32	@echo "Please call configure before running make!"
1155d7e8f6Saurel32	@exit 1
1255d7e8f6Saurel32endif
13766a487aSbellard
14818220f5Saliguori.PHONY: all clean cscope distclean dvi html info install install-doc \
15818220f5Saliguori	recurse-all speed tar tarbin test
160cb3fb1eSpbrook
178c462f8fSpbrookVPATH=$(SRC_PATH):$(SRC_PATH)/hw
188c462f8fSpbrook
1917759187Saliguori
2040293e58SbellardCFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
2140293e58SbellardLDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
223142255cSblueswir1
2396935aa4SmalcCPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
244fb240a4SbellardCPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
25766a487aSbellardLIBS=
261f50f8d1Sbellardifdef CONFIG_STATIC
2740293e58SbellardLDFLAGS += -static
281f50f8d1Sbellardendif
29cc8ae6deSpbrookifdef BUILD_DOCS
307a5ca864SbellardDOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
31cc8ae6deSpbrookelse
32cc8ae6deSpbrookDOCS=
33cc8ae6deSpbrookendif
347d13299dSbellard
35e5d355d1SaliguoriLIBS+=$(PTHREADLIBS)
36e5d355d1SaliguoriLIBS+=$(CLOCKLIBS)
3783f64091Sbellard
387e00eb9bSaliguoriifdef CONFIG_SOLARIS
397e00eb9bSaliguoriLIBS+=-lsocket -lnsl -lresolv
407e00eb9bSaliguoriendif
417e00eb9bSaliguori
4203ff3ca3Saliguoriifdef CONFIG_WIN32
4303ff3ca3SaliguoriLIBS+=-lwinmm -lws2_32 -liphlpapi
4403ff3ca3Saliguoriendif
4503ff3ca3Saliguori
461ad2134fSPaul Brookbuild-all: $(TOOLS) $(DOCS) recurse-all
47b9dea4fbSpbrook
4855d7e8f6Saurel32config-host.mak: configure
4955d7e8f6Saurel32ifneq ($(wildcard config-host.mak),)
5055d7e8f6Saurel32	@echo $@ is out-of-date, running configure
51052ff921Sblueswir1	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
5255d7e8f6Saurel32endif
5355d7e8f6Saurel32
540087375eSPaul BrookSUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
55cec7d0b6SpbrookSUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
56cec7d0b6Spbrook
5786e840eeSaurel32subdir-%:
580087375eSPaul Brook	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
594aa42531Spbrook
60cec7d0b6Spbrook$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
61cec7d0b6Spbrook$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
62cec7d0b6Spbrook
63cec7d0b6Spbrookrecurse-all: $(SUBDIR_RULES)
644aa42531Spbrook
65faf07963Spbrook#######################################################################
66faf07963Spbrook# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
67faf07963Spbrook
68*d3f24367SKevin WolfBLOCK_OBJS=cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
69019d6b8fSAnthony LiguoriBLOCK_OBJS+=block/cow.o block/qcow.o aes.o block/vmdk.o block/cloop.o
70019d6b8fSAnthony LiguoriBLOCK_OBJS+=block/dmg.o block/bochs.o block/vpc.o block/vvfat.o
71019d6b8fSAnthony LiguoriBLOCK_OBJS+=block/qcow2.o block/parallels.o block/nbd.o
72a76bab49SaliguoriBLOCK_OBJS+=nbd.o block.o aio.o
7303ff3ca3Saliguori
7403ff3ca3Saliguoriifdef CONFIG_WIN32
75019d6b8fSAnthony LiguoriBLOCK_OBJS += block/raw-win32.o
7603ff3ca3Saliguorielse
773c529d93Saliguoriifdef CONFIG_AIO
783c529d93SaliguoriBLOCK_OBJS += posix-aio-compat.o
793c529d93Saliguoriendif
80019d6b8fSAnthony LiguoriBLOCK_OBJS += block/raw-posix.o
8103ff3ca3Saliguoriendif
8203ff3ca3Saliguori
834fb240a4Sbellard######################################################################
842e2ea909Sbellard# libqemu_common.a: Target independent part of system emulation. The
854fb240a4Sbellard# long term path is to suppress *all* target specific code in case of
864fb240a4Sbellard# system emulation, i.e. a single QEMU executable should support all
874fb240a4Sbellard# CPUs and machines.
8847cea614Sbellard
89cd01b4a3SaliguoriOBJS=$(BLOCK_OBJS)
90faf07963SpbrookOBJS+=readline.o console.o
91cd01b4a3Saliguori
92e9c28334Sblueswir1OBJS+=irq.o ptimer.o
9387ecb68bSpbrookOBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
947e7c5e4cSbalrogOBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
95e9c28334Sblueswir1OBJS+=tmp105.o lm832x.o eeprom93xx.o tsc2005.o
9687ecb68bSpbrookOBJS+=scsi-disk.o cdrom.o
97985a03b0SthsOBJS+=scsi-generic.o
9868063649Sblueswir1OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
996c9f886cSbalrogOBJS+=usb-serial.o usb-net.o
100775616c3SpbrookOBJS+=sd.o ssi-sd.o
101e6a6d5abSbalrogOBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
102e9c28334Sblueswir1OBJS+=bt-hci-csr.o
103559b90fbSaliguoriOBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
104902b3d5cSmalcOBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
105e9c28334Sblueswir1OBJS+=msmouse.o ps2.o
10690d37239SPaul BrookOBJS+=qdev.o ssi.o
10787ecb68bSpbrook
1082e4d9fb1Saurel32ifdef CONFIG_BRLAPI
1092e4d9fb1Saurel32OBJS+= baum.o
1102e4d9fb1Saurel32LIBS+=-lbrlapi
1112e4d9fb1Saurel32endif
1122e4d9fb1Saurel32
1134fb240a4Sbellardifdef CONFIG_WIN32
1144fb240a4SbellardOBJS+=tap-win32.o
115559b90fbSaliguorielse
116559b90fbSaliguoriOBJS+=migration-exec.o
1174fb240a4Sbellardendif
1184fb240a4Sbellard
1194fb240a4SbellardAUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
1204fb240a4Sbellardifdef CONFIG_SDL
1214fb240a4SbellardAUDIO_OBJS += sdlaudio.o
1224fb240a4Sbellardendif
1234fb240a4Sbellardifdef CONFIG_OSS
1244fb240a4SbellardAUDIO_OBJS += ossaudio.o
1254fb240a4Sbellardendif
1264fb240a4Sbellardifdef CONFIG_COREAUDIO
1274fb240a4SbellardAUDIO_OBJS += coreaudio.o
128ca9cc28cSbalrogAUDIO_PT = yes
1294fb240a4Sbellardendif
1304fb240a4Sbellardifdef CONFIG_ALSA
1314fb240a4SbellardAUDIO_OBJS += alsaaudio.o
1324fb240a4Sbellardendif
1334fb240a4Sbellardifdef CONFIG_DSOUND
1344fb240a4SbellardAUDIO_OBJS += dsoundaudio.o
1354fb240a4Sbellardendif
1364fb240a4Sbellardifdef CONFIG_FMOD
1374fb240a4SbellardAUDIO_OBJS += fmodaudio.o
1384fb240a4Sbellardaudio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
1394fb240a4Sbellardendif
140ca9cc28cSbalrogifdef CONFIG_ESD
141ca9cc28cSbalrogAUDIO_PT = yes
142ca9cc28cSbalrogAUDIO_PT_INT = yes
143ca9cc28cSbalrogAUDIO_OBJS += esdaudio.o
144ca9cc28cSbalrogendif
145b8e59f18Smalcifdef CONFIG_PA
146b8e59f18SmalcAUDIO_PT = yes
147b8e59f18SmalcAUDIO_PT_INT = yes
148b8e59f18SmalcAUDIO_OBJS += paaudio.o
149b8e59f18Smalcendif
150ca9cc28cSbalrogifdef AUDIO_PT
151ca9cc28cSbalrogLDFLAGS += -pthread
152ca9cc28cSbalrogendif
153ca9cc28cSbalrogifdef AUDIO_PT_INT
154ca9cc28cSbalrogAUDIO_OBJS += audio_pt_int.o
155ca9cc28cSbalrogendif
1564fb240a4SbellardAUDIO_OBJS+= wavcapture.o
1574fb240a4SbellardOBJS+=$(addprefix audio/, $(AUDIO_OBJS))
1584fb240a4Sbellard
1590483755aSaliguoriOBJS+=keymaps.o
1604fb240a4Sbellardifdef CONFIG_SDL
1614fb240a4SbellardOBJS+=sdl.o x_keymap.o
1624fb240a4Sbellardendif
1634d3b6f6eSbalrogifdef CONFIG_CURSES
1644d3b6f6eSbalrogOBJS+=curses.o
1654d3b6f6eSbalrogendif
16676655d6dSaliguoriOBJS+=vnc.o acl.o d3des.o
1675fb6c7a8Saliguoriifdef CONFIG_VNC_TLS
1685fb6c7a8SaliguoriOBJS+=vnc-tls.o vnc-auth-vencrypt.o
1695fb6c7a8Saliguoriendif
1702f9606b3Saliguoriifdef CONFIG_VNC_SASL
1712f9606b3SaliguoriOBJS+=vnc-auth-sasl.o
1722f9606b3Saliguoriendif
1734fb240a4Sbellard
1744fb240a4Sbellardifdef CONFIG_COCOA
1754fb240a4SbellardOBJS+=cocoa.o
1764fb240a4Sbellardendif
1774fb240a4Sbellard
178e5d355d1Saliguoriifdef CONFIG_IOTHREAD
179e5d355d1SaliguoriOBJS+=qemu-thread.o
180e5d355d1Saliguoriendif
181e5d355d1Saliguori
1824fb240a4Sbellardifdef CONFIG_SLIRP
1834fb240a4SbellardCPPFLAGS+=-I$(SRC_PATH)/slirp
1844fb240a4SbellardSLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
1854fb240a4Sbellardslirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
1864fb240a4Sbellardtcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
1874fb240a4SbellardOBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
1884fb240a4Sbellardendif
1894fb240a4Sbellard
1908a16d273SthsLIBS+=$(VDE_LIBS)
1918a16d273Sths
1922567f579SBlue Swirl# xen backend driver support
1932567f579SBlue SwirlXEN_OBJS := xen_backend.o xen_devconfig.o
1942567f579SBlue SwirlXEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
1952567f579SBlue Swirlifdef CONFIG_XEN
1962567f579SBlue Swirl  OBJS += $(XEN_OBJS)
1972567f579SBlue Swirlendif
1982567f579SBlue Swirl
1994fb240a4Sbellardcocoa.o: cocoa.m
2004fb240a4Sbellard
2010483755aSaliguorikeymaps.o: keymaps.c keymaps.h
2020483755aSaliguori
2030483755aSaliguorisdl.o: sdl.c keymaps.h sdl_keysym.h
204807544e2Saliguori
205807544e2Saliguorisdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS)
2064fb240a4Sbellard
20776655d6dSaliguoriacl.o: acl.h acl.c
20876655d6dSaliguori
2092f9606b3Saliguorivnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
2105fb6c7a8Saliguori
21176655d6dSaliguorivnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
212807544e2Saliguori
213807544e2Saliguorivnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
2144fb240a4Sbellard
2155fb6c7a8Saliguorivnc-tls.o: vnc-tls.c vnc.h
2165fb6c7a8Saliguori
2175fb6c7a8Saliguorivnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
2185fb6c7a8Saliguori
2192f9606b3Saliguorivnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
2202f9606b3Saliguori
2210483755aSaliguoricurses.o: curses.c keymaps.h curses_keys.h
2224d3b6f6eSbalrog
223807544e2Saliguoribt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
2244fb240a4Sbellard
2254fb240a4Sbellardlibqemu_common.a: $(OBJS)
2264fb240a4Sbellard
227cec7d0b6Spbrook#######################################################################
228cec7d0b6Spbrook# USER_OBJS is code used by qemu userspace emulation
229902b3d5cSmalcUSER_OBJS=cutils.o  cache-utils.o
230cec7d0b6Spbrook
231cec7d0b6Spbrooklibqemu_user.a: $(USER_OBJS)
232cec7d0b6Spbrook
2334fb240a4Sbellard######################################################################
2344fb240a4Sbellard
23588ca2a59SPaul Brookqemu-img$(EXESUF): qemu-img.o qemu-tool.o tool-osdep.o $(BLOCK_OBJS)
2364fb240a4Sbellard
23788ca2a59SPaul Brookqemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o tool-osdep.o $(BLOCK_OBJS)
2383aa892d7Saliguori
23988ca2a59SPaul Brookqemu-io$(EXESUF):  qemu-io.o qemu-tool.o tool-osdep.o cmd.o $(BLOCK_OBJS)
2400a8e1acdSaliguori
2410a8e1acdSaliguoriqemu-img$(EXESUF) qemu-nbd$(EXESUF) qemu-io$(EXESUF): LIBS += -lz
2427a5ca864Sbellard
24331e31b8aSbellardclean:
2442d80ae89Sbellard# avoid old build problems by removing potentially incorrect old files
2452d80ae89Sbellard	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
24686e840eeSaurel32	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
247019d6b8fSAnthony Liguori	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d
2487d3505c5Sbellard	$(MAKE) -C tests clean
2491ad2134fSPaul Brook	for d in $(TARGET_DIRS) libhw32 libhw64; do \
2507d3505c5Sbellard	$(MAKE) -C $$d $@ || exit 1 ; \
251626df76aSbellard        done
25231e31b8aSbellard
2537d13299dSbellarddistclean: clean
254016c62c8Saliguori	rm -f config-host.mak config-host.h $(DOCS) qemu-options.texi
2550cb3fb1eSpbrook	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
2561ad2134fSPaul Brook	for d in $(TARGET_DIRS) libhw32 libhw64; do \
257bc1b050dSbellard	rm -rf $$d || exit 1 ; \
25876bc6838Sbellard        done
2597d13299dSbellard
260fed4a9adSbellardKEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
261fed4a9adSbellardar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
262fed4a9adSbellardcommon  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
263fed4a9adSbellard
26477755340Sthsifdef INSTALL_BLOBS
26577755340SthsBLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
266e5d01b06Saurel32video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
267e5d01b06Saurel32pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
268e5d01b06Saurel32bamboo.dtb
26977755340Sthselse
27077755340SthsBLOBS=
27177755340Sthsendif
27277755340Sths
27338954dcaSpbrookinstall-doc: $(DOCS)
27458f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
27558f8aeadSaliguori	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
27638954dcaSpbrookifndef CONFIG_WIN32
27758f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
27858f8aeadSaliguori	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
27958f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
28058f8aeadSaliguori	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
28138954dcaSpbrookendif
28238954dcaSpbrook
28338954dcaSpbrookinstall: all $(if $(BUILD_DOCS),install-doc)
28458f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
285932a79dfSthsifneq ($(TOOLS),)
28658f8aeadSaliguori	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
287932a79dfSthsendif
28877755340Sthsifneq ($(BLOBS),)
28958f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
29077755340Sths	set -e; for x in $(BLOBS); do \
29158f8aeadSaliguori		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
292ad064840Spbrook	done
29377755340Sthsendif
29411d9f695Sbellardifndef CONFIG_WIN32
29558f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
29618be8d77Sblueswir1	set -e; for x in $(KEYMAPS); do \
29758f8aeadSaliguori		$(INSTALL_DATA) $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
298ad064840Spbrook	done
29911d9f695Sbellardendif
300626df76aSbellard	for d in $(TARGET_DIRS); do \
3017d3505c5Sbellard	$(MAKE) -C $$d $@ || exit 1 ; \
302626df76aSbellard        done
303612384d7Sbellard
304367e86e8Sbellard# various test targets
3059b0b8203Sbellardtest speed: all
3067d3505c5Sbellard	$(MAKE) -C tests $@
30731e31b8aSbellard
308367e86e8SbellardTAGS:
309b9adb4a6Sbellard	etags *.[ch] tests/*.[ch]
31031e31b8aSbellard
3116688bc6dSbellardcscope:
3126688bc6dSbellard	rm -f ./cscope.*
313ede46085Saurel32	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
3146688bc6dSbellard	cscope -b
3156688bc6dSbellard
3163ef693a0Sbellard# documentation
3171f673135Sbellard%.html: %.texi
3180d00e563Saliguori	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
3193ef693a0Sbellard
320f3548328Sbellard%.info: %.texi
3210d00e563Saliguori	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
322f3548328Sbellard
323f3548328Sbellard%.dvi: %.texi
3240d00e563Saliguori	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
3255824d651Sblueswir1
3265824d651Sblueswir1qemu-options.texi: $(SRC_PATH)/qemu-options.hx
3270d00e563Saliguori	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
328f3548328Sbellard
3297545668bSblueswir1qemu.1: qemu-doc.texi qemu-options.texi
3300d00e563Saliguori	$(call quiet-command, \
3310d00e563Saliguori	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
3320d00e563Saliguori	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
3330d00e563Saliguori	  "  GEN   $@")
3345a67135aSbellard
335acd935efSbellardqemu-img.1: qemu-img.texi
3360d00e563Saliguori	$(call quiet-command, \
3370d00e563Saliguori	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
3380d00e563Saliguori	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
3390d00e563Saliguori	  "  GEN   $@")
340acd935efSbellard
3417a5ca864Sbellardqemu-nbd.8: qemu-nbd.texi
3420d00e563Saliguori	$(call quiet-command, \
3430d00e563Saliguori	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
3440d00e563Saliguori	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
3450d00e563Saliguori	  "  GEN   $@")
3467a5ca864Sbellard
3470cb3fb1eSpbrookinfo: qemu-doc.info qemu-tech.info
3480cb3fb1eSpbrook
3490cb3fb1eSpbrookdvi: qemu-doc.dvi qemu-tech.dvi
3500cb3fb1eSpbrook
3510cb3fb1eSpbrookhtml: qemu-doc.html qemu-tech.html
3520cb3fb1eSpbrook
3535824d651Sblueswir1qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi
354818220f5Saliguori
355df5cf721SthsVERSION ?= $(shell cat VERSION)
356df5cf721SthsFILE = qemu-$(VERSION)
357586314f2Sbellard
3581e43adfcSbellard# tar release (use 'make -k tar' on a checkouted tree)
359586314f2Sbellardtar:
360586314f2Sbellard	rm -rf /tmp/$(FILE)
3611e43adfcSbellard	cp -r . /tmp/$(FILE)
36299c6c082Saurel32	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
363586314f2Sbellard	rm -rf /tmp/$(FILE)
364586314f2Sbellard
36576b62fd0Sbellard# generate a binary distribution
366d691f669Sbellardtarbin:
36718be8d77Sblueswir1	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
36843095f31Sbellard	$(bindir)/qemu \
36943095f31Sbellard	$(bindir)/qemu-system-x86_64 \
37040e8a53bSaurel32	$(bindir)/qemu-system-arm \
37140e8a53bSaurel32	$(bindir)/qemu-system-cris \
37240e8a53bSaurel32	$(bindir)/qemu-system-m68k \
37393856aacSbellard	$(bindir)/qemu-system-mips \
37438260998Spbrook	$(bindir)/qemu-system-mipsel \
375fbe4f65bSths	$(bindir)/qemu-system-mips64 \
376fbe4f65bSths	$(bindir)/qemu-system-mips64el \
37740e8a53bSaurel32	$(bindir)/qemu-system-ppc \
37840e8a53bSaurel32	$(bindir)/qemu-system-ppcemb \
37940e8a53bSaurel32	$(bindir)/qemu-system-ppc64 \
380ff1aaf65Sths	$(bindir)/qemu-system-sh4 \
38185ffbdfcSths	$(bindir)/qemu-system-sh4eb \
38240e8a53bSaurel32	$(bindir)/qemu-system-sparc \
3837efa4387Sbellard	$(bindir)/qemu-i386 \
384f0403c03Sbellard	$(bindir)/qemu-x86_64 \
38540e8a53bSaurel32	$(bindir)/qemu-alpha \
3867efa4387Sbellard	$(bindir)/qemu-arm \
387ea31eb5bSbellard	$(bindir)/qemu-armeb \
38840e8a53bSaurel32	$(bindir)/qemu-cris \
38940e8a53bSaurel32	$(bindir)/qemu-m68k \
39040e8a53bSaurel32	$(bindir)/qemu-mips \
39140e8a53bSaurel32	$(bindir)/qemu-mipsel \
3927efa4387Sbellard	$(bindir)/qemu-ppc \
393d4082e95Sj_mayer	$(bindir)/qemu-ppc64 \
394f0403c03Sbellard	$(bindir)/qemu-ppc64abi32 \
395ff1aaf65Sths	$(bindir)/qemu-sh4 \
39685ffbdfcSths	$(bindir)/qemu-sh4eb \
39740e8a53bSaurel32	$(bindir)/qemu-sparc \
39840e8a53bSaurel32	$(bindir)/qemu-sparc64 \
39940e8a53bSaurel32	$(bindir)/qemu-sparc32plus \
400b932cabaSbellard	$(bindir)/qemu-img \
4017a5ca864Sbellard	$(bindir)/qemu-nbd \
4027efa4387Sbellard	$(datadir)/bios.bin \
4037efa4387Sbellard	$(datadir)/vgabios.bin \
404de9258a8Sbellard	$(datadir)/vgabios-cirrus.bin \
405637f6cd7Sbellard	$(datadir)/ppc_rom.bin \
406d5295253Sbellard	$(datadir)/video.x \
4070986ac3bSbellard	$(datadir)/openbios-sparc32 \
408938255d2Sblueswir1	$(datadir)/openbios-sparc64 \
409e5d01b06Saurel32	$(datadir)/openbios-ppc \
41019c80e50Sbellard	$(datadir)/pxe-ne2k_pci.bin \
41119c80e50Sbellard	$(datadir)/pxe-rtl8139.bin \
41219c80e50Sbellard	$(datadir)/pxe-pcnet.bin \
4132991990bSaliguori	$(datadir)/pxe-e1000.bin \
4141f50f8d1Sbellard	$(docdir)/qemu-doc.html \
4151f50f8d1Sbellard	$(docdir)/qemu-tech.html \
41640e8a53bSaurel32	$(mandir)/man1/qemu.1 \
41740e8a53bSaurel32	$(mandir)/man1/qemu-img.1 \
4187a5ca864Sbellard	$(mandir)/man8/qemu-nbd.8
419d691f669Sbellard
4204fb240a4Sbellard# Include automatically generated dependency files
421019d6b8fSAnthony Liguori-include $(wildcard *.d audio/*.d slirp/*.d block/*.d)
422