pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 1 | # Makefile for QEMU. |
| 2 | |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 3 | GENERATED_HEADERS = config-host.h |
Juan Quintela | f527c57 | 2009-11-05 17:19:57 +0100 | [diff] [blame] | 4 | |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 5 | ifneq ($(wildcard config-host.mak),) |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 6 | # Put the all: rule here so that config-host.mak can contain dependencies. |
| 7 | all: build-all |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 8 | include config-host.mak |
aliguori | 1775918 | 2009-01-21 18:12:52 +0000 | [diff] [blame] | 9 | include $(SRC_PATH)/rules.mak |
Paolo Bonzini | 59bc10e | 2010-01-04 11:02:28 +0100 | [diff] [blame] | 10 | config-host.mak: $(SRC_PATH)/configure |
Juan Quintela | e5efe7f | 2009-10-07 02:40:59 +0200 | [diff] [blame] | 11 | @echo $@ is out-of-date, running configure |
| 12 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 13 | else |
| 14 | config-host.mak: |
| 15 | @echo "Please call configure before running make!" |
| 16 | @exit 1 |
| 17 | endif |
bellard | 766a487 | 2003-02-18 23:35:48 +0000 | [diff] [blame] | 18 | |
Juan Quintela | d9ace8b | 2009-10-06 21:11:15 +0200 | [diff] [blame] | 19 | # Don't try to regenerate Makefile or configure |
| 20 | # We don't generate any of them |
| 21 | Makefile: ; |
| 22 | configure: ; |
| 23 | |
aliguori | 818220f | 2008-09-24 01:13:40 +0000 | [diff] [blame] | 24 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 25 | pdf recurse-all speed tar tarbin test build-all |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 26 | |
Paolo Bonzini | 076d247 | 2009-12-21 10:06:55 +0100 | [diff] [blame] | 27 | $(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw) |
pbrook | 8c462f8 | 2007-11-18 21:12:37 +0000 | [diff] [blame] | 28 | |
Juan Quintela | 3e2e0e6 | 2009-08-03 14:47:06 +0200 | [diff] [blame] | 29 | LIBS+=-lz $(LIBS_TOOLS) |
Juan Quintela | 67c0f08 | 2009-07-27 16:12:51 +0200 | [diff] [blame] | 30 | |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 31 | ifdef BUILD_DOCS |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 32 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 33 | else |
| 34 | DOCS= |
| 35 | endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 36 | |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 37 | SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) |
Juan Quintela | 1f3d3c8 | 2009-10-07 02:41:02 +0200 | [diff] [blame] | 38 | SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) |
| 39 | |
| 40 | config-all-devices.mak: $(SUBDIR_DEVICES_MAK) |
Stefan Weil | 01d86a8 | 2009-11-19 20:19:56 +0100 | [diff] [blame] | 41 | $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@") |
Juan Quintela | 1f3d3c8 | 2009-10-07 02:41:02 +0200 | [diff] [blame] | 42 | |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 43 | %/config-devices.mak: default-configs/%.mak |
| 44 | $(call quiet-command,cat $< > $@.tmp, " GEN $@") |
Stefan Weil | 012f087 | 2009-12-20 15:39:03 +0100 | [diff] [blame] | 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; \ |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 58 | else \ |
Stefan Weil | 012f087 | 2009-12-20 15:39:03 +0100 | [diff] [blame] | 59 | mv $@.tmp $@; \ |
| 60 | cp -p $@ $@.old; \ |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 61 | fi |
| 62 | |
| 63 | defconfig: |
| 64 | rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) |
| 65 | |
Juan Quintela | 1f3d3c8 | 2009-10-07 02:41:02 +0200 | [diff] [blame] | 66 | -include config-all-devices.mak |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 67 | |
Juan Quintela | f527c57 | 2009-11-05 17:19:57 +0100 | [diff] [blame] | 68 | build-all: $(DOCS) $(TOOLS) recurse-all |
pbrook | b9dea4f | 2006-05-13 16:54:03 +0000 | [diff] [blame] | 69 | |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 70 | config-host.h: config-host.h-timestamp |
| 71 | config-host.h-timestamp: config-host.mak |
| 72 | |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 73 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
| 74 | |
Juan Quintela | f527c57 | 2009-11-05 17:19:57 +0100 | [diff] [blame] | 75 | subdir-%: $(GENERATED_HEADERS) |
Paul Brook | 0087375 | 2009-05-07 02:00:31 +0100 | [diff] [blame] | 76 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
pbrook | 4aa4253 | 2006-05-13 13:55:08 +0000 | [diff] [blame] | 77 | |
Stefan Weil | b88bc80 | 2010-01-14 18:11:43 +0100 | [diff] [blame] | 78 | ifneq ($(wildcard config-host.mak),) |
Andreas Färber | 0e8c921 | 2010-01-06 20:24:05 +0100 | [diff] [blame] | 79 | include $(SRC_PATH)/Makefile.objs |
Stefan Weil | b88bc80 | 2010-01-14 18:11:43 +0100 | [diff] [blame] | 80 | endif |
Andreas Färber | 0e8c921 | 2010-01-06 20:24:05 +0100 | [diff] [blame] | 81 | |
| 82 | $(common-obj-y): $(GENERATED_HEADERS) |
Blue Swirl | 4d90453 | 2010-03-21 08:28:47 +0000 | [diff] [blame] | 83 | $(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y) subdir-libdis |
Paul Brook | c05ac89 | 2009-07-31 13:18:32 +0100 | [diff] [blame] | 84 | |
Blue Swirl | 4d90453 | 2010-03-21 08:28:47 +0000 | [diff] [blame] | 85 | $(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) subdir-libdis-user subdir-libuser |
Blue Swirl | add1615 | 2009-09-27 16:26:02 +0000 | [diff] [blame] | 86 | |
Paul Brook | c05ac89 | 2009-07-31 13:18:32 +0100 | [diff] [blame] | 87 | ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) |
| 88 | romsubdir-%: |
| 89 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",) |
| 90 | |
| 91 | ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) |
| 92 | |
| 93 | recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 94 | |
Juan Quintela | 98b068a | 2009-08-03 14:46:57 +0200 | [diff] [blame] | 95 | audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS) |
Juan Quintela | 0e22fd2 | 2009-06-25 00:08:09 +0200 | [diff] [blame] | 96 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 97 | QEMU_CFLAGS+=$(CURL_CFLAGS) |
Alexander Graf | 769ce76 | 2009-05-11 17:41:42 +0200 | [diff] [blame] | 98 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 99 | cocoa.o: cocoa.m |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 100 | |
aliguori | 0483755 | 2009-03-06 20:27:10 +0000 | [diff] [blame] | 101 | keymaps.o: keymaps.c keymaps.h |
| 102 | |
Stefano Stabellini | c18a2c3 | 2009-06-24 11:58:25 +0100 | [diff] [blame] | 103 | sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h |
| 104 | |
| 105 | sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 106 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 107 | sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 108 | |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 109 | acl.o: acl.h acl.c |
| 110 | |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 111 | vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h |
aliguori | 5fb6c7a | 2009-03-06 20:27:23 +0000 | [diff] [blame] | 112 | |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 113 | vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 114 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 115 | vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 116 | |
aliguori | 5fb6c7a | 2009-03-06 20:27:23 +0000 | [diff] [blame] | 117 | vnc-tls.o: vnc-tls.c vnc.h |
| 118 | |
| 119 | vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h |
| 120 | |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 121 | vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h |
| 122 | |
aliguori | 0483755 | 2009-03-06 20:27:10 +0000 | [diff] [blame] | 123 | curses.o: curses.c keymaps.h curses_keys.h |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 124 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 125 | bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 126 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 127 | ###################################################################### |
| 128 | |
Juan Quintela | 3c089e1 | 2010-01-20 20:54:18 +0100 | [diff] [blame] | 129 | qemu-img.o: qemu-img-cmds.h |
| 130 | qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o: $(GENERATED_HEADERS) |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 131 | |
Juan Quintela | 3c089e1 | 2010-01-20 20:54:18 +0100 | [diff] [blame] | 132 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 133 | |
Juan Quintela | 3c089e1 | 2010-01-20 20:54:18 +0100 | [diff] [blame] | 134 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y) |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 135 | |
Juan Quintela | 3c089e1 | 2010-01-20 20:54:18 +0100 | [diff] [blame] | 136 | qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y) |
aliguori | 0a8e1ac | 2009-04-05 18:41:23 +0000 | [diff] [blame] | 137 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 138 | qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx |
| 139 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@") |
| 140 | |
Luiz Capitulino | 33837ba | 2009-08-28 15:27:29 -0300 | [diff] [blame] | 141 | check-qint: check-qint.o qint.o qemu-malloc.o |
Luiz Capitulino | 5de65a0 | 2009-08-28 15:27:30 -0300 | [diff] [blame] | 142 | check-qstring: check-qstring.o qstring.o qemu-malloc.o |
Markus Armbruster | acc3b03 | 2010-01-27 17:16:38 +0100 | [diff] [blame] | 143 | check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o |
Luiz Capitulino | 3aa3dcf | 2009-10-07 13:41:49 -0300 | [diff] [blame] | 144 | check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o |
Anthony Liguori | 9c9efb6 | 2009-11-11 10:36:51 -0600 | [diff] [blame] | 145 | check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o |
Anthony Liguori | 422c46a | 2009-11-11 10:39:47 -0600 | [diff] [blame] | 146 | 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 |
Luiz Capitulino | 33837ba | 2009-08-28 15:27:29 -0300 | [diff] [blame] | 147 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 148 | clean: |
bellard | 2d80ae8 | 2003-08-11 23:01:33 +0000 | [diff] [blame] | 149 | # avoid old build problems by removing potentially incorrect old files |
Juan Quintela | 25be210f | 2009-10-07 02:41:00 +0200 | [diff] [blame] | 150 | rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h |
aurel32 | 86e840e | 2008-12-07 15:21:23 +0000 | [diff] [blame] | 151 | rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ |
Mark McLoughlin | e1144d0 | 2009-10-23 17:52:16 +0100 | [diff] [blame] | 152 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d |
Blue Swirl | 07b44ce | 2009-06-09 18:45:16 +0000 | [diff] [blame] | 153 | rm -f qemu-img-cmds.h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 154 | $(MAKE) -C tests clean |
Blue Swirl | 4d90453 | 2010-03-21 08:28:47 +0000 | [diff] [blame] | 155 | for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser libdis libdis-user; do \ |
Magnus Damm | fc8e320 | 2009-11-13 18:51:05 +0900 | [diff] [blame] | 156 | if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 157 | done |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 158 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 159 | distclean: clean |
Magnus Damm | fc8e320 | 2009-11-13 18:51:05 +0900 | [diff] [blame] | 160 | rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 161 | rm -f config-all-devices.mak |
Magnus Damm | fc8e320 | 2009-11-13 18:51:05 +0900 | [diff] [blame] | 162 | rm -f roms/seabios/config.mak roms/vgabios/config.mak |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 163 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pdf,pg,toc,tp,vr} |
Blue Swirl | 4d90453 | 2010-03-21 08:28:47 +0000 | [diff] [blame] | 164 | for d in $(TARGET_DIRS) libhw32 libhw64 libuser libdis libdis-user; do \ |
bellard | bc1b050 | 2003-10-28 00:12:52 +0000 | [diff] [blame] | 165 | rm -rf $$d || exit 1 ; \ |
bellard | 76bc683 | 2003-08-10 23:41:46 +0000 | [diff] [blame] | 166 | done |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 167 | |
bellard | fed4a9a | 2004-12-12 22:18:34 +0000 | [diff] [blame] | 168 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
| 169 | ar de en-us fi fr-be hr it lv nl pl ru th \ |
| 170 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr |
| 171 | |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 172 | ifdef INSTALL_BLOBS |
| 173 | BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ |
aurel32 | e5d01b0 | 2009-01-09 11:01:31 +0000 | [diff] [blame] | 174 | video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ |
Stefan Weil | 5309e5f | 2010-03-04 14:44:41 -0600 | [diff] [blame] | 175 | gpxe-eepro100-80861209.rom \ |
| 176 | gpxe-eepro100-80861229.rom \ |
| 177 | pxe-e1000.bin \ |
Stefan Weil | 88e2b0a | 2009-11-02 19:59:06 +0100 | [diff] [blame] | 178 | pxe-ne2k_pci.bin pxe-pcnet.bin \ |
| 179 | pxe-rtl8139.bin pxe-virtio.bin \ |
Alexander Graf | 253d094 | 2009-06-29 15:37:40 +0200 | [diff] [blame] | 180 | bamboo.dtb petalogix-s3adsp1800.dtb \ |
Alexander Graf | cfc6d90 | 2009-11-12 21:53:15 +0100 | [diff] [blame] | 181 | multiboot.bin linuxboot.bin |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 182 | else |
| 183 | BLOBS= |
| 184 | endif |
| 185 | |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 186 | install-doc: $(DOCS) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 187 | $(INSTALL_DIR) "$(DESTDIR)$(docdir)" |
| 188 | $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" |
Juan Quintela | 96d409e | 2009-08-03 14:47:00 +0200 | [diff] [blame] | 189 | ifdef CONFIG_POSIX |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 190 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
| 191 | $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" |
| 192 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" |
| 193 | $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 194 | endif |
| 195 | |
john cooper | b5ec5ce | 2010-02-20 11:14:59 -0600 | [diff] [blame] | 196 | install-sysconfig: |
Andre Przywara | 990caaf | 2010-03-08 15:43:41 +0100 | [diff] [blame] | 197 | $(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu" |
| 198 | $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu" |
john cooper | b5ec5ce | 2010-02-20 11:14:59 -0600 | [diff] [blame] | 199 | |
| 200 | install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 201 | $(INSTALL_DIR) "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 202 | ifneq ($(TOOLS),) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 203 | $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 204 | endif |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 205 | ifneq ($(BLOBS),) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 206 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 207 | set -e; for x in $(BLOBS); do \ |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 208 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 209 | done |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 210 | endif |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 211 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps" |
blueswir1 | 18be8d7 | 2008-03-05 18:16:09 +0000 | [diff] [blame] | 212 | set -e; for x in $(KEYMAPS); do \ |
Anthony Liguori | 79fd42a | 2009-05-28 03:11:42 -0500 | [diff] [blame] | 213 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 214 | done |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 215 | for d in $(TARGET_DIRS); do \ |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 216 | $(MAKE) -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 217 | done |
bellard | 612384d | 2003-03-22 17:31:19 +0000 | [diff] [blame] | 218 | |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 219 | # various test targets |
bellard | 9b0b820 | 2007-11-14 10:34:57 +0000 | [diff] [blame] | 220 | test speed: all |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 221 | $(MAKE) -C tests $@ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 222 | |
Alexandre Bique | 21d4e8e | 2009-08-07 15:43:11 +0100 | [diff] [blame] | 223 | .PHONY: TAGS |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 224 | TAGS: |
Alexandre Bique | 21d4e8e | 2009-08-07 15:43:11 +0100 | [diff] [blame] | 225 | find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 226 | |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 227 | cscope: |
| 228 | rm -f ./cscope.* |
aurel32 | ede4608 | 2008-10-01 21:46:58 +0000 | [diff] [blame] | 229 | find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 230 | cscope -b |
| 231 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 232 | # documentation |
Stefan Weil | 01668d9 | 2010-03-04 22:21:02 +0100 | [diff] [blame] | 233 | MAKEINFO=makeinfo |
| 234 | MAKEINFOFLAGS=--no-headers --no-split --number-sections |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 235 | TEXIFLAG=$(if $(V),,--quiet) |
| 236 | %.dvi: %.texi |
| 237 | $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@") |
| 238 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 239 | %.html: %.texi |
Stefan Weil | 01668d9 | 2010-03-04 22:21:02 +0100 | [diff] [blame] | 240 | $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \ |
| 241 | " GEN $@") |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 242 | |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 243 | %.info: %.texi |
Stefan Weil | 01668d9 | 2010-03-04 22:21:02 +0100 | [diff] [blame] | 244 | $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 245 | |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 246 | %.pdf: %.texi |
| 247 | $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@") |
blueswir1 | 5824d65 | 2009-03-28 06:44:27 +0000 | [diff] [blame] | 248 | |
| 249 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 250 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 251 | |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 252 | qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx |
| 253 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
| 254 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 255 | qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx |
| 256 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
| 257 | |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 258 | qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 259 | $(call quiet-command, \ |
| 260 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ |
| 261 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ |
| 262 | " GEN $@") |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 263 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 264 | qemu-img.1: qemu-img.texi qemu-img-cmds.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 265 | $(call quiet-command, \ |
| 266 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ |
| 267 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ |
| 268 | " GEN $@") |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 269 | |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 270 | qemu-nbd.8: qemu-nbd.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 271 | $(call quiet-command, \ |
| 272 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ |
| 273 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ |
| 274 | " GEN $@") |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 275 | |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 276 | dvi: qemu-doc.dvi qemu-tech.dvi |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 277 | html: qemu-doc.html qemu-tech.html |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 278 | info: qemu-doc.info qemu-tech.info |
| 279 | pdf: qemu-doc.pdf qemu-tech.pdf |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 280 | |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 281 | qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \ |
| 282 | qemu-img.texi qemu-nbd.texi qemu-options.texi \ |
| 283 | qemu-monitor.texi qemu-img-cmds.texi |
aliguori | 818220f | 2008-09-24 01:13:40 +0000 | [diff] [blame] | 284 | |
ths | df5cf72 | 2007-01-24 22:56:36 +0000 | [diff] [blame] | 285 | VERSION ?= $(shell cat VERSION) |
| 286 | FILE = qemu-$(VERSION) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 287 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 288 | # tar release (use 'make -k tar' on a checkouted tree) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 289 | tar: |
| 290 | rm -rf /tmp/$(FILE) |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 291 | cp -r . /tmp/$(FILE) |
aurel32 | 99c6c08 | 2008-04-22 20:45:30 +0000 | [diff] [blame] | 292 | cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 293 | rm -rf /tmp/$(FILE) |
| 294 | |
bellard | 76b62fd | 2003-10-28 00:47:44 +0000 | [diff] [blame] | 295 | # generate a binary distribution |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 296 | tarbin: |
blueswir1 | 18be8d7 | 2008-03-05 18:16:09 +0000 | [diff] [blame] | 297 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 298 | $(bindir)/qemu \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 299 | $(bindir)/qemu-system-x86_64 \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 300 | $(bindir)/qemu-system-arm \ |
| 301 | $(bindir)/qemu-system-cris \ |
| 302 | $(bindir)/qemu-system-m68k \ |
Edgar E. Iglesias | bc6291a | 2009-10-01 15:18:36 +0200 | [diff] [blame] | 303 | $(bindir)/qemu-system-microblaze \ |
bellard | 93856aa | 2005-07-24 18:44:35 +0000 | [diff] [blame] | 304 | $(bindir)/qemu-system-mips \ |
pbrook | 3826099 | 2006-03-11 14:51:13 +0000 | [diff] [blame] | 305 | $(bindir)/qemu-system-mipsel \ |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 306 | $(bindir)/qemu-system-mips64 \ |
| 307 | $(bindir)/qemu-system-mips64el \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 308 | $(bindir)/qemu-system-ppc \ |
| 309 | $(bindir)/qemu-system-ppcemb \ |
| 310 | $(bindir)/qemu-system-ppc64 \ |
ths | ff1aaf6 | 2007-09-29 21:18:26 +0000 | [diff] [blame] | 311 | $(bindir)/qemu-system-sh4 \ |
ths | 85ffbdf | 2007-12-09 05:10:03 +0000 | [diff] [blame] | 312 | $(bindir)/qemu-system-sh4eb \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 313 | $(bindir)/qemu-system-sparc \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 314 | $(bindir)/qemu-i386 \ |
bellard | f0403c0 | 2008-01-06 18:27:12 +0000 | [diff] [blame] | 315 | $(bindir)/qemu-x86_64 \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 316 | $(bindir)/qemu-alpha \ |
| 317 | $(bindir)/qemu-arm \ |
| 318 | $(bindir)/qemu-armeb \ |
| 319 | $(bindir)/qemu-cris \ |
| 320 | $(bindir)/qemu-m68k \ |
Edgar E. Iglesias | bc6291a | 2009-10-01 15:18:36 +0200 | [diff] [blame] | 321 | $(bindir)/qemu-microblaze \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 322 | $(bindir)/qemu-mips \ |
| 323 | $(bindir)/qemu-mipsel \ |
| 324 | $(bindir)/qemu-ppc \ |
| 325 | $(bindir)/qemu-ppc64 \ |
| 326 | $(bindir)/qemu-ppc64abi32 \ |
| 327 | $(bindir)/qemu-sh4 \ |
| 328 | $(bindir)/qemu-sh4eb \ |
| 329 | $(bindir)/qemu-sparc \ |
| 330 | $(bindir)/qemu-sparc64 \ |
| 331 | $(bindir)/qemu-sparc32plus \ |
| 332 | $(bindir)/qemu-img \ |
| 333 | $(bindir)/qemu-nbd \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 334 | $(datadir)/bios.bin \ |
| 335 | $(datadir)/vgabios.bin \ |
bellard | de9258a | 2004-06-06 15:50:03 +0000 | [diff] [blame] | 336 | $(datadir)/vgabios-cirrus.bin \ |
bellard | 637f6cd | 2004-06-21 19:54:47 +0000 | [diff] [blame] | 337 | $(datadir)/ppc_rom.bin \ |
bellard | d529525 | 2005-07-03 14:00:51 +0000 | [diff] [blame] | 338 | $(datadir)/video.x \ |
bellard | 0986ac3 | 2006-06-14 12:36:32 +0000 | [diff] [blame] | 339 | $(datadir)/openbios-sparc32 \ |
blueswir1 | 938255d | 2008-04-23 19:38:07 +0000 | [diff] [blame] | 340 | $(datadir)/openbios-sparc64 \ |
aurel32 | e5d01b0 | 2009-01-09 11:01:31 +0000 | [diff] [blame] | 341 | $(datadir)/openbios-ppc \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 342 | $(datadir)/pxe-ne2k_pci.bin \ |
bellard | 19c80e5 | 2007-02-05 21:22:42 +0000 | [diff] [blame] | 343 | $(datadir)/pxe-rtl8139.bin \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 344 | $(datadir)/pxe-pcnet.bin \ |
aliguori | 2991990 | 2008-07-26 16:53:22 +0000 | [diff] [blame] | 345 | $(datadir)/pxe-e1000.bin \ |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 346 | $(docdir)/qemu-doc.html \ |
| 347 | $(docdir)/qemu-tech.html \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 348 | $(mandir)/man1/qemu.1 \ |
| 349 | $(mandir)/man1/qemu-img.1 \ |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 350 | $(mandir)/man8/qemu-nbd.8 |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 351 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 352 | # Include automatically generated dependency files |
Mark McLoughlin | e1144d0 | 2009-10-23 17:52:16 +0100 | [diff] [blame] | 353 | -include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d) |