pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 1 | # Makefile for QEMU. |
| 2 | |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 3 | include config-host.mak |
bellard | 766a487 | 2003-02-18 23:35:48 +0000 | [diff] [blame] | 4 | |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 5 | .PHONY: all clean distclean dvi info install install-doc tar tarbin \ |
bellard | 9b0b820 | 2007-11-14 10:34:57 +0000 | [diff] [blame] | 6 | speed test html dvi info |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 7 | |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 8 | BASE_CFLAGS= |
| 9 | BASE_LDFLAGS= |
| 10 | |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 11 | BASE_CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS) |
| 12 | BASE_LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS) |
| 13 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 14 | CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP |
| 15 | CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
bellard | 766a487 | 2003-02-18 23:35:48 +0000 | [diff] [blame] | 16 | LIBS= |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 17 | ifdef CONFIG_STATIC |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 18 | BASE_LDFLAGS += -static |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 19 | endif |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 20 | ifdef BUILD_DOCS |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 21 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 22 | else |
| 23 | DOCS= |
| 24 | endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 25 | |
ths | 70956b7 | 2007-03-17 15:00:37 +0000 | [diff] [blame] | 26 | LIBS+=$(AIOLIBS) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 27 | |
pbrook | da0b0df | 2007-11-10 19:30:52 +0000 | [diff] [blame] | 28 | all: $(TOOLS) $(DOCS) recurse-all |
pbrook | b9dea4f | 2006-05-13 16:54:03 +0000 | [diff] [blame] | 29 | |
pbrook | da0b0df | 2007-11-10 19:30:52 +0000 | [diff] [blame] | 30 | subdir-%: dyngen$(EXESUF) libqemu_common.a |
pbrook | 4aa4253 | 2006-05-13 13:55:08 +0000 | [diff] [blame] | 31 | $(MAKE) -C $(subst subdir-,,$@) all |
| 32 | |
| 33 | recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS)) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 34 | |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 35 | ####################################################################### |
| 36 | # BLOCK_OBJS is code used by both qemu system emulation and qemu-img |
| 37 | |
| 38 | BLOCK_OBJS=cutils.o |
| 39 | BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o |
| 40 | BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o |
| 41 | BLOCK_OBJS+=block-qcow2.o block-parallels.o |
| 42 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 43 | ###################################################################### |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 44 | # libqemu_common.a: Target indepedent part of system emulation. The |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 45 | # long term path is to suppress *all* target specific code in case of |
| 46 | # system emulation, i.e. a single QEMU executable should support all |
| 47 | # CPUs and machines. |
bellard | 47cea61 | 2004-05-17 20:06:42 +0000 | [diff] [blame] | 48 | |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 49 | OBJS=$(BLOCK_OBJS) |
| 50 | OBJS+=readline.o console.o |
| 51 | OBJS+=block.o |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 52 | |
| 53 | ifdef CONFIG_WIN32 |
| 54 | OBJS+=tap-win32.o |
| 55 | endif |
| 56 | |
| 57 | AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o |
| 58 | ifdef CONFIG_SDL |
| 59 | AUDIO_OBJS += sdlaudio.o |
| 60 | endif |
| 61 | ifdef CONFIG_OSS |
| 62 | AUDIO_OBJS += ossaudio.o |
| 63 | endif |
| 64 | ifdef CONFIG_COREAUDIO |
| 65 | AUDIO_OBJS += coreaudio.o |
| 66 | endif |
| 67 | ifdef CONFIG_ALSA |
| 68 | AUDIO_OBJS += alsaaudio.o |
| 69 | endif |
| 70 | ifdef CONFIG_DSOUND |
| 71 | AUDIO_OBJS += dsoundaudio.o |
| 72 | endif |
| 73 | ifdef CONFIG_FMOD |
| 74 | AUDIO_OBJS += fmodaudio.o |
| 75 | audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS) |
| 76 | endif |
| 77 | AUDIO_OBJS+= wavcapture.o |
| 78 | OBJS+=$(addprefix audio/, $(AUDIO_OBJS)) |
| 79 | |
| 80 | ifdef CONFIG_SDL |
| 81 | OBJS+=sdl.o x_keymap.o |
| 82 | endif |
| 83 | OBJS+=vnc.o d3des.o |
| 84 | |
| 85 | ifdef CONFIG_COCOA |
| 86 | OBJS+=cocoa.o |
| 87 | endif |
| 88 | |
| 89 | ifdef CONFIG_SLIRP |
| 90 | CPPFLAGS+=-I$(SRC_PATH)/slirp |
| 91 | SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \ |
| 92 | slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \ |
| 93 | tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o |
| 94 | OBJS+=$(addprefix slirp/, $(SLIRP_OBJS)) |
| 95 | endif |
| 96 | |
| 97 | cocoa.o: cocoa.m |
| 98 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
| 99 | |
| 100 | sdl.o: sdl.c keymaps.c sdl_keysym.h |
| 101 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
| 102 | |
| 103 | vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h |
| 104 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
| 105 | |
| 106 | audio/sdlaudio.o: audio/sdlaudio.c |
| 107 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
| 108 | |
| 109 | libqemu_common.a: $(OBJS) |
| 110 | rm -f $@ |
| 111 | $(AR) rcs $@ $(OBJS) |
| 112 | |
| 113 | ###################################################################### |
| 114 | |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 115 | qemu-img$(EXESUF): qemu-img.o qemu-img-block.o qemu-img-block-raw.o $(BLOCK_OBJS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 116 | $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ -lz $(LIBS) |
| 117 | |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 118 | qemu-img-%.o: %.c |
| 119 | $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG $(BASE_CFLAGS) -c -o $@ $< |
| 120 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 121 | %.o: %.c |
| 122 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
| 123 | |
| 124 | # dyngen host tool |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 125 | dyngen$(EXESUF): dyngen.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 126 | $(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 127 | |
| 128 | clean: |
bellard | 2d80ae8 | 2003-08-11 23:01:33 +0000 | [diff] [blame] | 129 | # avoid old build problems by removing potentially incorrect old files |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 130 | 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 |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 131 | rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~ |
| 132 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 133 | $(MAKE) -C tests clean |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 134 | for d in $(TARGET_DIRS); do \ |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 135 | $(MAKE) -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 136 | done |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 137 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 138 | distclean: clean |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 139 | rm -f config-host.mak config-host.h $(DOCS) |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 140 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
bellard | 76bc683 | 2003-08-10 23:41:46 +0000 | [diff] [blame] | 141 | for d in $(TARGET_DIRS); do \ |
bellard | bc1b050 | 2003-10-28 00:12:52 +0000 | [diff] [blame] | 142 | rm -rf $$d || exit 1 ; \ |
bellard | 76bc683 | 2003-08-10 23:41:46 +0000 | [diff] [blame] | 143 | done |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 144 | |
bellard | fed4a9a | 2004-12-12 22:18:34 +0000 | [diff] [blame] | 145 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
| 146 | ar de en-us fi fr-be hr it lv nl pl ru th \ |
| 147 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr |
| 148 | |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 149 | install-doc: $(DOCS) |
| 150 | mkdir -p "$(DESTDIR)$(docdir)" |
| 151 | $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" |
| 152 | ifndef CONFIG_WIN32 |
| 153 | mkdir -p "$(DESTDIR)$(mandir)/man1" |
| 154 | $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" |
| 155 | endif |
| 156 | |
| 157 | install: all $(if $(BUILD_DOCS),install-doc) |
pbrook | 1236cab | 2006-04-09 20:47:35 +0000 | [diff] [blame] | 158 | mkdir -p "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 159 | ifneq ($(TOOLS),) |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 160 | $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 161 | endif |
pbrook | 1236cab | 2006-04-09 20:47:35 +0000 | [diff] [blame] | 162 | mkdir -p "$(DESTDIR)$(datadir)" |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 163 | for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ |
ths | 860c6c5 | 2007-05-20 10:54:50 +0000 | [diff] [blame] | 164 | video.x openbios-sparc32 pxe-ne2k_pci.bin \ |
ths | eec85c2 | 2007-01-05 17:41:07 +0000 | [diff] [blame] | 165 | pxe-rtl8139.bin pxe-pcnet.bin; do \ |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 166 | $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 167 | done |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 168 | ifndef CONFIG_WIN32 |
pbrook | 1236cab | 2006-04-09 20:47:35 +0000 | [diff] [blame] | 169 | mkdir -p "$(DESTDIR)$(datadir)/keymaps" |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 170 | for x in $(KEYMAPS); do \ |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 171 | $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 172 | done |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 173 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 174 | for d in $(TARGET_DIRS); do \ |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 175 | $(MAKE) -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 176 | done |
bellard | 612384d | 2003-03-22 17:31:19 +0000 | [diff] [blame] | 177 | |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 178 | # various test targets |
bellard | 9b0b820 | 2007-11-14 10:34:57 +0000 | [diff] [blame] | 179 | test speed: all |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 180 | $(MAKE) -C tests $@ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 181 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 182 | TAGS: |
bellard | b9adb4a | 2003-04-29 20:41:16 +0000 | [diff] [blame] | 183 | etags *.[ch] tests/*.[ch] |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 184 | |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 185 | cscope: |
| 186 | rm -f ./cscope.* |
| 187 | find . -name "*.[ch]" -print > ./cscope.files |
| 188 | cscope -b |
| 189 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 190 | # documentation |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 191 | %.html: %.texi |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 192 | texi2html -monolithic -number $< |
| 193 | |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 194 | %.info: %.texi |
| 195 | makeinfo $< -o $@ |
| 196 | |
| 197 | %.dvi: %.texi |
| 198 | texi2dvi $< |
| 199 | |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 200 | qemu.1: qemu-doc.texi |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 201 | $(SRC_PATH)/texi2pod.pl $< qemu.pod |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 202 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@ |
| 203 | |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 204 | qemu-img.1: qemu-img.texi |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 205 | $(SRC_PATH)/texi2pod.pl $< qemu-img.pod |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 206 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@ |
| 207 | |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 208 | info: qemu-doc.info qemu-tech.info |
| 209 | |
| 210 | dvi: qemu-doc.dvi qemu-tech.dvi |
| 211 | |
| 212 | html: qemu-doc.html qemu-tech.html |
| 213 | |
ths | df5cf72 | 2007-01-24 22:56:36 +0000 | [diff] [blame] | 214 | VERSION ?= $(shell cat VERSION) |
| 215 | FILE = qemu-$(VERSION) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 216 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 217 | # tar release (use 'make -k tar' on a checkouted tree) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 218 | tar: |
| 219 | rm -rf /tmp/$(FILE) |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 220 | cp -r . /tmp/$(FILE) |
bellard | 76b62fd | 2003-10-28 00:47:44 +0000 | [diff] [blame] | 221 | ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS ) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 222 | rm -rf /tmp/$(FILE) |
| 223 | |
bellard | 76b62fd | 2003-10-28 00:47:44 +0000 | [diff] [blame] | 224 | # generate a binary distribution |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 225 | tarbin: |
ths | 4887d78 | 2007-09-29 21:22:33 +0000 | [diff] [blame] | 226 | ( cd / ; tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 227 | $(bindir)/qemu \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 228 | $(bindir)/qemu-system-ppc \ |
j_mayer | d4082e9 | 2007-04-24 07:34:03 +0000 | [diff] [blame] | 229 | $(bindir)/qemu-system-ppc64 \ |
| 230 | $(bindir)/qemu-system-ppcemb \ |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 231 | $(bindir)/qemu-system-sparc \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 232 | $(bindir)/qemu-system-x86_64 \ |
bellard | 93856aa | 2005-07-24 18:44:35 +0000 | [diff] [blame] | 233 | $(bindir)/qemu-system-mips \ |
pbrook | 3826099 | 2006-03-11 14:51:13 +0000 | [diff] [blame] | 234 | $(bindir)/qemu-system-mipsel \ |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 235 | $(bindir)/qemu-system-mips64 \ |
| 236 | $(bindir)/qemu-system-mips64el \ |
bellard | ea31eb5 | 2005-12-06 21:42:03 +0000 | [diff] [blame] | 237 | $(bindir)/qemu-system-arm \ |
ths | ff1aaf6 | 2007-09-29 21:18:26 +0000 | [diff] [blame] | 238 | $(bindir)/qemu-system-m68k \ |
| 239 | $(bindir)/qemu-system-sh4 \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 240 | $(bindir)/qemu-i386 \ |
| 241 | $(bindir)/qemu-arm \ |
bellard | ea31eb5 | 2005-12-06 21:42:03 +0000 | [diff] [blame] | 242 | $(bindir)/qemu-armeb \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 243 | $(bindir)/qemu-sparc \ |
| 244 | $(bindir)/qemu-ppc \ |
j_mayer | d4082e9 | 2007-04-24 07:34:03 +0000 | [diff] [blame] | 245 | $(bindir)/qemu-ppc64 \ |
bellard | ea31eb5 | 2005-12-06 21:42:03 +0000 | [diff] [blame] | 246 | $(bindir)/qemu-mips \ |
| 247 | $(bindir)/qemu-mipsel \ |
ths | 540635b | 2007-09-30 01:58:33 +0000 | [diff] [blame] | 248 | $(bindir)/qemu-mipsn32 \ |
| 249 | $(bindir)/qemu-mipsn32el \ |
| 250 | $(bindir)/qemu-mips64 \ |
| 251 | $(bindir)/qemu-mips64el \ |
j_mayer | cf6c1b1 | 2007-04-05 20:46:02 +0000 | [diff] [blame] | 252 | $(bindir)/qemu-alpha \ |
ths | ff1aaf6 | 2007-09-29 21:18:26 +0000 | [diff] [blame] | 253 | $(bindir)/qemu-m68k \ |
| 254 | $(bindir)/qemu-sh4 \ |
bellard | b932cab | 2004-08-01 21:46:49 +0000 | [diff] [blame] | 255 | $(bindir)/qemu-img \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 256 | $(datadir)/bios.bin \ |
| 257 | $(datadir)/vgabios.bin \ |
bellard | de9258a | 2004-06-06 15:50:03 +0000 | [diff] [blame] | 258 | $(datadir)/vgabios-cirrus.bin \ |
bellard | 637f6cd | 2004-06-21 19:54:47 +0000 | [diff] [blame] | 259 | $(datadir)/ppc_rom.bin \ |
bellard | d529525 | 2005-07-03 14:00:51 +0000 | [diff] [blame] | 260 | $(datadir)/video.x \ |
bellard | 0986ac3 | 2006-06-14 12:36:32 +0000 | [diff] [blame] | 261 | $(datadir)/openbios-sparc32 \ |
bellard | 19c80e5 | 2007-02-05 21:22:42 +0000 | [diff] [blame] | 262 | $(datadir)/pxe-ne2k_pci.bin \ |
| 263 | $(datadir)/pxe-rtl8139.bin \ |
| 264 | $(datadir)/pxe-pcnet.bin \ |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 265 | $(docdir)/qemu-doc.html \ |
| 266 | $(docdir)/qemu-tech.html \ |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 267 | $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 ) |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 268 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 269 | ifneq ($(wildcard .depend),) |
| 270 | include .depend |
| 271 | endif |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 272 | |
| 273 | # Include automatically generated dependency files |
| 274 | -include $(wildcard *.d audio/*.d slirp/*.d) |