bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 1 | include config.mak |
| 2 | |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 3 | TARGET_BASE_ARCH:=$(TARGET_ARCH) |
| 4 | ifeq ($(TARGET_ARCH), x86_64) |
| 5 | TARGET_BASE_ARCH:=i386 |
| 6 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 7 | ifeq ($(TARGET_ARCH), mips64) |
| 8 | TARGET_BASE_ARCH:=mips |
| 9 | endif |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 10 | ifeq ($(TARGET_ARCH), ppc64) |
| 11 | TARGET_BASE_ARCH:=ppc |
| 12 | endif |
j_mayer | d4082e9 | 2007-04-24 07:34:03 +0000 | [diff] [blame] | 13 | ifeq ($(TARGET_ARCH), ppcemb) |
| 14 | TARGET_BASE_ARCH:=ppc |
| 15 | endif |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 16 | ifeq ($(TARGET_ARCH), sparc64) |
| 17 | TARGET_BASE_ARCH:=sparc |
| 18 | endif |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 19 | TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 20 | VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw:$(SRC_PATH)/audio |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 21 | CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 22 | ifdef CONFIG_DARWIN_USER |
| 23 | VPATH+=:$(SRC_PATH)/darwin-user |
| 24 | CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH) |
| 25 | endif |
| 26 | ifdef CONFIG_LINUX_USER |
bellard | 3035f7f | 2004-03-21 17:02:00 +0000 | [diff] [blame] | 27 | VPATH+=:$(SRC_PATH)/linux-user |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 28 | CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH) |
bellard | 3035f7f | 2004-03-21 17:02:00 +0000 | [diff] [blame] | 29 | endif |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 30 | BASE_CFLAGS= |
| 31 | BASE_LDFLAGS= |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 32 | #CFLAGS+=-Werror |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 33 | LIBS= |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 34 | HELPER_CFLAGS=$(CFLAGS) |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 35 | DYNGEN=../dyngen$(EXESUF) |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 36 | # user emulator name |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 37 | TARGET_ARCH2=$(TARGET_ARCH) |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 38 | ifeq ($(TARGET_ARCH),arm) |
| 39 | ifeq ($(TARGET_WORDS_BIGENDIAN),yes) |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 40 | TARGET_ARCH2=armeb |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 41 | endif |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 42 | endif |
pbrook | 908f52b | 2006-06-18 19:16:53 +0000 | [diff] [blame] | 43 | ifeq ($(TARGET_ARCH),sh4) |
| 44 | ifeq ($(TARGET_WORDS_BIGENDIAN),yes) |
| 45 | TARGET_ARCH2=sh4eb |
| 46 | endif |
| 47 | endif |
bellard | 01f5e59 | 2005-12-06 21:42:17 +0000 | [diff] [blame] | 48 | ifeq ($(TARGET_ARCH),mips) |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 49 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) |
| 50 | TARGET_ARCH2=mipsel |
bellard | 01f5e59 | 2005-12-06 21:42:17 +0000 | [diff] [blame] | 51 | endif |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 52 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 53 | ifeq ($(TARGET_ARCH),mips64) |
| 54 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) |
| 55 | TARGET_ARCH2=mips64el |
| 56 | endif |
| 57 | endif |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 58 | QEMU_USER=qemu-$(TARGET_ARCH2) |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 59 | # system emulator name |
| 60 | ifdef CONFIG_SOFTMMU |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 61 | ifeq ($(TARGET_ARCH), i386) |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 62 | QEMU_SYSTEM=qemu$(EXESUF) |
bellard | 0db6347 | 2003-10-27 21:37:46 +0000 | [diff] [blame] | 63 | else |
bellard | c91fde6 | 2006-05-02 22:52:36 +0000 | [diff] [blame] | 64 | QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF) |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 65 | endif |
| 66 | else |
bellard | 0db6347 | 2003-10-27 21:37:46 +0000 | [diff] [blame] | 67 | QEMU_SYSTEM=qemu-fast |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 68 | endif |
| 69 | |
bellard | 16e9b7d | 2003-10-27 21:09:52 +0000 | [diff] [blame] | 70 | ifdef CONFIG_USER_ONLY |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 71 | PROGS=$(QEMU_USER) |
bellard | 16e9b7d | 2003-10-27 21:09:52 +0000 | [diff] [blame] | 72 | else |
bellard | 16e9b7d | 2003-10-27 21:09:52 +0000 | [diff] [blame] | 73 | PROGS+=$(QEMU_SYSTEM) |
bellard | de5eaa6 | 2003-11-16 23:18:17 +0000 | [diff] [blame] | 74 | ifndef CONFIG_SOFTMMU |
| 75 | CONFIG_STATIC=y |
| 76 | endif |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 77 | endif # !CONFIG_USER_ONLY |
| 78 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 79 | ifdef CONFIG_STATIC |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 80 | BASE_LDFLAGS+=-static |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 81 | endif |
| 82 | |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 83 | # We require -O2 to avoid the stack setup prologue in EXIT_TB |
ths | 6c041c5 | 2007-03-18 23:23:31 +0000 | [diff] [blame] | 84 | OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing |
| 85 | |
| 86 | # cc-option |
| 87 | # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0) |
| 88 | |
| 89 | cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \ |
| 90 | > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;) |
| 91 | |
| 92 | OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "") |
| 93 | OP_CFLAGS+=$(call cc-option, -fno-gcse, "") |
| 94 | OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "") |
| 95 | OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "") |
| 96 | OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "") |
| 97 | OP_CFLAGS+=$(call cc-option, -fno-align-labels, "") |
| 98 | OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "") |
| 99 | OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, "")) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 100 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 101 | ifeq ($(ARCH),i386) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 102 | HELPER_CFLAGS+=-fomit-frame-pointer |
| 103 | OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 104 | ifdef TARGET_GPROF |
bellard | 3a4739d | 2003-10-28 00:48:22 +0000 | [diff] [blame] | 105 | USE_I386_LD=y |
| 106 | endif |
| 107 | ifdef CONFIG_STATIC |
| 108 | USE_I386_LD=y |
| 109 | endif |
| 110 | ifdef USE_I386_LD |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 111 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 112 | else |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 113 | ifdef CONFIG_LINUX_USER |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 114 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object |
| 115 | # that the kernel ELF loader considers as an executable. I think this |
| 116 | # is the simplest way to make it self virtualizable! |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 117 | BASE_LDFLAGS+=-Wl,-shared |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 118 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 119 | endif |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 120 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 121 | |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 122 | ifeq ($(ARCH),x86_64) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 123 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 124 | endif |
| 125 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 126 | ifeq ($(ARCH),ppc) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 127 | CPPFLAGS+= -D__powerpc__ |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 128 | ifdef CONFIG_LINUX_USER |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 129 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 130 | endif |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 131 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 132 | |
| 133 | ifeq ($(ARCH),s390) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 134 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 135 | endif |
| 136 | |
| 137 | ifeq ($(ARCH),sparc) |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 138 | BASE_CFLAGS+=-ffixed-g2 -ffixed-g3 |
| 139 | OP_CFLAGS+=-fno-delayed-branch -ffixed-i0 |
| 140 | ifeq ($(CONFIG_SOLARIS),yes) |
| 141 | OP_CFLAGS+=-fno-omit-frame-pointer |
| 142 | else |
| 143 | BASE_CFLAGS+=-ffixed-g1 -ffixed-g6 |
| 144 | HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat |
| 145 | # -static is used to avoid g1/g3 usage by the dynamic linker |
| 146 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static |
| 147 | endif |
bellard | fdbb469 | 2006-06-14 17:32:25 +0000 | [diff] [blame] | 148 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 149 | |
| 150 | ifeq ($(ARCH),sparc64) |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 151 | BASE_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7 |
| 152 | OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0 |
| 153 | ifneq ($(CONFIG_SOLARIS),yes) |
| 154 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 155 | OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7 |
| 156 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 157 | endif |
| 158 | |
| 159 | ifeq ($(ARCH),alpha) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 160 | # -msmall-data is not used for OP_CFLAGS because we want two-instruction |
| 161 | # relocations for the constant constructions |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 162 | # Ensure there's only a single GP |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 163 | BASE_CFLAGS+=-msmall-data |
| 164 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 165 | endif |
| 166 | |
| 167 | ifeq ($(ARCH),ia64) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 168 | BASE_CFLAGS+=-mno-sdata |
| 169 | OP_CFLAGS+=-mno-sdata |
| 170 | BASE_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 171 | endif |
| 172 | |
| 173 | ifeq ($(ARCH),arm) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 174 | OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer |
| 175 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 176 | endif |
| 177 | |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 178 | ifeq ($(ARCH),m68k) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 179 | OP_CFLAGS+=-fomit-frame-pointer |
| 180 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 181 | endif |
| 182 | |
| 183 | ifeq ($(ARCH),mips) |
ths | 9617efe | 2007-05-08 21:05:55 +0000 | [diff] [blame] | 184 | OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0 |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 185 | ifeq ($(WORDS_BIGENDIAN),yes) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 186 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 187 | else |
| 188 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld |
| 189 | endif |
| 190 | endif |
| 191 | |
| 192 | ifeq ($(ARCH),mips64) |
ths | 9617efe | 2007-05-08 21:05:55 +0000 | [diff] [blame] | 193 | OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0 |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 194 | ifeq ($(WORDS_BIGENDIAN),yes) |
| 195 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 196 | else |
| 197 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld |
| 198 | endif |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 199 | endif |
| 200 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 201 | ifeq ($(CONFIG_DARWIN),yes) |
bellard | e80cfcf | 2004-12-19 23:18:01 +0000 | [diff] [blame] | 202 | LIBS+=-lmx |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 203 | endif |
| 204 | |
ths | 01feaa0 | 2007-01-31 12:24:18 +0000 | [diff] [blame] | 205 | ifdef CONFIG_DARWIN_USER |
| 206 | # Leave some space for the regular program loading zone |
| 207 | BASE_LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000 |
| 208 | endif |
| 209 | |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 210 | BASE_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS) |
| 211 | BASE_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS) |
| 212 | OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS) |
| 213 | OP_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 214 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 215 | ######################################################### |
| 216 | |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 217 | CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 218 | LIBS+=-lm |
bellard | b932cab | 2004-08-01 21:46:49 +0000 | [diff] [blame] | 219 | ifndef CONFIG_USER_ONLY |
| 220 | LIBS+=-lz |
| 221 | endif |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 222 | ifdef CONFIG_WIN32 |
bellard | 3db38e8 | 2004-07-14 17:19:55 +0000 | [diff] [blame] | 223 | LIBS+=-lwinmm -lws2_32 -liphlpapi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 224 | endif |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 225 | ifdef CONFIG_SOLARIS |
| 226 | LIBS+=-lsocket -lnsl -lresolv |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 227 | ifdef NEEDS_LIBSUNMATH |
| 228 | LIBS+=-lsunmath |
| 229 | LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib |
| 230 | OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc |
| 231 | BASE_CFLAGS+=-I/opt/SUNWspro/prod/include/cc |
| 232 | endif |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 233 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 234 | |
| 235 | # profiling code |
| 236 | ifdef TARGET_GPROF |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 237 | BASE_LDFLAGS+=-p |
| 238 | main.o: BASE_CFLAGS+=-p |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 239 | endif |
| 240 | |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 241 | ifdef CONFIG_LINUX_USER |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 242 | OBJS= main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o \ |
| 243 | elfload.o linuxload.o |
ths | b5906f9 | 2007-03-19 13:32:45 +0000 | [diff] [blame] | 244 | LIBS+= $(AIOLIBS) |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 245 | ifdef TARGET_HAS_BFLT |
| 246 | OBJS+= flatload.o |
| 247 | endif |
| 248 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 249 | ifeq ($(TARGET_ARCH), i386) |
| 250 | OBJS+= vm86.o |
| 251 | endif |
bellard | f72b519 | 2004-02-16 21:55:35 +0000 | [diff] [blame] | 252 | ifeq ($(TARGET_ARCH), arm) |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 253 | OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \ |
bellard | f72b519 | 2004-02-16 21:55:35 +0000 | [diff] [blame] | 254 | nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \ |
bellard | a4f8197 | 2005-04-23 18:25:41 +0000 | [diff] [blame] | 255 | nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o |
bellard | f72b519 | 2004-02-16 21:55:35 +0000 | [diff] [blame] | 256 | endif |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 257 | ifeq ($(TARGET_ARCH), m68k) |
| 258 | OBJS+= m68k-sim.o m68k-semi.o |
| 259 | endif |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 260 | endif #CONFIG_LINUX_USER |
| 261 | |
| 262 | ifdef CONFIG_DARWIN_USER |
| 263 | OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o |
| 264 | endif |
| 265 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 266 | SRCS:= $(OBJS:.o=.c) |
| 267 | OBJS+= libqemu.a |
| 268 | |
| 269 | # cpu emulator library |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 270 | LIBOBJS=exec.o kqemu.o translate-op.o translate-all.o cpu-exec.o\ |
bellard | e3086fb | 2005-02-10 21:48:51 +0000 | [diff] [blame] | 271 | translate.o op.o |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 272 | ifdef CONFIG_SOFTFLOAT |
| 273 | LIBOBJS+=fpu/softfloat.o |
| 274 | else |
| 275 | LIBOBJS+=fpu/softfloat-native.o |
| 276 | endif |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 277 | CPPFLAGS+=-I$(SRC_PATH)/fpu |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 278 | |
| 279 | ifeq ($(TARGET_ARCH), i386) |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 280 | LIBOBJS+=helper.o helper2.o |
bellard | f72b519 | 2004-02-16 21:55:35 +0000 | [diff] [blame] | 281 | ifeq ($(ARCH), i386) |
| 282 | LIBOBJS+=translate-copy.o |
| 283 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 284 | endif |
| 285 | |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 286 | ifeq ($(TARGET_ARCH), x86_64) |
| 287 | LIBOBJS+=helper.o helper2.o |
| 288 | endif |
| 289 | |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 290 | ifeq ($(TARGET_BASE_ARCH), ppc) |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 291 | LIBOBJS+= op_helper.o helper.o |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 292 | endif |
| 293 | |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 294 | ifeq ($(TARGET_BASE_ARCH), mips) |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 295 | LIBOBJS+= op_helper.o helper.o |
| 296 | endif |
| 297 | |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 298 | ifeq ($(TARGET_BASE_ARCH), sparc) |
bellard | e95c8d5 | 2004-09-30 22:22:08 +0000 | [diff] [blame] | 299 | LIBOBJS+= op_helper.o helper.o |
| 300 | endif |
| 301 | |
bellard | b7bcbe9 | 2005-02-22 19:27:29 +0000 | [diff] [blame] | 302 | ifeq ($(TARGET_BASE_ARCH), arm) |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 303 | LIBOBJS+= op_helper.o helper.o |
bellard | b7bcbe9 | 2005-02-22 19:27:29 +0000 | [diff] [blame] | 304 | endif |
| 305 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 306 | ifeq ($(TARGET_BASE_ARCH), sh4) |
| 307 | LIBOBJS+= op_helper.o helper.o |
| 308 | endif |
| 309 | |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 310 | ifeq ($(TARGET_BASE_ARCH), m68k) |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 311 | LIBOBJS+= op_helper.o helper.o |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 312 | endif |
| 313 | |
j_mayer | cf6c1b1 | 2007-04-05 20:46:02 +0000 | [diff] [blame] | 314 | ifeq ($(TARGET_BASE_ARCH), alpha) |
| 315 | LIBOBJS+= op_helper.o helper.o alpha_palcode.o |
| 316 | endif |
| 317 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 318 | # NOTE: the disassembler code is only needed for debugging |
| 319 | LIBOBJS+=disas.o |
| 320 | ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386) |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 321 | USE_I386_DIS=y |
| 322 | endif |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 323 | ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64) |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 324 | USE_I386_DIS=y |
| 325 | endif |
| 326 | ifdef USE_I386_DIS |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 327 | LIBOBJS+=i386-dis.o |
| 328 | endif |
| 329 | ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha) |
| 330 | LIBOBJS+=alpha-dis.o |
| 331 | endif |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 332 | ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 333 | LIBOBJS+=ppc-dis.o |
| 334 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 335 | ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips) |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 336 | LIBOBJS+=mips-dis.o |
| 337 | endif |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 338 | ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 339 | LIBOBJS+=sparc-dis.o |
| 340 | endif |
| 341 | ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm) |
| 342 | LIBOBJS+=arm-dis.o |
| 343 | endif |
bellard | 48024e4 | 2005-11-06 16:52:11 +0000 | [diff] [blame] | 344 | ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k) |
| 345 | LIBOBJS+=m68k-dis.o |
| 346 | endif |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 347 | ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4) |
| 348 | LIBOBJS+=sh4-dis.o |
| 349 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 350 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 351 | ifdef CONFIG_GDBSTUB |
| 352 | OBJS+=gdbstub.o |
| 353 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 354 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 355 | all: $(PROGS) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 356 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 357 | $(QEMU_USER): $(OBJS) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 358 | $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ $(LIBS) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 359 | ifeq ($(ARCH),alpha) |
| 360 | # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of |
| 361 | # the address space (31 bit so sign extending doesn't matter) |
| 362 | echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc |
| 363 | endif |
| 364 | |
| 365 | # must use static linking to avoid leaving stuff in virtual address space |
pbrook | aef445b | 2006-09-18 01:15:29 +0000 | [diff] [blame] | 366 | VL_OBJS=vl.o osdep.o readline.o monitor.o pci.o console.o loader.o isa_mmio.o |
bellard | 18607dc | 2007-01-07 22:04:40 +0000 | [diff] [blame] | 367 | VL_OBJS+=cutils.o |
ths | 69d3572 | 2007-05-16 11:59:40 +0000 | [diff] [blame] | 368 | VL_OBJS+=host-utils.o |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 369 | VL_OBJS+=block.o block-raw.o |
bellard | 42ca638 | 2006-08-05 21:29:27 +0000 | [diff] [blame] | 370 | VL_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o block-dmg.o block-bochs.o block-vpc.o block-vvfat.o block-qcow2.o |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 371 | VL_OBJS+=irq.o |
bellard | 7fb843f | 2006-02-01 23:06:55 +0000 | [diff] [blame] | 372 | ifdef CONFIG_WIN32 |
| 373 | VL_OBJS+=tap-win32.o |
| 374 | endif |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 375 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 376 | SOUND_HW = sb16.o es1370.o |
balrog | b00052e | 2007-04-30 02:22:06 +0000 | [diff] [blame] | 377 | AUDIODRV = audio.o noaudio.o wavaudio.o mixeng.o |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 378 | ifdef CONFIG_SDL |
| 379 | AUDIODRV += sdlaudio.o |
| 380 | endif |
| 381 | ifdef CONFIG_OSS |
| 382 | AUDIODRV += ossaudio.o |
| 383 | endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 384 | ifdef CONFIG_COREAUDIO |
| 385 | AUDIODRV += coreaudio.o |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 386 | endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 387 | ifdef CONFIG_ALSA |
| 388 | AUDIODRV += alsaaudio.o |
| 389 | LIBS += -lasound |
| 390 | endif |
| 391 | ifdef CONFIG_DSOUND |
| 392 | AUDIODRV += dsoundaudio.o |
| 393 | LIBS += -lole32 -ldxguid |
| 394 | endif |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 395 | ifdef CONFIG_FMOD |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 396 | AUDIODRV += fmodaudio.o |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 397 | audio.o fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS) |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 398 | LIBS += $(CONFIG_FMOD_LIB) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 399 | endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 400 | ifdef CONFIG_ADLIB |
| 401 | SOUND_HW += fmopl.o adlib.o |
| 402 | endif |
bellard | ec36b69 | 2006-07-16 18:57:03 +0000 | [diff] [blame] | 403 | AUDIODRV+= wavcapture.o |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 404 | |
pbrook | 0ff596d | 2007-05-23 00:03:59 +0000 | [diff] [blame] | 405 | VL_OBJS += i2c.o smbus.o |
| 406 | |
pbrook | 2e5d83b | 2006-05-25 23:58:51 +0000 | [diff] [blame] | 407 | # SCSI layer |
pbrook | 7d8406b | 2006-05-30 01:48:12 +0000 | [diff] [blame] | 408 | VL_OBJS+= scsi-disk.o cdrom.o lsi53c895a.o |
pbrook | 2e5d83b | 2006-05-25 23:58:51 +0000 | [diff] [blame] | 409 | |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 410 | # USB layer |
pbrook | 2e5d83b | 2006-05-25 23:58:51 +0000 | [diff] [blame] | 411 | VL_OBJS+= usb.o usb-hub.o usb-linux.o usb-hid.o usb-ohci.o usb-msd.o |
balrog | f6d2a31 | 2007-06-10 19:21:04 +0000 | [diff] [blame] | 412 | VL_OBJS+= usb-wacom.o |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 413 | |
ths | 663e8e5 | 2007-04-02 12:35:34 +0000 | [diff] [blame] | 414 | # EEPROM emulation |
| 415 | VL_OBJS += eeprom93xx.o |
| 416 | |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 417 | # PCI network cards |
ths | 663e8e5 | 2007-04-02 12:35:34 +0000 | [diff] [blame] | 418 | VL_OBJS += eepro100.o |
| 419 | VL_OBJS += ne2000.o |
| 420 | VL_OBJS += pcnet.o |
| 421 | VL_OBJS += rtl8139.o |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 422 | |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 423 | ifeq ($(TARGET_BASE_ARCH), i386) |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 424 | # Hardware support |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 425 | VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV) |
bellard | fd06c37 | 2006-04-24 21:58:30 +0000 | [diff] [blame] | 426 | VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o |
balrog | b00052e | 2007-04-30 02:22:06 +0000 | [diff] [blame] | 427 | VL_OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o |
ths | d34cab9 | 2007-04-02 01:10:46 +0000 | [diff] [blame] | 428 | VL_OBJS+= usb-uhci.o smbus_eeprom.o vmmouse.o vmware_vga.o |
balrog | b00052e | 2007-04-30 02:22:06 +0000 | [diff] [blame] | 429 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 430 | endif |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 431 | ifeq ($(TARGET_BASE_ARCH), ppc) |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 432 | VL_OBJS+= ppc.o ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV) |
j_mayer | 8ecc791 | 2007-04-16 20:09:45 +0000 | [diff] [blame] | 433 | VL_OBJS+= mc146818rtc.o serial.o i8259.o i8254.o fdc.o m48t59.o pflash_cfi02.o |
balrog | b00052e | 2007-04-30 02:22:06 +0000 | [diff] [blame] | 434 | VL_OBJS+= ppc_prep.o ppc_chrp.o cuda.o adb.o openpic.o heathrow_pic.o |
j_mayer | 1a6c088 | 2007-04-24 07:40:49 +0000 | [diff] [blame] | 435 | VL_OBJS+= grackle_pci.o prep_pci.o unin_pci.o ppc405_uc.o ppc405_boards.o |
balrog | b00052e | 2007-04-30 02:22:06 +0000 | [diff] [blame] | 436 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 437 | endif |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 438 | ifeq ($(TARGET_BASE_ARCH), mips) |
ths | ad6fe1d | 2007-04-16 17:23:27 +0000 | [diff] [blame] | 439 | VL_OBJS+= mips_r4k.o mips_malta.o mips_pica61.o |
| 440 | VL_OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o |
ths | 31211df | 2007-06-25 10:57:10 +0000 | [diff] [blame] | 441 | VL_OBJS+= jazz_led.o |
ths | 9542611 | 2007-02-28 21:36:41 +0000 | [diff] [blame] | 442 | VL_OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o |
ths | 7b71733 | 2007-05-28 21:01:02 +0000 | [diff] [blame] | 443 | VL_OBJS+= piix_pci.o smbus_eeprom.o parallel.o mixeng.o cirrus_vga.o $(SOUND_HW) $(AUDIODRV) |
ths | 83b1fb8 | 2007-04-11 22:46:06 +0000 | [diff] [blame] | 444 | CPPFLAGS += -DHAS_AUDIO |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 445 | endif |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 446 | ifeq ($(TARGET_BASE_ARCH), sparc) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 447 | ifeq ($(TARGET_ARCH), sparc64) |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 448 | VL_OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 449 | VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o |
blueswir1 | 20c9f09 | 2007-05-25 18:50:28 +0000 | [diff] [blame] | 450 | VL_OBJS+= cirrus_vga.o parallel.o ptimer.o |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 451 | else |
bellard | 67e999b | 2006-09-03 16:09:07 +0000 | [diff] [blame] | 452 | VL_OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o |
| 453 | VL_OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o sparc32_dma.o |
blueswir1 | 8d05ea8 | 2007-05-24 19:48:41 +0000 | [diff] [blame] | 454 | VL_OBJS+= cs4231.o ptimer.o |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 455 | endif |
bellard | e95c8d5 | 2004-09-30 22:22:08 +0000 | [diff] [blame] | 456 | endif |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 457 | ifeq ($(TARGET_BASE_ARCH), arm) |
pbrook | cdbdb64 | 2006-04-09 01:32:52 +0000 | [diff] [blame] | 458 | VL_OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o |
pbrook | a1bb27b | 2007-04-06 16:49:48 +0000 | [diff] [blame] | 459 | VL_OBJS+= arm_boot.o pl011.o pl050.o pl080.o pl110.o pl181.o pl190.o |
pbrook | 6963d7a | 2007-05-23 01:13:57 +0000 | [diff] [blame] | 460 | VL_OBJS+= versatile_pci.o sd.o ptimer.o |
pbrook | e69954b | 2006-09-23 17:40:58 +0000 | [diff] [blame] | 461 | VL_OBJS+= arm_gic.o realview.o arm_sysctl.o |
pbrook | 8e71621 | 2007-01-20 17:12:09 +0000 | [diff] [blame] | 462 | VL_OBJS+= arm-semi.o |
balrog | b00052e | 2007-04-30 02:22:06 +0000 | [diff] [blame] | 463 | VL_OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o |
balrog | adb86c3 | 2007-05-23 22:04:23 +0000 | [diff] [blame] | 464 | VL_OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o max111x.o max7310.o |
| 465 | VL_OBJS+= spitz.o ads7846.o ide.o serial.o nand.o $(AUDIODRV) wm8750.o |
balrog | 5a1237c | 2007-05-02 02:11:51 +0000 | [diff] [blame] | 466 | CPPFLAGS += -DHAS_AUDIO |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 467 | endif |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 468 | ifeq ($(TARGET_BASE_ARCH), sh4) |
| 469 | VL_OBJS+= shix.o sh7750.o sh7750_regnames.o tc58128.o |
| 470 | endif |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 471 | ifeq ($(TARGET_BASE_ARCH), m68k) |
pbrook | 7e049b8 | 2007-06-04 00:31:01 +0000 | [diff] [blame] | 472 | VL_OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 473 | VL_OBJS+= m68k-semi.o |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 474 | endif |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 475 | ifdef CONFIG_GDBSTUB |
| 476 | VL_OBJS+=gdbstub.o |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 477 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 478 | ifdef CONFIG_SDL |
ths | 6070dd0 | 2007-01-24 21:40:21 +0000 | [diff] [blame] | 479 | VL_OBJS+=sdl.o x_keymap.o |
bellard | de5eaa6 | 2003-11-16 23:18:17 +0000 | [diff] [blame] | 480 | endif |
bellard | 2423686 | 2006-04-30 21:28:36 +0000 | [diff] [blame] | 481 | VL_OBJS+=vnc.o |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 482 | ifdef CONFIG_COCOA |
| 483 | VL_OBJS+=cocoa.o |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 484 | COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit |
| 485 | ifdef CONFIG_COREAUDIO |
| 486 | COCOA_LIBS+=-framework CoreAudio |
| 487 | endif |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 488 | endif |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 489 | ifdef CONFIG_SLIRP |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 490 | CPPFLAGS+=-I$(SRC_PATH)/slirp |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 491 | SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \ |
| 492 | slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \ |
bellard | c7f7464 | 2004-08-24 21:57:12 +0000 | [diff] [blame] | 493 | tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 494 | VL_OBJS+=$(addprefix slirp/, $(SLIRP_OBJS)) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 495 | endif |
| 496 | |
bellard | c321f67 | 2003-10-30 01:18:42 +0000 | [diff] [blame] | 497 | VL_LDFLAGS= |
ths | 70956b7 | 2007-03-17 15:00:37 +0000 | [diff] [blame] | 498 | VL_LIBS=$(AIOLIBS) |
bellard | c321f67 | 2003-10-30 01:18:42 +0000 | [diff] [blame] | 499 | # specific flags are needed for non soft mmu emulator |
bellard | c321f67 | 2003-10-30 01:18:42 +0000 | [diff] [blame] | 500 | ifdef CONFIG_STATIC |
| 501 | VL_LDFLAGS+=-static |
| 502 | endif |
bellard | de5eaa6 | 2003-11-16 23:18:17 +0000 | [diff] [blame] | 503 | ifndef CONFIG_SOFTMMU |
| 504 | VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld |
| 505 | endif |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 506 | ifndef CONFIG_DARWIN |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 507 | ifndef CONFIG_WIN32 |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 508 | ifndef CONFIG_SOLARIS |
ths | 70956b7 | 2007-03-17 15:00:37 +0000 | [diff] [blame] | 509 | VL_LIBS+=-lutil |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 510 | endif |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 511 | endif |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 512 | endif |
bellard | e3086fb | 2005-02-10 21:48:51 +0000 | [diff] [blame] | 513 | ifdef TARGET_GPROF |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 514 | vl.o: BASE_CFLAGS+=-p |
bellard | e3086fb | 2005-02-10 21:48:51 +0000 | [diff] [blame] | 515 | VL_LDFLAGS+=-p |
| 516 | endif |
bellard | c321f67 | 2003-10-30 01:18:42 +0000 | [diff] [blame] | 517 | |
bellard | b8076a7 | 2005-04-07 22:20:31 +0000 | [diff] [blame] | 518 | ifeq ($(ARCH),ia64) |
| 519 | VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld |
| 520 | endif |
| 521 | |
bellard | 74ccb34 | 2006-07-18 21:23:34 +0000 | [diff] [blame] | 522 | ifeq ($(ARCH),sparc64) |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 523 | VL_LDFLAGS+=-m64 |
| 524 | ifneq ($(CONFIG_SOLARIS),yes) |
| 525 | VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld |
| 526 | endif |
bellard | 74ccb34 | 2006-07-18 21:23:34 +0000 | [diff] [blame] | 527 | endif |
| 528 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 529 | ifdef CONFIG_WIN32 |
| 530 | SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole |
| 531 | endif |
| 532 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 533 | $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a |
pbrook | 3a11702 | 2007-02-27 21:02:54 +0000 | [diff] [blame] | 534 | $(CC) $(VL_LDFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS) |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 535 | |
| 536 | cocoa.o: cocoa.m |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 537 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 538 | |
bellard | 3d11d0e | 2004-12-12 16:56:30 +0000 | [diff] [blame] | 539 | sdl.o: sdl.c keymaps.c sdl_keysym.h |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 540 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 541 | |
bellard | 2423686 | 2006-04-30 21:28:36 +0000 | [diff] [blame] | 542 | vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 543 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 2423686 | 2006-04-30 21:28:36 +0000 | [diff] [blame] | 544 | |
bellard | 9f059ec | 2004-11-14 18:59:52 +0000 | [diff] [blame] | 545 | sdlaudio.o: sdlaudio.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 546 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 9f059ec | 2004-11-14 18:59:52 +0000 | [diff] [blame] | 547 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 548 | depend: $(SRCS) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 549 | $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 550 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 551 | vldepend: $(VL_OBJS:.o=.c) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 552 | $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 553 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 554 | # libqemu |
| 555 | |
| 556 | libqemu.a: $(LIBOBJS) |
| 557 | rm -f $@ |
| 558 | $(AR) rcs $@ $(LIBOBJS) |
| 559 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 560 | translate.o: translate.c gen-op.h opc.h cpu.h |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 561 | |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 562 | translate-all.o: translate-all.c opc.h cpu.h |
| 563 | |
| 564 | translate-op.o: translate-all.c op.h opc.h cpu.h |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 565 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 566 | op.h: op.o $(DYNGEN) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 567 | $(DYNGEN) -o $@ $< |
| 568 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 569 | opc.h: op.o $(DYNGEN) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 570 | $(DYNGEN) -c -o $@ $< |
| 571 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 572 | gen-op.h: op.o $(DYNGEN) |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 573 | $(DYNGEN) -g -o $@ $< |
| 574 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 575 | op.o: op.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 576 | $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $< |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 577 | |
bellard | 6e1b3e4 | 2006-08-17 17:41:26 +0000 | [diff] [blame] | 578 | # HELPER_CFLAGS is used for all the code compiled with static register |
| 579 | # variables |
| 580 | ifeq ($(TARGET_BASE_ARCH), i386) |
| 581 | # XXX: rename helper.c to op_helper.c |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 582 | helper.o: helper.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 583 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 6e1b3e4 | 2006-08-17 17:41:26 +0000 | [diff] [blame] | 584 | else |
| 585 | op_helper.o: op_helper.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 586 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 6e1b3e4 | 2006-08-17 17:41:26 +0000 | [diff] [blame] | 587 | endif |
| 588 | |
| 589 | cpu-exec.o: cpu-exec.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 590 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 591 | |
bellard | 00a67ba | 2006-10-28 12:19:07 +0000 | [diff] [blame] | 592 | # Note: this is a workaround. The real fix is to avoid compiling |
| 593 | # cpu_signal_handler() in cpu-exec.c. |
| 594 | signal.o: signal.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 595 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 00a67ba | 2006-10-28 12:19:07 +0000 | [diff] [blame] | 596 | |
blueswir1 | 9447084 | 2007-06-10 16:06:20 +0000 | [diff] [blame] | 597 | vga.o: pixel_ops.h |
| 598 | |
| 599 | tcx.o: pixel_ops.h |
| 600 | |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 601 | ifeq ($(TARGET_BASE_ARCH), i386) |
bellard | 664e0f1 | 2005-01-08 18:58:29 +0000 | [diff] [blame] | 602 | op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 603 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 604 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 605 | ifeq ($(TARGET_ARCH), arm) |
| 606 | op.o: op.c op_template.h |
pbrook | bdd5003 | 2006-02-06 04:11:15 +0000 | [diff] [blame] | 607 | pl110.o: pl110_template.h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 608 | endif |
| 609 | |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 610 | ifeq ($(TARGET_BASE_ARCH), sparc) |
blueswir1 | 0aac653 | 2007-06-01 16:44:42 +0000 | [diff] [blame] | 611 | helper.o: cpu.h exec-all.h |
| 612 | op.o: op.c op_template.h op_mem.h fop_template.h fbranch_template.h exec.h cpu.h |
| 613 | op_helper.o: exec.h softmmu_template.h cpu.h |
| 614 | translate.o: cpu.h exec-all.h disas.h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 615 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 616 | |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 617 | ifeq ($(TARGET_BASE_ARCH), ppc) |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 618 | op.o: op.c op_template.h op_mem.h |
| 619 | op_helper.o: op_helper_mem.h |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 620 | translate.o: translate.c translate_init.c |
bellard | 728c9fd | 2004-01-05 00:08:14 +0000 | [diff] [blame] | 621 | endif |
| 622 | |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 623 | ifeq ($(TARGET_BASE_ARCH), mips) |
| 624 | helper.o: cpu.h exec-all.h |
ths | 9daea90 | 2007-05-23 08:35:19 +0000 | [diff] [blame] | 625 | op.o: op_template.c fop_template.c op_mem.c exec.h cpu.h |
| 626 | op_helper.o: op_helper_mem.c exec.h softmmu_template.h cpu.h |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 627 | translate.o: translate_init.c exec-all.h disas.h |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 628 | endif |
| 629 | |
bellard | 5fe141f | 2006-04-23 17:12:42 +0000 | [diff] [blame] | 630 | loader.o: loader.c elf_ops.h |
| 631 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 632 | ifeq ($(TARGET_ARCH), sh4) |
| 633 | op.o: op.c op_mem.c cpu.h |
| 634 | op_helper.o: op_helper.c exec.h cpu.h |
| 635 | helper.o: helper.c exec.h cpu.h |
bellard | 27c7ca7 | 2006-04-27 21:32:09 +0000 | [diff] [blame] | 636 | sh7750.o: sh7750.c sh7750_regs.h sh7750_regnames.h cpu.h |
| 637 | shix.o: shix.c sh7750_regs.h sh7750_regnames.h |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 638 | sh7750_regnames.o: sh7750_regnames.c sh7750_regnames.h sh7750_regs.h |
bellard | 27c7ca7 | 2006-04-27 21:32:09 +0000 | [diff] [blame] | 639 | tc58128.o: tc58128.c |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 640 | endif |
| 641 | |
j_mayer | cf6c1b1 | 2007-04-05 20:46:02 +0000 | [diff] [blame] | 642 | ifeq ($(TARGET_BASE_ARCH), alpha) |
| 643 | op.o: op.c op_template.h op_mem.h |
| 644 | op_helper.o: op_helper_mem.h |
| 645 | endif |
| 646 | |
pbrook | 214feb5 | 2006-05-13 16:30:17 +0000 | [diff] [blame] | 647 | $(OBJS) $(LIBOBJS) $(VL_OBJS): config.h ../config-host.h |
| 648 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 649 | %.o: %.c |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 650 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 651 | |
bellard | f72b519 | 2004-02-16 21:55:35 +0000 | [diff] [blame] | 652 | %.o: %.S |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 653 | $(CC) $(CPPFLAGS) -c -o $@ $< |
bellard | f72b519 | 2004-02-16 21:55:35 +0000 | [diff] [blame] | 654 | |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 655 | clean: |
bellard | e362b55 | 2005-04-26 20:34:26 +0000 | [diff] [blame] | 656 | rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 657 | |
| 658 | install: all |
bellard | 9b14bb0 | 2004-03-26 22:43:34 +0000 | [diff] [blame] | 659 | ifneq ($(PROGS),) |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 660 | $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" |
bellard | 9b14bb0 | 2004-03-26 22:43:34 +0000 | [diff] [blame] | 661 | endif |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 662 | |
| 663 | ifneq ($(wildcard .depend),) |
| 664 | include .depend |
| 665 | endif |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 666 | |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 667 | ifeq (1, 0) |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 668 | audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \ |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 669 | fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 670 | CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare |
| 671 | endif |