bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 1 | include config.mak |
aliguori | 1775918 | 2009-01-21 18:12:52 +0000 | [diff] [blame] | 2 | include $(SRC_PATH)/rules.mak |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 3 | |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 4 | TARGET_BASE_ARCH:=$(TARGET_ARCH) |
| 5 | ifeq ($(TARGET_ARCH), x86_64) |
| 6 | TARGET_BASE_ARCH:=i386 |
| 7 | endif |
ths | 540635b | 2007-09-30 01:58:33 +0000 | [diff] [blame] | 8 | ifeq ($(TARGET_ARCH), mipsn32) |
| 9 | TARGET_BASE_ARCH:=mips |
| 10 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 11 | ifeq ($(TARGET_ARCH), mips64) |
| 12 | TARGET_BASE_ARCH:=mips |
| 13 | endif |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 14 | ifeq ($(TARGET_ARCH), ppc64) |
| 15 | TARGET_BASE_ARCH:=ppc |
| 16 | endif |
j_mayer | 22f8a8b | 2007-10-14 08:38:29 +0000 | [diff] [blame] | 17 | ifeq ($(TARGET_ARCH), ppc64h) |
| 18 | TARGET_BASE_ARCH:=ppc |
| 19 | endif |
j_mayer | d4082e9 | 2007-04-24 07:34:03 +0000 | [diff] [blame] | 20 | ifeq ($(TARGET_ARCH), ppcemb) |
| 21 | TARGET_BASE_ARCH:=ppc |
| 22 | endif |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 23 | ifeq ($(TARGET_ARCH), sparc64) |
| 24 | TARGET_BASE_ARCH:=sparc |
| 25 | endif |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 26 | TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 27 | VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw |
balrog | 46dc388 | 2008-06-02 02:09:09 +0000 | [diff] [blame] | 28 | CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 29 | #CFLAGS+=-Werror |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 30 | LIBS= |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 31 | # user emulator name |
bellard | 0c64b9c | 2008-01-06 18:27:58 +0000 | [diff] [blame] | 32 | ifndef TARGET_ARCH2 |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 33 | TARGET_ARCH2=$(TARGET_ARCH) |
bellard | 0c64b9c | 2008-01-06 18:27:58 +0000 | [diff] [blame] | 34 | endif |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 35 | ifeq ($(TARGET_ARCH),arm) |
| 36 | ifeq ($(TARGET_WORDS_BIGENDIAN),yes) |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 37 | TARGET_ARCH2=armeb |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 38 | endif |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 39 | endif |
pbrook | 908f52b | 2006-06-18 19:16:53 +0000 | [diff] [blame] | 40 | ifeq ($(TARGET_ARCH),sh4) |
| 41 | ifeq ($(TARGET_WORDS_BIGENDIAN),yes) |
| 42 | TARGET_ARCH2=sh4eb |
| 43 | endif |
| 44 | endif |
bellard | 01f5e59 | 2005-12-06 21:42:17 +0000 | [diff] [blame] | 45 | ifeq ($(TARGET_ARCH),mips) |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 46 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) |
| 47 | TARGET_ARCH2=mipsel |
bellard | 01f5e59 | 2005-12-06 21:42:17 +0000 | [diff] [blame] | 48 | endif |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 49 | endif |
ths | 540635b | 2007-09-30 01:58:33 +0000 | [diff] [blame] | 50 | ifeq ($(TARGET_ARCH),mipsn32) |
| 51 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) |
| 52 | TARGET_ARCH2=mipsn32el |
| 53 | endif |
| 54 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 55 | ifeq ($(TARGET_ARCH),mips64) |
| 56 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) |
| 57 | TARGET_ARCH2=mips64el |
| 58 | endif |
| 59 | endif |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 60 | |
bellard | 16e9b7d | 2003-10-27 21:09:52 +0000 | [diff] [blame] | 61 | ifdef CONFIG_USER_ONLY |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 62 | # user emulator name |
| 63 | QEMU_PROG=qemu-$(TARGET_ARCH2) |
bellard | 16e9b7d | 2003-10-27 21:09:52 +0000 | [diff] [blame] | 64 | else |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 65 | # system emulator name |
| 66 | ifeq ($(TARGET_ARCH), i386) |
| 67 | QEMU_PROG=qemu$(EXESUF) |
| 68 | else |
| 69 | QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF) |
bellard | de5eaa6 | 2003-11-16 23:18:17 +0000 | [diff] [blame] | 70 | endif |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 71 | endif |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 72 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 73 | PROGS=$(QEMU_PROG) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 74 | |
ths | 6c041c5 | 2007-03-18 23:23:31 +0000 | [diff] [blame] | 75 | # cc-option |
aliguori | c732880 | 2009-01-21 18:12:27 +0000 | [diff] [blame] | 76 | # Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0) |
ths | 6c041c5 | 2007-03-18 23:23:31 +0000 | [diff] [blame] | 77 | |
aliguori | c732880 | 2009-01-21 18:12:27 +0000 | [diff] [blame] | 78 | cc-option = $(shell if $(CC) $(1) $(2) -S -o /dev/null -xc /dev/null \ |
| 79 | > /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi ;) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 80 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 81 | HELPER_CFLAGS= |
| 82 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 83 | ifeq ($(ARCH),i386) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 84 | HELPER_CFLAGS+=-fomit-frame-pointer |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 85 | endif |
| 86 | |
malc | d19076f | 2009-04-02 01:16:39 +0000 | [diff] [blame] | 87 | ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc) |
| 88 | translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-time,) |
| 89 | endif |
| 90 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 91 | ifeq ($(ARCH),sparc) |
aliguori | c732880 | 2009-01-21 18:12:27 +0000 | [diff] [blame] | 92 | ifneq ($(CONFIG_SOLARIS),yes) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 93 | HELPER_CFLAGS+=-ffixed-i0 |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 94 | endif |
bellard | fdbb469 | 2006-06-14 17:32:25 +0000 | [diff] [blame] | 95 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 96 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 97 | ifeq ($(ARCH),alpha) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 98 | # Ensure there's only a single GP |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 99 | CFLAGS+=-msmall-data |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 100 | endif |
| 101 | |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 102 | ifeq ($(ARCH),hppa) |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 103 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 104 | endif |
| 105 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 106 | ifeq ($(ARCH),ia64) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 107 | CFLAGS+=-mno-sdata |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 108 | endif |
| 109 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 110 | CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS) |
| 111 | LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 112 | |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 113 | CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 114 | LIBS+=-lm |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 115 | ifdef CONFIG_WIN32 |
bellard | 3db38e8 | 2004-07-14 17:19:55 +0000 | [diff] [blame] | 116 | LIBS+=-lwinmm -lws2_32 -liphlpapi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 117 | endif |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 118 | ifdef CONFIG_SOLARIS |
| 119 | LIBS+=-lsocket -lnsl -lresolv |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 120 | ifdef NEEDS_LIBSUNMATH |
| 121 | LIBS+=-lsunmath |
| 122 | LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 123 | CFLAGS+=-I/opt/SUNWspro/prod/include/cc |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 124 | endif |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 125 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 126 | |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 127 | kvm.o: CFLAGS+=$(KVM_CFLAGS) |
| 128 | kvm-all.o: CFLAGS+=$(KVM_CFLAGS) |
| 129 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 130 | all: $(PROGS) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 131 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 132 | ######################################################### |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 133 | # cpu emulator library |
blueswir1 | 2d6ebb0 | 2009-04-18 19:25:43 +0000 | [diff] [blame] | 134 | LIBOBJS=exec.o translate-all.o cpu-exec.o\ |
blueswir1 | cf2be98 | 2008-03-21 18:03:09 +0000 | [diff] [blame] | 135 | translate.o host-utils.o |
blueswir1 | 2d6ebb0 | 2009-04-18 19:25:43 +0000 | [diff] [blame] | 136 | ifdef CONFIG_KQEMU |
| 137 | LIBOBJS+= kqemu.o |
| 138 | endif |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 139 | # TCG code generator |
aurel32 | 49516bc | 2008-12-07 18:15:45 +0000 | [diff] [blame] | 140 | LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 141 | CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH) |
blueswir1 | 8289b27 | 2008-02-27 17:53:27 +0000 | [diff] [blame] | 142 | ifeq ($(ARCH),sparc64) |
| 143 | CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc |
| 144 | endif |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 145 | ifdef CONFIG_SOFTFLOAT |
| 146 | LIBOBJS+=fpu/softfloat.o |
| 147 | else |
| 148 | LIBOBJS+=fpu/softfloat-native.o |
| 149 | endif |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 150 | CPPFLAGS+=-I$(SRC_PATH)/fpu |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 151 | LIBOBJS+= op_helper.o helper.o |
bellard | e95c8d5 | 2004-09-30 22:22:08 +0000 | [diff] [blame] | 152 | |
bellard | b7bcbe9 | 2005-02-22 19:27:29 +0000 | [diff] [blame] | 153 | ifeq ($(TARGET_BASE_ARCH), arm) |
bellard | eaa728e | 2008-05-28 12:51:20 +0000 | [diff] [blame] | 154 | LIBOBJS+= neon_helper.o iwmmxt_helper.o |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 155 | endif |
| 156 | |
j_mayer | cf6c1b1 | 2007-04-05 20:46:02 +0000 | [diff] [blame] | 157 | ifeq ($(TARGET_BASE_ARCH), alpha) |
bellard | eaa728e | 2008-05-28 12:51:20 +0000 | [diff] [blame] | 158 | LIBOBJS+= alpha_palcode.o |
j_mayer | cf6c1b1 | 2007-04-05 20:46:02 +0000 | [diff] [blame] | 159 | endif |
| 160 | |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 161 | ifeq ($(TARGET_BASE_ARCH), cris) |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 162 | LIBOBJS+= cris-dis.o |
| 163 | |
| 164 | ifndef CONFIG_USER_ONLY |
| 165 | LIBOBJS+= mmu.o |
| 166 | endif |
| 167 | endif |
| 168 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 169 | # NOTE: the disassembler code is only needed for debugging |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 170 | LIBOBJS+=disas.o |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 171 | ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386) |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 172 | USE_I386_DIS=y |
| 173 | endif |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 174 | ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64) |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 175 | USE_I386_DIS=y |
| 176 | endif |
| 177 | ifdef USE_I386_DIS |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 178 | LIBOBJS+=i386-dis.o |
| 179 | endif |
| 180 | ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha) |
| 181 | LIBOBJS+=alpha-dis.o |
| 182 | endif |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 183 | ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 184 | LIBOBJS+=ppc-dis.o |
| 185 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 186 | ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips) |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 187 | LIBOBJS+=mips-dis.o |
| 188 | endif |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 189 | ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 190 | LIBOBJS+=sparc-dis.o |
| 191 | endif |
| 192 | ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm) |
| 193 | LIBOBJS+=arm-dis.o |
| 194 | endif |
bellard | 48024e4 | 2005-11-06 16:52:11 +0000 | [diff] [blame] | 195 | ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k) |
| 196 | LIBOBJS+=m68k-dis.o |
| 197 | endif |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 198 | ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4) |
| 199 | LIBOBJS+=sh4-dis.o |
| 200 | endif |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 201 | ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa) |
| 202 | LIBOBJS+=hppa-dis.o |
| 203 | endif |
ths | 8f860bb | 2007-07-31 23:44:21 +0000 | [diff] [blame] | 204 | ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390) |
| 205 | LIBOBJS+=s390-dis.o |
| 206 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 207 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 208 | # libqemu |
| 209 | |
| 210 | libqemu.a: $(LIBOBJS) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 211 | |
aurel32 | 86e840e | 2008-12-07 15:21:23 +0000 | [diff] [blame] | 212 | translate.o: translate.c cpu.h |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 213 | |
aurel32 | 86e840e | 2008-12-07 15:21:23 +0000 | [diff] [blame] | 214 | translate-all.o: translate-all.c cpu.h |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 215 | |
aurel32 | 86e840e | 2008-12-07 15:21:23 +0000 | [diff] [blame] | 216 | tcg/tcg.o: cpu.h |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 217 | |
| 218 | # HELPER_CFLAGS is used for all the code compiled with static register |
| 219 | # variables |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 220 | op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 221 | |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 222 | cpu-exec.o: CFLAGS += $(HELPER_CFLAGS) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 223 | |
| 224 | ######################################################### |
| 225 | # Linux user emulator target |
| 226 | |
| 227 | ifdef CONFIG_LINUX_USER |
| 228 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 229 | ifndef TARGET_ABI_DIR |
| 230 | TARGET_ABI_DIR=$(TARGET_ARCH) |
| 231 | endif |
aurel32 | 3ebdd11 | 2008-04-09 06:53:01 +0000 | [diff] [blame] | 232 | VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 233 | CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) |
| 234 | |
| 235 | ifdef CONFIG_STATIC |
| 236 | LDFLAGS+=-static |
| 237 | endif |
| 238 | |
| 239 | ifeq ($(ARCH),i386) |
| 240 | ifdef TARGET_GPROF |
| 241 | USE_I386_LD=y |
| 242 | endif |
| 243 | ifdef CONFIG_STATIC |
| 244 | USE_I386_LD=y |
| 245 | endif |
| 246 | ifdef USE_I386_LD |
| 247 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 248 | else |
| 249 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object |
| 250 | # that the kernel ELF loader considers as an executable. I think this |
| 251 | # is the simplest way to make it self virtualizable! |
| 252 | LDFLAGS+=-Wl,-shared |
| 253 | endif |
| 254 | endif |
| 255 | |
| 256 | ifeq ($(ARCH),x86_64) |
| 257 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 258 | endif |
| 259 | |
| 260 | ifeq ($(ARCH),ppc) |
| 261 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 262 | endif |
| 263 | |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 264 | ifeq ($(ARCH),ppc64) |
| 265 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 266 | endif |
| 267 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 268 | ifeq ($(ARCH),s390) |
| 269 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 270 | endif |
| 271 | |
| 272 | ifeq ($(ARCH),sparc) |
| 273 | # -static is used to avoid g1/g3 usage by the dynamic linker |
| 274 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static |
| 275 | endif |
| 276 | |
| 277 | ifeq ($(ARCH),sparc64) |
| 278 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 279 | endif |
| 280 | |
| 281 | ifeq ($(ARCH),alpha) |
| 282 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 283 | endif |
| 284 | |
| 285 | ifeq ($(ARCH),ia64) |
| 286 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 287 | endif |
| 288 | |
| 289 | ifeq ($(ARCH),arm) |
| 290 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 291 | endif |
| 292 | |
| 293 | ifeq ($(ARCH),m68k) |
| 294 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 295 | endif |
| 296 | |
| 297 | ifeq ($(ARCH),mips) |
| 298 | ifeq ($(WORDS_BIGENDIAN),yes) |
| 299 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 300 | else |
| 301 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld |
| 302 | endif |
| 303 | endif |
| 304 | |
| 305 | ifeq ($(ARCH),mips64) |
| 306 | ifeq ($(WORDS_BIGENDIAN),yes) |
| 307 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 308 | else |
| 309 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld |
| 310 | endif |
| 311 | endif |
| 312 | |
aurel32 | 6d946cd | 2008-11-06 16:15:18 +0000 | [diff] [blame] | 313 | # profiling code |
| 314 | ifdef TARGET_GPROF |
| 315 | LDFLAGS+=-p |
| 316 | CFLAGS+=-p |
| 317 | endif |
| 318 | |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 319 | OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \ |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 320 | elfload.o linuxload.o uaccess.o envlist.o |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 321 | LIBS+= $(PTHREADLIBS) |
| 322 | LIBS+= $(CLOCKLIBS) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 323 | ifdef TARGET_HAS_BFLT |
| 324 | OBJS+= flatload.o |
| 325 | endif |
| 326 | ifdef TARGET_HAS_ELFLOAD32 |
| 327 | OBJS+= elfload32.o |
| 328 | elfload32.o: elfload.c |
| 329 | endif |
| 330 | |
| 331 | ifeq ($(TARGET_ARCH), i386) |
| 332 | OBJS+= vm86.o |
| 333 | endif |
| 334 | ifeq ($(TARGET_ARCH), arm) |
| 335 | OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \ |
| 336 | nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \ |
| 337 | nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o |
| 338 | endif |
| 339 | ifeq ($(TARGET_ARCH), m68k) |
| 340 | OBJS+= m68k-sim.o m68k-semi.o |
| 341 | endif |
| 342 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 343 | ifdef CONFIG_GDBSTUB |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 344 | OBJS+=gdbstub.o gdbstub-xml.o |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 345 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 346 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 347 | OBJS+= libqemu.a |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 348 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 349 | # Note: this is a workaround. The real fix is to avoid compiling |
| 350 | # cpu_signal_handler() in cpu-exec.c. |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 351 | signal.o: CFLAGS += $(HELPER_CFLAGS) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 352 | |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 353 | $(QEMU_PROG): $(OBJS) ../libqemu_user.a |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 354 | $(LINK) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 355 | ifeq ($(ARCH),alpha) |
| 356 | # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of |
| 357 | # the address space (31 bit so sign extending doesn't matter) |
| 358 | echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc |
| 359 | endif |
| 360 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 361 | endif #CONFIG_LINUX_USER |
| 362 | |
| 363 | ######################################################### |
| 364 | # Darwin user emulator target |
| 365 | |
| 366 | ifdef CONFIG_DARWIN_USER |
| 367 | |
| 368 | VPATH+=:$(SRC_PATH)/darwin-user |
| 369 | CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH) |
| 370 | |
| 371 | # Leave some space for the regular program loading zone |
| 372 | LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000 |
| 373 | |
| 374 | LIBS+=-lmx |
| 375 | |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 376 | OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 377 | |
| 378 | OBJS+= libqemu.a |
| 379 | |
| 380 | ifdef CONFIG_GDBSTUB |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 381 | OBJS+=gdbstub.o gdbstub-xml.o |
ths | 223d467 | 2007-12-15 17:28:36 +0000 | [diff] [blame] | 382 | endif |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 383 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 384 | # Note: this is a workaround. The real fix is to avoid compiling |
| 385 | # cpu_signal_handler() in cpu-exec.c. |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 386 | signal.o: CFLAGS += $(HELPER_CFLAGS) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 387 | |
| 388 | $(QEMU_PROG): $(OBJS) |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 389 | $(LINK) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 390 | |
| 391 | endif #CONFIG_DARWIN_USER |
| 392 | |
| 393 | ######################################################### |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 394 | # BSD user emulator target |
| 395 | |
| 396 | ifdef CONFIG_BSD_USER |
| 397 | |
| 398 | VPATH+=:$(SRC_PATH)/bsd-user |
| 399 | CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) |
| 400 | |
| 401 | ifdef CONFIG_STATIC |
| 402 | LDFLAGS+=-static |
| 403 | endif |
| 404 | |
| 405 | ifeq ($(ARCH),i386) |
| 406 | ifdef TARGET_GPROF |
| 407 | USE_I386_LD=y |
| 408 | endif |
| 409 | ifdef CONFIG_STATIC |
| 410 | USE_I386_LD=y |
| 411 | endif |
| 412 | ifdef USE_I386_LD |
| 413 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 414 | else |
| 415 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object |
| 416 | # that the kernel ELF loader considers as an executable. I think this |
| 417 | # is the simplest way to make it self virtualizable! |
| 418 | LDFLAGS+=-Wl,-shared |
| 419 | endif |
| 420 | endif |
| 421 | |
| 422 | ifeq ($(ARCH),x86_64) |
| 423 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 424 | endif |
| 425 | |
| 426 | ifeq ($(ARCH),ppc) |
| 427 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 428 | endif |
| 429 | |
| 430 | ifeq ($(ARCH),ppc64) |
| 431 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 432 | endif |
| 433 | |
| 434 | ifeq ($(ARCH),s390) |
| 435 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 436 | endif |
| 437 | |
| 438 | ifeq ($(ARCH),sparc) |
| 439 | # -static is used to avoid g1/g3 usage by the dynamic linker |
| 440 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static |
| 441 | endif |
| 442 | |
| 443 | ifeq ($(ARCH),sparc64) |
| 444 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 445 | endif |
| 446 | |
| 447 | ifeq ($(ARCH),alpha) |
| 448 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 449 | endif |
| 450 | |
| 451 | ifeq ($(ARCH),ia64) |
| 452 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 453 | endif |
| 454 | |
| 455 | ifeq ($(ARCH),arm) |
| 456 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 457 | endif |
| 458 | |
| 459 | ifeq ($(ARCH),m68k) |
| 460 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 461 | endif |
| 462 | |
| 463 | ifeq ($(ARCH),mips) |
| 464 | ifeq ($(WORDS_BIGENDIAN),yes) |
| 465 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 466 | else |
| 467 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld |
| 468 | endif |
| 469 | endif |
| 470 | |
| 471 | ifeq ($(ARCH),mips64) |
| 472 | ifeq ($(WORDS_BIGENDIAN),yes) |
| 473 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 474 | else |
| 475 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld |
| 476 | endif |
| 477 | endif |
| 478 | |
| 479 | OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o |
| 480 | OBJS+= uaccess.o |
| 481 | |
| 482 | OBJS+= libqemu.a |
| 483 | |
| 484 | ifdef CONFIG_GDBSTUB |
| 485 | OBJS+=gdbstub.o |
| 486 | endif |
| 487 | |
| 488 | # Note: this is a workaround. The real fix is to avoid compiling |
| 489 | # cpu_signal_handler() in cpu-exec.c. |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 490 | signal.o: CFLAGS += $(HELPER_CFLAGS) |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 491 | |
| 492 | $(QEMU_PROG): $(OBJS) ../libqemu_user.a |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 493 | $(LINK) |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 494 | |
| 495 | endif #CONFIG_BSD_USER |
| 496 | |
| 497 | ######################################################### |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 498 | # System emulator target |
| 499 | ifndef CONFIG_USER_ONLY |
| 500 | |
aliguori | 244ab90 | 2009-02-05 21:23:50 +0000 | [diff] [blame] | 501 | OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o |
aliguori | 1fd31ad | 2008-12-18 01:56:22 +0000 | [diff] [blame] | 502 | # virtio has to be here due to weird dependency between PCI and virtio-net. |
| 503 | # need to fix this properly |
aliguori | 9ede2fd | 2009-01-15 20:05:25 +0000 | [diff] [blame] | 504 | OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o |
aliguori | 559b90f | 2008-11-11 21:20:14 +0000 | [diff] [blame] | 505 | OBJS+=fw_cfg.o |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 506 | ifdef CONFIG_KVM |
| 507 | OBJS+=kvm.o kvm-all.o |
| 508 | endif |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 509 | ifdef CONFIG_WIN32 |
| 510 | OBJS+=block-raw-win32.o |
| 511 | else |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 512 | ifdef CONFIG_AIO |
| 513 | OBJS+=posix-aio-compat.o |
| 514 | endif |
aliguori | 559b90f | 2008-11-11 21:20:14 +0000 | [diff] [blame] | 515 | OBJS+=block-raw-posix.o |
aliguori | a3392f9 | 2008-09-11 18:00:19 +0000 | [diff] [blame] | 516 | endif |
| 517 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 518 | LIBS+=-lz |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 519 | ifdef CONFIG_ALSA |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 520 | LIBS += -lasound |
| 521 | endif |
balrog | ca9cc28 | 2008-01-14 04:24:29 +0000 | [diff] [blame] | 522 | ifdef CONFIG_ESD |
| 523 | LIBS += -lesd |
| 524 | endif |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 525 | ifdef CONFIG_PA |
| 526 | LIBS += -lpulse-simple |
| 527 | endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 528 | ifdef CONFIG_DSOUND |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 529 | LIBS += -lole32 -ldxguid |
| 530 | endif |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 531 | ifdef CONFIG_FMOD |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 532 | LIBS += $(CONFIG_FMOD_LIB) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 533 | endif |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 534 | ifdef CONFIG_OSS |
| 535 | LIBS += $(CONFIG_OSS_LIB) |
| 536 | endif |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 537 | |
aliguori | b0f3b8f | 2009-01-08 21:03:55 +0000 | [diff] [blame] | 538 | SOUND_HW = sb16.o es1370.o ac97.o |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 539 | ifdef CONFIG_ADLIB |
| 540 | SOUND_HW += fmopl.o adlib.o |
malc | c40e866 | 2008-12-11 00:14:25 +0000 | [diff] [blame] | 541 | adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0 |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 542 | endif |
balrog | 423d65f | 2008-01-14 22:09:11 +0000 | [diff] [blame] | 543 | ifdef CONFIG_GUS |
| 544 | SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o |
| 545 | endif |
malc | cc53d26 | 2008-06-13 10:48:22 +0000 | [diff] [blame] | 546 | ifdef CONFIG_CS4231A |
| 547 | SOUND_HW += cs4231a.o |
| 548 | endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 549 | |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 550 | ifdef CONFIG_VNC_TLS |
| 551 | CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS) |
| 552 | LIBS += $(CONFIG_VNC_TLS_LIBS) |
| 553 | endif |
| 554 | |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 555 | ifdef CONFIG_VNC_SASL |
| 556 | CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS) |
| 557 | LIBS += $(CONFIG_VNC_SASL_LIBS) |
| 558 | endif |
| 559 | |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 560 | ifdef CONFIG_BLUEZ |
| 561 | LIBS += $(CONFIG_BLUEZ_LIBS) |
| 562 | endif |
| 563 | |
aliguori | e37630c | 2009-04-22 15:19:10 +0000 | [diff] [blame] | 564 | # xen backend driver support |
aliguori | 9306acb | 2009-04-22 15:19:44 +0000 | [diff] [blame] | 565 | XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o |
aliguori | e613b06 | 2009-04-22 15:19:35 +0000 | [diff] [blame] | 566 | XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o |
aliguori | e37630c | 2009-04-22 15:19:10 +0000 | [diff] [blame] | 567 | ifeq ($(CONFIG_XEN), yes) |
| 568 | OBJS += $(XEN_OBJS) |
| 569 | LIBS += $(XEN_LIBS) |
| 570 | endif |
| 571 | |
pbrook | 2e5d83b | 2006-05-25 23:58:51 +0000 | [diff] [blame] | 572 | # SCSI layer |
blueswir1 | 8b17de8 | 2008-03-02 08:48:47 +0000 | [diff] [blame] | 573 | OBJS+= lsi53c895a.o esp.o |
pbrook | 2e5d83b | 2006-05-25 23:58:51 +0000 | [diff] [blame] | 574 | |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 575 | # USB layer |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 576 | OBJS+= usb-ohci.o |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 577 | |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 578 | # PCI network cards |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 579 | OBJS += eepro100.o |
| 580 | OBJS += ne2000.o |
| 581 | OBJS += pcnet.o |
| 582 | OBJS += rtl8139.o |
balrog | 7c23b89 | 2008-02-03 02:20:18 +0000 | [diff] [blame] | 583 | OBJS += e1000.o |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 584 | |
Richard W.M. Jones | 9dd986c | 2009-04-25 13:56:19 +0100 | [diff] [blame] | 585 | # Generic watchdog support and some watchdog devices |
| 586 | OBJS += watchdog.o |
| 587 | OBJS += wdt_ib700.o wdt_i6300esb.o |
| 588 | |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 589 | ifeq ($(TARGET_BASE_ARCH), i386) |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 590 | # Hardware support |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 591 | OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 592 | OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o |
aliguori | 610626a | 2009-03-12 20:25:12 +0000 | [diff] [blame] | 593 | OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o |
aliguori | 16b29ae | 2008-12-17 23:28:44 +0000 | [diff] [blame] | 594 | OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o |
aliguori | b6f6e3d | 2009-04-17 18:59:56 +0000 | [diff] [blame] | 595 | OBJS += device-hotplug.o pci-hotplug.o smbios.o |
balrog | b00052e | 2007-04-30 02:22:06 +0000 | [diff] [blame] | 596 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 597 | endif |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 598 | ifeq ($(TARGET_BASE_ARCH), ppc) |
aurel32 | 70ad3de | 2008-12-14 17:30:18 +0000 | [diff] [blame] | 599 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
j_mayer | 3cbee15 | 2007-10-28 23:42:18 +0000 | [diff] [blame] | 600 | # shared objects |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 601 | OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o |
j_mayer | 3cbee15 | 2007-10-28 23:42:18 +0000 | [diff] [blame] | 602 | # PREP target |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 603 | OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 604 | OBJS+= prep_pci.o ppc_prep.o |
j_mayer | 3cbee15 | 2007-10-28 23:42:18 +0000 | [diff] [blame] | 605 | # Mac shared devices |
blueswir1 | 7fa9ae1 | 2009-01-12 17:40:23 +0000 | [diff] [blame] | 606 | OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o |
j_mayer | 3cbee15 | 2007-10-28 23:42:18 +0000 | [diff] [blame] | 607 | # OldWorld PowerMac |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 608 | OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o |
j_mayer | 3cbee15 | 2007-10-28 23:42:18 +0000 | [diff] [blame] | 609 | # NewWorld PowerMac |
blueswir1 | b98a003 | 2009-02-08 12:49:13 +0000 | [diff] [blame] | 610 | OBJS+= unin_pci.o ppc_newworld.o |
j_mayer | 3cbee15 | 2007-10-28 23:42:18 +0000 | [diff] [blame] | 611 | # PowerPC 4xx boards |
aurel32 | 825bb58 | 2008-12-02 23:53:50 +0000 | [diff] [blame] | 612 | OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o |
aurel32 | 2c9fade | 2008-12-16 10:44:14 +0000 | [diff] [blame] | 613 | OBJS+= ppc440.o ppc440_bamboo.o |
aurel32 | 74c62ba | 2009-03-02 16:42:23 +0000 | [diff] [blame] | 614 | # PowerPC E500 boards |
aurel32 | 1db09b8 | 2009-03-02 16:42:42 +0000 | [diff] [blame] | 615 | OBJS+= ppce500_pci.o ppce500_mpc8544ds.o |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 616 | ifdef FDT_LIBS |
| 617 | OBJS+= device_tree.o |
| 618 | LIBS+= $(FDT_LIBS) |
| 619 | endif |
aurel32 | d76d165 | 2008-12-16 10:43:58 +0000 | [diff] [blame] | 620 | ifdef CONFIG_KVM |
| 621 | OBJS+= kvm_ppc.o |
| 622 | endif |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 623 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 624 | ifeq ($(TARGET_BASE_ARCH), mips) |
aurel32 | c171148 | 2008-04-08 19:51:06 +0000 | [diff] [blame] | 625 | OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o |
aurel32 | 4ce7ff6 | 2008-04-07 19:47:14 +0000 | [diff] [blame] | 626 | OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o |
aurel32 | a65f56e | 2009-04-15 14:57:54 +0000 | [diff] [blame] | 627 | OBJS+= g364fb.o jazz_led.o dp8393x.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 628 | OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o |
aurel32 | 4ce7ff6 | 2008-04-07 19:47:14 +0000 | [diff] [blame] | 629 | OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 630 | OBJS+= mipsnet.o |
| 631 | OBJS+= pflash_cfi01.o |
aurel32 | 1f605a7 | 2009-02-08 14:51:19 +0000 | [diff] [blame] | 632 | OBJS+= vmware_vga.o |
aurel32 | 4ce7ff6 | 2008-04-07 19:47:14 +0000 | [diff] [blame] | 633 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 634 | endif |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 635 | ifeq ($(TARGET_BASE_ARCH), cris) |
edgar_igl | 10c144e | 2009-01-07 12:19:50 +0000 | [diff] [blame] | 636 | # Boards |
| 637 | OBJS+= etraxfs.o axis_dev88.o |
| 638 | |
| 639 | # IO blocks |
edgar_igl | 4831801 | 2008-05-11 15:07:19 +0000 | [diff] [blame] | 640 | OBJS+= etraxfs_dma.o |
edgar_igl | e62b5b1 | 2008-03-14 01:04:24 +0000 | [diff] [blame] | 641 | OBJS+= etraxfs_pic.o |
edgar_igl | 4831801 | 2008-05-11 15:07:19 +0000 | [diff] [blame] | 642 | OBJS+= etraxfs_eth.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 643 | OBJS+= etraxfs_timer.o |
| 644 | OBJS+= etraxfs_ser.o |
edgar_igl | e62b5b1 | 2008-03-14 01:04:24 +0000 | [diff] [blame] | 645 | |
edgar_igl | 10c144e | 2009-01-07 12:19:50 +0000 | [diff] [blame] | 646 | OBJS+= pflash_cfi02.o nand.o |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 647 | endif |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 648 | ifeq ($(TARGET_BASE_ARCH), sparc) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 649 | ifeq ($(TARGET_ARCH), sparc64) |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 650 | OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 651 | OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 652 | OBJS+= cirrus_vga.o parallel.o |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 653 | else |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 654 | OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o |
blueswir1 | 2aa2ab3 | 2009-01-12 17:33:30 +0000 | [diff] [blame] | 655 | OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 656 | OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 657 | endif |
bellard | e95c8d5 | 2004-09-30 22:22:08 +0000 | [diff] [blame] | 658 | endif |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 659 | ifeq ($(TARGET_BASE_ARCH), arm) |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 660 | OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 661 | OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 662 | OBJS+= versatile_pci.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 663 | OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o |
| 664 | OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o |
| 665 | OBJS+= pl061.o |
| 666 | OBJS+= arm-semi.o |
| 667 | OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o |
| 668 | OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o |
| 669 | OBJS+= pflash_cfi01.o gumstix.o |
balrog | 88d2c95 | 2008-06-09 00:03:13 +0000 | [diff] [blame] | 670 | OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o |
balrog | b4e3104 | 2008-03-06 21:07:38 +0000 | [diff] [blame] | 671 | OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o |
balrog | afbb519 | 2008-07-21 20:40:22 +0000 | [diff] [blame] | 672 | OBJS+= omap2.o omap_dss.o soc_dma.o |
balrog | 997641a | 2008-12-15 02:05:00 +0000 | [diff] [blame] | 673 | OBJS+= omap_sx1.o palm.o tsc210x.o |
balrog | 942ac05 | 2008-04-22 03:15:10 +0000 | [diff] [blame] | 674 | OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 675 | OBJS+= mst_fpga.o mainstone.o |
balrog | 24859b6 | 2008-04-24 19:21:53 +0000 | [diff] [blame] | 676 | OBJS+= musicpal.o pflash_cfi02.o |
pbrook | 714fa30 | 2009-04-01 12:27:59 +0000 | [diff] [blame] | 677 | OBJS+= framebuffer.o |
balrog | 5a1237c | 2007-05-02 02:11:51 +0000 | [diff] [blame] | 678 | CPPFLAGS += -DHAS_AUDIO |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 679 | endif |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 680 | ifeq ($(TARGET_BASE_ARCH), sh4) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 681 | OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 682 | OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o |
balrog | a4a771c | 2008-12-07 18:41:42 +0000 | [diff] [blame] | 683 | OBJS+= ide.o |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 684 | endif |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 685 | ifeq ($(TARGET_BASE_ARCH), m68k) |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 686 | OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 687 | OBJS+= m68k-semi.o dummy_m68k.o |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 688 | endif |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 689 | ifdef CONFIG_GDBSTUB |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 690 | OBJS+=gdbstub.o gdbstub-xml.o |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 691 | endif |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 692 | ifdef CONFIG_COCOA |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 693 | COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit |
| 694 | ifdef CONFIG_COREAUDIO |
| 695 | COCOA_LIBS+=-framework CoreAudio |
| 696 | endif |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 697 | endif |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 698 | ifdef CONFIG_SLIRP |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 699 | CPPFLAGS+=-I$(SRC_PATH)/slirp |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 700 | endif |
| 701 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 702 | LIBS+=$(PTHREADLIBS) |
| 703 | LIBS+=$(CLOCKLIBS) |
bellard | c321f67 | 2003-10-30 01:18:42 +0000 | [diff] [blame] | 704 | # specific flags are needed for non soft mmu emulator |
bellard | c321f67 | 2003-10-30 01:18:42 +0000 | [diff] [blame] | 705 | ifdef CONFIG_STATIC |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 706 | LDFLAGS+=-static |
bellard | de5eaa6 | 2003-11-16 23:18:17 +0000 | [diff] [blame] | 707 | endif |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 708 | ifndef CONFIG_DARWIN |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 709 | ifndef CONFIG_WIN32 |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 710 | ifndef CONFIG_SOLARIS |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 711 | ifndef CONFIG_AIX |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 712 | LIBS+=-lutil |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 713 | endif |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 714 | endif |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 715 | endif |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 716 | endif |
bellard | e3086fb | 2005-02-10 21:48:51 +0000 | [diff] [blame] | 717 | ifdef TARGET_GPROF |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 718 | vl.o: CFLAGS+=-p |
| 719 | LDFLAGS+=-p |
bellard | e3086fb | 2005-02-10 21:48:51 +0000 | [diff] [blame] | 720 | endif |
bellard | c321f67 | 2003-10-30 01:18:42 +0000 | [diff] [blame] | 721 | |
bellard | b8076a7 | 2005-04-07 22:20:31 +0000 | [diff] [blame] | 722 | ifeq ($(ARCH),ia64) |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 723 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld |
ths | 8a0ef21 | 2007-11-18 22:34:46 +0000 | [diff] [blame] | 724 | endif |
| 725 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 726 | ifdef CONFIG_WIN32 |
| 727 | SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole |
| 728 | endif |
| 729 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 730 | # profiling code |
| 731 | ifdef TARGET_GPROF |
| 732 | LDFLAGS+=-p |
| 733 | main.o: CFLAGS+=-p |
bellard | 6e1b3e4 | 2006-08-17 17:41:26 +0000 | [diff] [blame] | 734 | endif |
| 735 | |
blueswir1 | 5824d65 | 2009-03-28 06:44:27 +0000 | [diff] [blame] | 736 | vl.o: qemu-options.h |
| 737 | |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 738 | $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) |
| 739 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 740 | $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 741 | $(LINK) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 742 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 743 | endif # !CONFIG_USER_ONLY |
bellard | 00a67ba | 2006-10-28 12:19:07 +0000 | [diff] [blame] | 744 | |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 745 | gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 746 | ifeq ($(TARGET_XML_FILES),) |
aurel32 | 1aef4c5 | 2009-03-28 23:46:00 +0000 | [diff] [blame] | 747 | $(call quiet-command,rm -f $@ && echo > $@," GEN $(TARGET_DIR)$@") |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 748 | else |
aurel32 | 1aef4c5 | 2009-03-28 23:46:00 +0000 | [diff] [blame] | 749 | $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 750 | endif |
| 751 | |
blueswir1 | 5824d65 | 2009-03-28 06:44:27 +0000 | [diff] [blame] | 752 | qemu-options.h: $(SRC_PATH)/qemu-options.hx |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 753 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") |
blueswir1 | 5824d65 | 2009-03-28 06:44:27 +0000 | [diff] [blame] | 754 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 755 | clean: |
aliguori | 016c62c | 2009-04-05 17:40:50 +0000 | [diff] [blame] | 756 | rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 757 | rm -f *.d */*.d tcg/*.o |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 758 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 759 | install: all |
bellard | 9b14bb0 | 2004-03-26 22:43:34 +0000 | [diff] [blame] | 760 | ifneq ($(PROGS),) |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 761 | $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)" |
bellard | 9b14bb0 | 2004-03-26 22:43:34 +0000 | [diff] [blame] | 762 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 763 | |
j_mayer | 2f96c28 | 2007-10-28 13:07:12 +0000 | [diff] [blame] | 764 | # Include automatically generated dependency files |
| 765 | -include $(wildcard *.d */*.d) |