xref: /openbmc/qemu/Makefile (revision acc3b033)
10cb3fb1eSpbrook# Makefile for QEMU.
20cb3fb1eSpbrook
3a992fe3dSPaul BrookGENERATED_HEADERS = config-host.h
4f527c579SJuan Quintela
555d7e8f6Saurel32ifneq ($(wildcard config-host.mak),)
61ad2134fSPaul Brook# Put the all: rule here so that config-host.mak can contain dependencies.
71ad2134fSPaul Brookall: build-all
8ad064840Spbrookinclude config-host.mak
917759187Saliguoriinclude $(SRC_PATH)/rules.mak
1059bc10eeSPaolo Bonziniconfig-host.mak: $(SRC_PATH)/configure
11e5efe7f5SJuan Quintela	@echo $@ is out-of-date, running configure
12e5efe7f5SJuan Quintela	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
1355d7e8f6Saurel32else
1455d7e8f6Saurel32config-host.mak:
1555d7e8f6Saurel32	@echo "Please call configure before running make!"
1655d7e8f6Saurel32	@exit 1
1755d7e8f6Saurel32endif
18766a487aSbellard
19d9ace8b3SJuan Quintela# Don't try to regenerate Makefile or configure
20d9ace8b3SJuan Quintela# We don't generate any of them
21d9ace8b3SJuan QuintelaMakefile: ;
22d9ace8b3SJuan Quintelaconfigure: ;
23d9ace8b3SJuan Quintela
24818220f5Saliguori.PHONY: all clean cscope distclean dvi html info install install-doc \
259c927650SJuan Quintela	recurse-all speed tar tarbin test build-all
260cb3fb1eSpbrook
27076d2471SPaolo Bonzini$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
288c462f8fSpbrook
293e2e0e6bSJuan QuintelaLIBS+=-lz $(LIBS_TOOLS)
3067c0f08dSJuan Quintela
31cc8ae6deSpbrookifdef BUILD_DOCS
327a5ca864SbellardDOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
33cc8ae6deSpbrookelse
34cc8ae6deSpbrookDOCS=
35cc8ae6deSpbrookendif
367d13299dSbellard
371215c6e7SJuan QuintelaSUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
381f3d3c8fSJuan QuintelaSUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
391f3d3c8fSJuan Quintela
401f3d3c8fSJuan Quintelaconfig-all-devices.mak: $(SUBDIR_DEVICES_MAK)
4101d86a85SStefan Weil	$(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@,"  GEN   $@")
421f3d3c8fSJuan Quintela
43a992fe3dSPaul Brook%/config-devices.mak: default-configs/%.mak
44a992fe3dSPaul Brook	$(call quiet-command,cat $< > $@.tmp, "  GEN   $@")
45a992fe3dSPaul Brook	@if test -f $@; then \
46012f0879SStefan Weil	  if cmp -s $@.old $@ || cmp -s $@ $@.tmp; then \
47012f0879SStefan Weil	    mv $@.tmp $@; \
48012f0879SStefan Weil	    cp -p $@ $@.old; \
49012f0879SStefan Weil	  else \
50012f0879SStefan Weil	    if test -f $@.old; then \
51012f0879SStefan Weil	      echo "WARNING: $@ (user modified) out of date.";\
52012f0879SStefan Weil	    else \
53a992fe3dSPaul Brook	      echo "WARNING: $@ out of date.";\
54012f0879SStefan Weil	    fi; \
5563e86b2eSStefan Weil	    echo "Run \"make defconfig\" to regenerate."; \
56a992fe3dSPaul Brook	    rm $@.tmp; \
57012f0879SStefan Weil	  fi; \
58a992fe3dSPaul Brook	 else \
59a992fe3dSPaul Brook	  mv $@.tmp $@; \
60012f0879SStefan Weil	  cp -p $@ $@.old; \
61a992fe3dSPaul Brook	 fi
62a992fe3dSPaul Brook
63a992fe3dSPaul Brookdefconfig:
64a992fe3dSPaul Brook	rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
65a992fe3dSPaul Brook
661f3d3c8fSJuan Quintela-include config-all-devices.mak
671215c6e7SJuan Quintela
68f527c579SJuan Quintelabuild-all: $(DOCS) $(TOOLS) recurse-all
69b9dea4fbSpbrook
701215c6e7SJuan Quintelaconfig-host.h: config-host.h-timestamp
711215c6e7SJuan Quintelaconfig-host.h-timestamp: config-host.mak
721215c6e7SJuan Quintela
73cec7d0b6SpbrookSUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
74cec7d0b6Spbrook
75f527c579SJuan Quintelasubdir-%: $(GENERATED_HEADERS)
760087375eSPaul Brook	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
774aa42531Spbrook
78b88bc808SStefan Weilifneq ($(wildcard config-host.mak),)
790e8c9214SAndreas Färberinclude $(SRC_PATH)/Makefile.objs
80b88bc808SStefan Weilendif
810e8c9214SAndreas Färber
820e8c9214SAndreas Färber$(common-obj-y): $(GENERATED_HEADERS)
830e8c9214SAndreas Färber$(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y)
84c05ac895SPaul Brook
8525d0ae90SBlue Swirl$(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) subdir-libuser
86add16157SBlue Swirl
87c05ac895SPaul BrookROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
88c05ac895SPaul Brookromsubdir-%:
89c05ac895SPaul Brook	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
90c05ac895SPaul Brook
91c05ac895SPaul BrookALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
92c05ac895SPaul Brook
93c05ac895SPaul Brookrecurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
944aa42531Spbrook
9598b068a9SJuan Quintelaaudio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
960e22fd2fSJuan Quintela
97a558ee17SJuan QuintelaQEMU_CFLAGS+=$(CURL_CFLAGS)
98769ce76dSAlexander Graf
994fb240a4Sbellardcocoa.o: cocoa.m
1004fb240a4Sbellard
1010483755aSaliguorikeymaps.o: keymaps.c keymaps.h
1020483755aSaliguori
103c18a2c36SStefano Stabellinisdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
104c18a2c36SStefano Stabellini
105c18a2c36SStefano Stabellinisdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
106807544e2Saliguori
107a558ee17SJuan Quintelasdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
1084fb240a4Sbellard
10976655d6dSaliguoriacl.o: acl.h acl.c
11076655d6dSaliguori
1112f9606b3Saliguorivnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
1125fb6c7a8Saliguori
11376655d6dSaliguorivnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
114807544e2Saliguori
115a558ee17SJuan Quintelavnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
1164fb240a4Sbellard
1175fb6c7a8Saliguorivnc-tls.o: vnc-tls.c vnc.h
1185fb6c7a8Saliguori
1195fb6c7a8Saliguorivnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
1205fb6c7a8Saliguori
1212f9606b3Saliguorivnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
1222f9606b3Saliguori
1230483755aSaliguoricurses.o: curses.c keymaps.h curses_keys.h
1244d3b6f6eSbalrog
125a558ee17SJuan Quintelabt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
1264fb240a4Sbellard
1274fb240a4Sbellard######################################################################
1284fb240a4Sbellard
1293c089e15SJuan Quintelaqemu-img.o: qemu-img-cmds.h
1303c089e15SJuan Quintelaqemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o: $(GENERATED_HEADERS)
131153859beSStuart Brady
1323c089e15SJuan Quintelaqemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
1334fb240a4Sbellard
1343c089e15SJuan Quintelaqemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
1353aa892d7Saliguori
1363c089e15SJuan Quintelaqemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y)
1370a8e1acdSaliguori
138153859beSStuart Bradyqemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
139153859beSStuart Brady	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $@")
140153859beSStuart Brady
14133837ba6SLuiz Capitulinocheck-qint: check-qint.o qint.o qemu-malloc.o
1425de65a07SLuiz Capitulinocheck-qstring: check-qstring.o qstring.o qemu-malloc.o
143*acc3b033SMarkus Armbrustercheck-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
1443aa3dcffSLuiz Capitulinocheck-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
1459c9efb6bSAnthony Liguoricheck-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
146422c46a8SAnthony Liguoricheck-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
14733837ba6SLuiz Capitulino
14831e31b8aSbellardclean:
1492d80ae89Sbellard# avoid old build problems by removing potentially incorrect old files
15025be210fSJuan 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
15186e840eeSaurel32	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
152e1144d00SMark McLoughlin	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d
15307b44ce9SBlue Swirl	rm -f qemu-img-cmds.h
1547d3505c5Sbellard	$(MAKE) -C tests clean
155add16157SBlue Swirl	for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \
156fc8e320eSMagnus Damm	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
157626df76aSbellard        done
15831e31b8aSbellard
1597d13299dSbellarddistclean: clean
160fc8e320eSMagnus Damm	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
161a992fe3dSPaul Brook	rm -f config-all-devices.mak
162fc8e320eSMagnus Damm	rm -f roms/seabios/config.mak roms/vgabios/config.mak
1630cb3fb1eSpbrook	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
164add16157SBlue Swirl	for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
165bc1b050dSbellard	rm -rf $$d || exit 1 ; \
16676bc6838Sbellard        done
1677d13299dSbellard
168fed4a9adSbellardKEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
169fed4a9adSbellardar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
170fed4a9adSbellardcommon  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
171fed4a9adSbellard
17277755340Sthsifdef INSTALL_BLOBS
17377755340SthsBLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
174e5d01b06Saurel32video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
17588e2b0a5SStefan Weilpxe-e1000.bin pxe-i82559er.bin \
17688e2b0a5SStefan Weilpxe-ne2k_pci.bin pxe-pcnet.bin \
17788e2b0a5SStefan Weilpxe-rtl8139.bin pxe-virtio.bin \
178253d0942SAlexander Grafbamboo.dtb petalogix-s3adsp1800.dtb \
179cfc6d90aSAlexander Grafmultiboot.bin linuxboot.bin
18077755340Sthselse
18177755340SthsBLOBS=
18277755340Sthsendif
18377755340Sths
18438954dcaSpbrookinstall-doc: $(DOCS)
18558f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
18658f8aeadSaliguori	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
18796d409ebSJuan Quintelaifdef CONFIG_POSIX
18858f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
18958f8aeadSaliguori	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
19058f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
19158f8aeadSaliguori	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
19238954dcaSpbrookendif
19338954dcaSpbrook
19438954dcaSpbrookinstall: all $(if $(BUILD_DOCS),install-doc)
19558f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
196932a79dfSthsifneq ($(TOOLS),)
19758f8aeadSaliguori	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
198932a79dfSthsendif
19977755340Sthsifneq ($(BLOBS),)
20058f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
20177755340Sths	set -e; for x in $(BLOBS); do \
20258f8aeadSaliguori		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
203ad064840Spbrook	done
20477755340Sthsendif
20558f8aeadSaliguori	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
20618be8d77Sblueswir1	set -e; for x in $(KEYMAPS); do \
20779fd42aaSAnthony Liguori		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
208ad064840Spbrook	done
209626df76aSbellard	for d in $(TARGET_DIRS); do \
2107d3505c5Sbellard	$(MAKE) -C $$d $@ || exit 1 ; \
211626df76aSbellard        done
212612384d7Sbellard
213367e86e8Sbellard# various test targets
2149b0b8203Sbellardtest speed: all
2157d3505c5Sbellard	$(MAKE) -C tests $@
21631e31b8aSbellard
21721d4e8e3SAlexandre Bique.PHONY: TAGS
218367e86e8SbellardTAGS:
21921d4e8e3SAlexandre Bique	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
22031e31b8aSbellard
2216688bc6dSbellardcscope:
2226688bc6dSbellard	rm -f ./cscope.*
223ede46085Saurel32	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
2246688bc6dSbellard	cscope -b
2256688bc6dSbellard
2263ef693a0Sbellard# documentation
2271f673135Sbellard%.html: %.texi
2280d00e563Saliguori	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
2293ef693a0Sbellard
230f3548328Sbellard%.info: %.texi
2310d00e563Saliguori	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
232f3548328Sbellard
233f3548328Sbellard%.dvi: %.texi
2340d00e563Saliguori	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
2355824d651Sblueswir1
2365824d651Sblueswir1qemu-options.texi: $(SRC_PATH)/qemu-options.hx
2370d00e563Saliguori	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
238f3548328Sbellard
2392313086aSBlue Swirlqemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
2402313086aSBlue Swirl	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
2412313086aSBlue Swirl
242153859beSStuart Bradyqemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
243153859beSStuart Brady	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
244153859beSStuart Brady
2452313086aSBlue Swirlqemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
2460d00e563Saliguori	$(call quiet-command, \
2470d00e563Saliguori	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
2480d00e563Saliguori	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
2490d00e563Saliguori	  "  GEN   $@")
2505a67135aSbellard
251153859beSStuart Bradyqemu-img.1: qemu-img.texi qemu-img-cmds.texi
2520d00e563Saliguori	$(call quiet-command, \
2530d00e563Saliguori	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
2540d00e563Saliguori	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
2550d00e563Saliguori	  "  GEN   $@")
256acd935efSbellard
2577a5ca864Sbellardqemu-nbd.8: qemu-nbd.texi
2580d00e563Saliguori	$(call quiet-command, \
2590d00e563Saliguori	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
2600d00e563Saliguori	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
2610d00e563Saliguori	  "  GEN   $@")
2627a5ca864Sbellard
2630cb3fb1eSpbrookinfo: qemu-doc.info qemu-tech.info
2640cb3fb1eSpbrook
2650cb3fb1eSpbrookdvi: qemu-doc.dvi qemu-tech.dvi
2660cb3fb1eSpbrook
2670cb3fb1eSpbrookhtml: qemu-doc.html qemu-tech.html
2680cb3fb1eSpbrook
269153859beSStuart Bradyqemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi
270818220f5Saliguori
271df5cf721SthsVERSION ?= $(shell cat VERSION)
272df5cf721SthsFILE = qemu-$(VERSION)
273586314f2Sbellard
2741e43adfcSbellard# tar release (use 'make -k tar' on a checkouted tree)
275586314f2Sbellardtar:
276586314f2Sbellard	rm -rf /tmp/$(FILE)
2771e43adfcSbellard	cp -r . /tmp/$(FILE)
27899c6c082Saurel32	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
279586314f2Sbellard	rm -rf /tmp/$(FILE)
280586314f2Sbellard
28176b62fd0Sbellard# generate a binary distribution
282d691f669Sbellardtarbin:
28318be8d77Sblueswir1	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
28443095f31Sbellard	$(bindir)/qemu \
28543095f31Sbellard	$(bindir)/qemu-system-x86_64 \
28640e8a53bSaurel32	$(bindir)/qemu-system-arm \
28740e8a53bSaurel32	$(bindir)/qemu-system-cris \
28840e8a53bSaurel32	$(bindir)/qemu-system-m68k \
289bc6291a1SEdgar E. Iglesias	$(bindir)/qemu-system-microblaze \
29093856aacSbellard	$(bindir)/qemu-system-mips \
29138260998Spbrook	$(bindir)/qemu-system-mipsel \
292fbe4f65bSths	$(bindir)/qemu-system-mips64 \
293fbe4f65bSths	$(bindir)/qemu-system-mips64el \
29440e8a53bSaurel32	$(bindir)/qemu-system-ppc \
29540e8a53bSaurel32	$(bindir)/qemu-system-ppcemb \
29640e8a53bSaurel32	$(bindir)/qemu-system-ppc64 \
297ff1aaf65Sths	$(bindir)/qemu-system-sh4 \
29885ffbdfcSths	$(bindir)/qemu-system-sh4eb \
29940e8a53bSaurel32	$(bindir)/qemu-system-sparc \
3007efa4387Sbellard	$(bindir)/qemu-i386 \
301f0403c03Sbellard	$(bindir)/qemu-x86_64 \
30240e8a53bSaurel32	$(bindir)/qemu-alpha \
3037efa4387Sbellard	$(bindir)/qemu-arm \
304ea31eb5bSbellard	$(bindir)/qemu-armeb \
30540e8a53bSaurel32	$(bindir)/qemu-cris \
30640e8a53bSaurel32	$(bindir)/qemu-m68k \
307bc6291a1SEdgar E. Iglesias	$(bindir)/qemu-microblaze \
30840e8a53bSaurel32	$(bindir)/qemu-mips \
30940e8a53bSaurel32	$(bindir)/qemu-mipsel \
3107efa4387Sbellard	$(bindir)/qemu-ppc \
311d4082e95Sj_mayer	$(bindir)/qemu-ppc64 \
312f0403c03Sbellard	$(bindir)/qemu-ppc64abi32 \
313ff1aaf65Sths	$(bindir)/qemu-sh4 \
31485ffbdfcSths	$(bindir)/qemu-sh4eb \
31540e8a53bSaurel32	$(bindir)/qemu-sparc \
31640e8a53bSaurel32	$(bindir)/qemu-sparc64 \
31740e8a53bSaurel32	$(bindir)/qemu-sparc32plus \
318b932cabaSbellard	$(bindir)/qemu-img \
3197a5ca864Sbellard	$(bindir)/qemu-nbd \
3207efa4387Sbellard	$(datadir)/bios.bin \
3217efa4387Sbellard	$(datadir)/vgabios.bin \
322de9258a8Sbellard	$(datadir)/vgabios-cirrus.bin \
323637f6cd7Sbellard	$(datadir)/ppc_rom.bin \
324d5295253Sbellard	$(datadir)/video.x \
3250986ac3bSbellard	$(datadir)/openbios-sparc32 \
326938255d2Sblueswir1	$(datadir)/openbios-sparc64 \
327e5d01b06Saurel32	$(datadir)/openbios-ppc \
32819c80e50Sbellard	$(datadir)/pxe-ne2k_pci.bin \
32919c80e50Sbellard	$(datadir)/pxe-rtl8139.bin \
33019c80e50Sbellard	$(datadir)/pxe-pcnet.bin \
3312991990bSaliguori	$(datadir)/pxe-e1000.bin \
3321f50f8d1Sbellard	$(docdir)/qemu-doc.html \
3331f50f8d1Sbellard	$(docdir)/qemu-tech.html \
33440e8a53bSaurel32	$(mandir)/man1/qemu.1 \
33540e8a53bSaurel32	$(mandir)/man1/qemu-img.1 \
3367a5ca864Sbellard	$(mandir)/man8/qemu-nbd.8
337d691f669Sbellard
3384fb240a4Sbellard# Include automatically generated dependency files
339e1144d00SMark McLoughlin-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d)
340