blob: 01d2549755021f6f963360b93243f2aec97e0cbc [file] [log] [blame]
bellard626df762003-08-10 21:39:31 +00001include config.mak
2
bellard0b0babc2005-01-03 23:38:40 +00003TARGET_BASE_ARCH:=$(TARGET_ARCH)
4ifeq ($(TARGET_ARCH), x86_64)
5TARGET_BASE_ARCH:=i386
6endif
thsfbe4f652007-04-01 11:16:48 +00007ifeq ($(TARGET_ARCH), mips64)
8TARGET_BASE_ARCH:=mips
9endif
bellarda2458622005-07-23 22:39:53 +000010ifeq ($(TARGET_ARCH), ppc64)
11TARGET_BASE_ARCH:=ppc
12endif
j_mayerd4082e92007-04-24 07:34:03 +000013ifeq ($(TARGET_ARCH), ppcemb)
14TARGET_BASE_ARCH:=ppc
15endif
bellard64b3ab22005-01-30 22:43:42 +000016ifeq ($(TARGET_ARCH), sparc64)
17TARGET_BASE_ARCH:=sparc
18endif
bellard0b0babc2005-01-03 23:38:40 +000019TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
bellard85571bc2004-11-07 18:04:02 +000020VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw:$(SRC_PATH)/audio
ths6f30fa82007-01-05 01:00:47 +000021CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH)
ths831b7822007-01-18 20:06:33 +000022ifdef CONFIG_DARWIN_USER
23VPATH+=:$(SRC_PATH)/darwin-user
24CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
25endif
26ifdef CONFIG_LINUX_USER
bellard3035f7f2004-03-21 17:02:00 +000027VPATH+=:$(SRC_PATH)/linux-user
ths6f30fa82007-01-05 01:00:47 +000028CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH)
bellard3035f7f2004-03-21 17:02:00 +000029endif
ths6f30fa82007-01-05 01:00:47 +000030BASE_CFLAGS=
31BASE_LDFLAGS=
bellard0b0babc2005-01-03 23:38:40 +000032#CFLAGS+=-Werror
bellard626df762003-08-10 21:39:31 +000033LIBS=
bellard626df762003-08-10 21:39:31 +000034HELPER_CFLAGS=$(CFLAGS)
bellard67b915a2004-03-31 23:37:16 +000035DYNGEN=../dyngen$(EXESUF)
bellard1e43adf2003-09-30 20:54:24 +000036# user emulator name
bellardc91fde62006-05-02 22:52:36 +000037TARGET_ARCH2=$(TARGET_ARCH)
bellard808c4952004-12-19 23:33:47 +000038ifeq ($(TARGET_ARCH),arm)
39 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
bellardc91fde62006-05-02 22:52:36 +000040 TARGET_ARCH2=armeb
bellard808c4952004-12-19 23:33:47 +000041 endif
bellardc91fde62006-05-02 22:52:36 +000042endif
pbrook908f52b2006-06-18 19:16:53 +000043ifeq ($(TARGET_ARCH),sh4)
44 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
45 TARGET_ARCH2=sh4eb
46 endif
47endif
bellard01f5e592005-12-06 21:42:17 +000048ifeq ($(TARGET_ARCH),mips)
bellardc91fde62006-05-02 22:52:36 +000049 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
50 TARGET_ARCH2=mipsel
bellard01f5e592005-12-06 21:42:17 +000051 endif
bellard808c4952004-12-19 23:33:47 +000052endif
thsfbe4f652007-04-01 11:16:48 +000053ifeq ($(TARGET_ARCH),mips64)
54 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
55 TARGET_ARCH2=mips64el
56 endif
57endif
bellardc91fde62006-05-02 22:52:36 +000058QEMU_USER=qemu-$(TARGET_ARCH2)
bellard1e43adf2003-09-30 20:54:24 +000059# system emulator name
60ifdef CONFIG_SOFTMMU
bellarda541f292004-04-12 20:39:29 +000061ifeq ($(TARGET_ARCH), i386)
bellard67b915a2004-03-31 23:37:16 +000062QEMU_SYSTEM=qemu$(EXESUF)
bellard0db63472003-10-27 21:37:46 +000063else
bellardc91fde62006-05-02 22:52:36 +000064QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF)
bellarda541f292004-04-12 20:39:29 +000065endif
66else
bellard0db63472003-10-27 21:37:46 +000067QEMU_SYSTEM=qemu-fast
bellard1e43adf2003-09-30 20:54:24 +000068endif
69
bellard16e9b7d2003-10-27 21:09:52 +000070ifdef CONFIG_USER_ONLY
bellard1e43adf2003-09-30 20:54:24 +000071PROGS=$(QEMU_USER)
bellard16e9b7d2003-10-27 21:09:52 +000072else
bellard16e9b7d2003-10-27 21:09:52 +000073PROGS+=$(QEMU_SYSTEM)
bellardde5eaa62003-11-16 23:18:17 +000074ifndef CONFIG_SOFTMMU
75CONFIG_STATIC=y
76endif
bellard728c9fd2004-01-05 00:08:14 +000077endif # !CONFIG_USER_ONLY
78
bellard626df762003-08-10 21:39:31 +000079ifdef CONFIG_STATIC
ths6f30fa82007-01-05 01:00:47 +000080BASE_LDFLAGS+=-static
bellard626df762003-08-10 21:39:31 +000081endif
82
ths6f30fa82007-01-05 01:00:47 +000083# We require -O2 to avoid the stack setup prologue in EXIT_TB
ths6c041c52007-03-18 23:23:31 +000084OP_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
89cc-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
92OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
93OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
94OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
95OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
96OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
97OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
98OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
99OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
ths6f30fa82007-01-05 01:00:47 +0000100
bellard626df762003-08-10 21:39:31 +0000101ifeq ($(ARCH),i386)
ths6f30fa82007-01-05 01:00:47 +0000102HELPER_CFLAGS+=-fomit-frame-pointer
103OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
bellard626df762003-08-10 21:39:31 +0000104ifdef TARGET_GPROF
bellard3a4739d2003-10-28 00:48:22 +0000105USE_I386_LD=y
106endif
107ifdef CONFIG_STATIC
108USE_I386_LD=y
109endif
110ifdef USE_I386_LD
ths6f30fa82007-01-05 01:00:47 +0000111BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
bellard626df762003-08-10 21:39:31 +0000112else
ths831b7822007-01-18 20:06:33 +0000113ifdef CONFIG_LINUX_USER
bellard626df762003-08-10 21:39:31 +0000114# 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!
ths6f30fa82007-01-05 01:00:47 +0000117BASE_LDFLAGS+=-Wl,-shared
bellard626df762003-08-10 21:39:31 +0000118endif
bellard626df762003-08-10 21:39:31 +0000119endif
ths831b7822007-01-18 20:06:33 +0000120endif
bellard626df762003-08-10 21:39:31 +0000121
bellard0b0babc2005-01-03 23:38:40 +0000122ifeq ($(ARCH),x86_64)
ths6f30fa82007-01-05 01:00:47 +0000123BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
bellardbc51c5c2004-03-17 23:46:04 +0000124endif
125
bellard626df762003-08-10 21:39:31 +0000126ifeq ($(ARCH),ppc)
ths6f30fa82007-01-05 01:00:47 +0000127CPPFLAGS+= -D__powerpc__
ths831b7822007-01-18 20:06:33 +0000128ifdef CONFIG_LINUX_USER
ths6f30fa82007-01-05 01:00:47 +0000129BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
bellard626df762003-08-10 21:39:31 +0000130endif
ths831b7822007-01-18 20:06:33 +0000131endif
bellard626df762003-08-10 21:39:31 +0000132
133ifeq ($(ARCH),s390)
ths6f30fa82007-01-05 01:00:47 +0000134BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
bellard626df762003-08-10 21:39:31 +0000135endif
136
137ifeq ($(ARCH),sparc)
blueswir131422552007-04-16 18:27:06 +0000138 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
bellardfdbb4692006-06-14 17:32:25 +0000148endif
bellard626df762003-08-10 21:39:31 +0000149
150ifeq ($(ARCH),sparc64)
blueswir131422552007-04-16 18:27:06 +0000151 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
bellard626df762003-08-10 21:39:31 +0000157endif
158
159ifeq ($(ARCH),alpha)
ths6f30fa82007-01-05 01:00:47 +0000160# -msmall-data is not used for OP_CFLAGS because we want two-instruction
161# relocations for the constant constructions
bellard626df762003-08-10 21:39:31 +0000162# Ensure there's only a single GP
ths6f30fa82007-01-05 01:00:47 +0000163BASE_CFLAGS+=-msmall-data
164BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
bellard626df762003-08-10 21:39:31 +0000165endif
166
167ifeq ($(ARCH),ia64)
ths6f30fa82007-01-05 01:00:47 +0000168BASE_CFLAGS+=-mno-sdata
169OP_CFLAGS+=-mno-sdata
170BASE_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
bellard626df762003-08-10 21:39:31 +0000171endif
172
173ifeq ($(ARCH),arm)
ths6f30fa82007-01-05 01:00:47 +0000174OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
175BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
bellard626df762003-08-10 21:39:31 +0000176endif
177
bellard38e584a2003-08-10 22:14:22 +0000178ifeq ($(ARCH),m68k)
ths6f30fa82007-01-05 01:00:47 +0000179OP_CFLAGS+=-fomit-frame-pointer
180BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
181endif
182
183ifeq ($(ARCH),mips)
ths9617efe2007-05-08 21:05:55 +0000184OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
thsfbe4f652007-04-01 11:16:48 +0000185ifeq ($(WORDS_BIGENDIAN),yes)
ths6f30fa82007-01-05 01:00:47 +0000186BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
thsfbe4f652007-04-01 11:16:48 +0000187else
188BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
189endif
190endif
191
192ifeq ($(ARCH),mips64)
ths9617efe2007-05-08 21:05:55 +0000193OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
thsfbe4f652007-04-01 11:16:48 +0000194ifeq ($(WORDS_BIGENDIAN),yes)
195BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
196else
197BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
198endif
bellard38e584a2003-08-10 22:14:22 +0000199endif
200
bellard83fb7ad2004-07-05 21:25:26 +0000201ifeq ($(CONFIG_DARWIN),yes)
bellarde80cfcf2004-12-19 23:18:01 +0000202LIBS+=-lmx
bellard83fb7ad2004-07-05 21:25:26 +0000203endif
204
ths01feaa02007-01-31 12:24:18 +0000205ifdef CONFIG_DARWIN_USER
206# Leave some space for the regular program loading zone
207BASE_LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
208endif
209
blueswir131422552007-04-16 18:27:06 +0000210BASE_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
211BASE_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
212OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
213OP_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
ths6f30fa82007-01-05 01:00:47 +0000214
bellard626df762003-08-10 21:39:31 +0000215#########################################################
216
ths6f30fa82007-01-05 01:00:47 +0000217CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
bellard626df762003-08-10 21:39:31 +0000218LIBS+=-lm
bellardb932cab2004-08-01 21:46:49 +0000219ifndef CONFIG_USER_ONLY
220LIBS+=-lz
221endif
bellard67b915a2004-03-31 23:37:16 +0000222ifdef CONFIG_WIN32
bellard3db38e82004-07-14 17:19:55 +0000223LIBS+=-lwinmm -lws2_32 -liphlpapi
bellard67b915a2004-03-31 23:37:16 +0000224endif
bellardec530c82006-04-25 22:36:06 +0000225ifdef CONFIG_SOLARIS
226LIBS+=-lsocket -lnsl -lresolv
ths0475a5c2007-04-01 18:54:44 +0000227ifdef NEEDS_LIBSUNMATH
228LIBS+=-lsunmath
229LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
230OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
231BASE_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
232endif
bellardec530c82006-04-25 22:36:06 +0000233endif
bellard626df762003-08-10 21:39:31 +0000234
235# profiling code
236ifdef TARGET_GPROF
ths6f30fa82007-01-05 01:00:47 +0000237BASE_LDFLAGS+=-p
238main.o: BASE_CFLAGS+=-p
bellard626df762003-08-10 21:39:31 +0000239endif
240
ths831b7822007-01-18 20:06:33 +0000241ifdef CONFIG_LINUX_USER
pbrooke5fe0c52006-06-11 13:32:59 +0000242OBJS= main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o \
243 elfload.o linuxload.o
thsb5906f92007-03-19 13:32:45 +0000244LIBS+= $(AIOLIBS)
pbrooke5fe0c52006-06-11 13:32:59 +0000245ifdef TARGET_HAS_BFLT
246OBJS+= flatload.o
247endif
248
bellard626df762003-08-10 21:39:31 +0000249ifeq ($(TARGET_ARCH), i386)
250OBJS+= vm86.o
251endif
bellardf72b5192004-02-16 21:55:35 +0000252ifeq ($(TARGET_ARCH), arm)
bellard158142c2005-03-13 16:54:06 +0000253OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
bellardf72b5192004-02-16 21:55:35 +0000254nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
bellarda4f81972005-04-23 18:25:41 +0000255 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
bellardf72b5192004-02-16 21:55:35 +0000256endif
pbrooke6e59062006-10-22 00:18:54 +0000257ifeq ($(TARGET_ARCH), m68k)
258OBJS+= m68k-sim.o m68k-semi.o
259endif
ths831b7822007-01-18 20:06:33 +0000260endif #CONFIG_LINUX_USER
261
262ifdef CONFIG_DARWIN_USER
263OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
264endif
265
bellard626df762003-08-10 21:39:31 +0000266SRCS:= $(OBJS:.o=.c)
267OBJS+= libqemu.a
268
269# cpu emulator library
bellard158142c2005-03-13 16:54:06 +0000270LIBOBJS=exec.o kqemu.o translate-op.o translate-all.o cpu-exec.o\
bellarde3086fb2005-02-10 21:48:51 +0000271 translate.o op.o
bellard158142c2005-03-13 16:54:06 +0000272ifdef CONFIG_SOFTFLOAT
273LIBOBJS+=fpu/softfloat.o
274else
275LIBOBJS+=fpu/softfloat-native.o
276endif
ths6f30fa82007-01-05 01:00:47 +0000277CPPFLAGS+=-I$(SRC_PATH)/fpu
bellard626df762003-08-10 21:39:31 +0000278
279ifeq ($(TARGET_ARCH), i386)
bellard1e43adf2003-09-30 20:54:24 +0000280LIBOBJS+=helper.o helper2.o
bellardf72b5192004-02-16 21:55:35 +0000281ifeq ($(ARCH), i386)
282LIBOBJS+=translate-copy.o
283endif
bellard626df762003-08-10 21:39:31 +0000284endif
285
bellard0b0babc2005-01-03 23:38:40 +0000286ifeq ($(TARGET_ARCH), x86_64)
287LIBOBJS+=helper.o helper2.o
288endif
289
bellarda2458622005-07-23 22:39:53 +0000290ifeq ($(TARGET_BASE_ARCH), ppc)
bellard728c9fd2004-01-05 00:08:14 +0000291LIBOBJS+= op_helper.o helper.o
bellard67867302003-11-23 17:05:30 +0000292endif
293
thsfbe4f652007-04-01 11:16:48 +0000294ifeq ($(TARGET_BASE_ARCH), mips)
bellard6af0bf92005-07-02 14:58:51 +0000295LIBOBJS+= op_helper.o helper.o
296endif
297
bellard64b3ab22005-01-30 22:43:42 +0000298ifeq ($(TARGET_BASE_ARCH), sparc)
bellarde95c8d52004-09-30 22:22:08 +0000299LIBOBJS+= op_helper.o helper.o
300endif
301
bellardb7bcbe92005-02-22 19:27:29 +0000302ifeq ($(TARGET_BASE_ARCH), arm)
bellardb5ff1b32005-11-26 10:38:39 +0000303LIBOBJS+= op_helper.o helper.o
bellardb7bcbe92005-02-22 19:27:29 +0000304endif
305
bellardfdf9b3e2006-04-27 21:07:38 +0000306ifeq ($(TARGET_BASE_ARCH), sh4)
307LIBOBJS+= op_helper.o helper.o
308endif
309
pbrooke6e59062006-10-22 00:18:54 +0000310ifeq ($(TARGET_BASE_ARCH), m68k)
pbrook06338792007-05-23 19:58:11 +0000311LIBOBJS+= op_helper.o helper.o
pbrooke6e59062006-10-22 00:18:54 +0000312endif
313
j_mayercf6c1b12007-04-05 20:46:02 +0000314ifeq ($(TARGET_BASE_ARCH), alpha)
315LIBOBJS+= op_helper.o helper.o alpha_palcode.o
316endif
317
bellard626df762003-08-10 21:39:31 +0000318# NOTE: the disassembler code is only needed for debugging
319LIBOBJS+=disas.o
320ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
bellardbc51c5c2004-03-17 23:46:04 +0000321USE_I386_DIS=y
322endif
bellard0b0babc2005-01-03 23:38:40 +0000323ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
bellardbc51c5c2004-03-17 23:46:04 +0000324USE_I386_DIS=y
325endif
326ifdef USE_I386_DIS
bellard626df762003-08-10 21:39:31 +0000327LIBOBJS+=i386-dis.o
328endif
329ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
330LIBOBJS+=alpha-dis.o
331endif
bellarda2458622005-07-23 22:39:53 +0000332ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
bellard626df762003-08-10 21:39:31 +0000333LIBOBJS+=ppc-dis.o
334endif
thsfbe4f652007-04-01 11:16:48 +0000335ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
bellard6af0bf92005-07-02 14:58:51 +0000336LIBOBJS+=mips-dis.o
337endif
bellard64b3ab22005-01-30 22:43:42 +0000338ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
bellard626df762003-08-10 21:39:31 +0000339LIBOBJS+=sparc-dis.o
340endif
341ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
342LIBOBJS+=arm-dis.o
343endif
bellard48024e42005-11-06 16:52:11 +0000344ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
345LIBOBJS+=m68k-dis.o
346endif
bellardfdf9b3e2006-04-27 21:07:38 +0000347ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
348LIBOBJS+=sh4-dis.o
349endif
bellard626df762003-08-10 21:39:31 +0000350
bellard1fddef42005-04-17 19:16:13 +0000351ifdef CONFIG_GDBSTUB
352OBJS+=gdbstub.o
353endif
bellard626df762003-08-10 21:39:31 +0000354
bellard1e43adf2003-09-30 20:54:24 +0000355all: $(PROGS)
bellard626df762003-08-10 21:39:31 +0000356
bellard1e43adf2003-09-30 20:54:24 +0000357$(QEMU_USER): $(OBJS)
ths6f30fa82007-01-05 01:00:47 +0000358 $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ $(LIBS)
bellard626df762003-08-10 21:39:31 +0000359ifeq ($(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
363endif
364
365# must use static linking to avoid leaving stuff in virtual address space
pbrookaef445b2006-09-18 01:15:29 +0000366VL_OBJS=vl.o osdep.o readline.o monitor.o pci.o console.o loader.o isa_mmio.o
bellard18607dc2007-01-07 22:04:40 +0000367VL_OBJS+=cutils.o
ths69d35722007-05-16 11:59:40 +0000368VL_OBJS+=host-utils.o
bellard83f64092006-08-01 16:21:11 +0000369VL_OBJS+=block.o block-raw.o
bellard42ca6382006-08-05 21:29:27 +0000370VL_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
pbrookd537cf62007-04-07 18:14:41 +0000371VL_OBJS+=irq.o
bellard7fb843f2006-02-01 23:06:55 +0000372ifdef CONFIG_WIN32
373VL_OBJS+=tap-win32.o
374endif
bellarda541f292004-04-12 20:39:29 +0000375
bellard1d14ffa2005-10-30 18:58:22 +0000376SOUND_HW = sb16.o es1370.o
balrogb00052e2007-04-30 02:22:06 +0000377AUDIODRV = audio.o noaudio.o wavaudio.o mixeng.o
bellardfb065182004-11-09 23:09:44 +0000378ifdef CONFIG_SDL
379AUDIODRV += sdlaudio.o
380endif
381ifdef CONFIG_OSS
382AUDIODRV += ossaudio.o
383endif
bellard1d14ffa2005-10-30 18:58:22 +0000384ifdef CONFIG_COREAUDIO
385AUDIODRV += coreaudio.o
bellard85571bc2004-11-07 18:04:02 +0000386endif
bellard1d14ffa2005-10-30 18:58:22 +0000387ifdef CONFIG_ALSA
388AUDIODRV += alsaaudio.o
389LIBS += -lasound
390endif
391ifdef CONFIG_DSOUND
392AUDIODRV += dsoundaudio.o
393LIBS += -lole32 -ldxguid
394endif
bellard102a52e2004-11-14 19:57:29 +0000395ifdef CONFIG_FMOD
bellard85571bc2004-11-07 18:04:02 +0000396AUDIODRV += fmodaudio.o
ths6f30fa82007-01-05 01:00:47 +0000397audio.o fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
bellard102a52e2004-11-14 19:57:29 +0000398LIBS += $(CONFIG_FMOD_LIB)
bellard85571bc2004-11-07 18:04:02 +0000399endif
bellard1d14ffa2005-10-30 18:58:22 +0000400ifdef CONFIG_ADLIB
401SOUND_HW += fmopl.o adlib.o
402endif
bellardec36b692006-07-16 18:57:03 +0000403AUDIODRV+= wavcapture.o
bellard85571bc2004-11-07 18:04:02 +0000404
pbrook0ff596d2007-05-23 00:03:59 +0000405VL_OBJS += i2c.o smbus.o
406
pbrook2e5d83b2006-05-25 23:58:51 +0000407# SCSI layer
pbrook7d8406b2006-05-30 01:48:12 +0000408VL_OBJS+= scsi-disk.o cdrom.o lsi53c895a.o
pbrook2e5d83b2006-05-25 23:58:51 +0000409
bellarda594cfb2005-11-06 16:13:29 +0000410# USB layer
pbrook2e5d83b2006-05-25 23:58:51 +0000411VL_OBJS+= usb.o usb-hub.o usb-linux.o usb-hid.o usb-ohci.o usb-msd.o
balrogf6d2a312007-06-10 19:21:04 +0000412VL_OBJS+= usb-wacom.o
bellarda594cfb2005-11-06 16:13:29 +0000413
ths663e8e52007-04-02 12:35:34 +0000414# EEPROM emulation
415VL_OBJS += eeprom93xx.o
416
pbrooka41b2ff2006-02-05 04:14:41 +0000417# PCI network cards
ths663e8e52007-04-02 12:35:34 +0000418VL_OBJS += eepro100.o
419VL_OBJS += ne2000.o
420VL_OBJS += pcnet.o
421VL_OBJS += rtl8139.o
pbrooka41b2ff2006-02-05 04:14:41 +0000422
bellard0b0babc2005-01-03 23:38:40 +0000423ifeq ($(TARGET_BASE_ARCH), i386)
bellarda541f292004-04-12 20:39:29 +0000424# Hardware support
pbrooka41b2ff2006-02-05 04:14:41 +0000425VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
bellardfd06c372006-04-24 21:58:30 +0000426VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
balrogb00052e2007-04-30 02:22:06 +0000427VL_OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
thsd34cab92007-04-02 01:10:46 +0000428VL_OBJS+= usb-uhci.o smbus_eeprom.o vmmouse.o vmware_vga.o
balrogb00052e2007-04-30 02:22:06 +0000429CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
bellard67b915a2004-03-31 23:37:16 +0000430endif
bellarda2458622005-07-23 22:39:53 +0000431ifeq ($(TARGET_BASE_ARCH), ppc)
pbrooka41b2ff2006-02-05 04:14:41 +0000432VL_OBJS+= ppc.o ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
j_mayer8ecc7912007-04-16 20:09:45 +0000433VL_OBJS+= mc146818rtc.o serial.o i8259.o i8254.o fdc.o m48t59.o pflash_cfi02.o
balrogb00052e2007-04-30 02:22:06 +0000434VL_OBJS+= ppc_prep.o ppc_chrp.o cuda.o adb.o openpic.o heathrow_pic.o
j_mayer1a6c0882007-04-24 07:40:49 +0000435VL_OBJS+= grackle_pci.o prep_pci.o unin_pci.o ppc405_uc.o ppc405_boards.o
balrogb00052e2007-04-30 02:22:06 +0000436CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
bellarda541f292004-04-12 20:39:29 +0000437endif
thsfbe4f652007-04-01 11:16:48 +0000438ifeq ($(TARGET_BASE_ARCH), mips)
thsad6fe1d2007-04-16 17:23:27 +0000439VL_OBJS+= mips_r4k.o mips_malta.o mips_pica61.o
440VL_OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o
ths31211df2007-06-25 10:57:10 +0000441VL_OBJS+= jazz_led.o
ths95426112007-02-28 21:36:41 +0000442VL_OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
ths7b717332007-05-28 21:01:02 +0000443VL_OBJS+= piix_pci.o smbus_eeprom.o parallel.o mixeng.o cirrus_vga.o $(SOUND_HW) $(AUDIODRV)
ths83b1fb82007-04-11 22:46:06 +0000444CPPFLAGS += -DHAS_AUDIO
bellard6af0bf92005-07-02 14:58:51 +0000445endif
bellard64b3ab22005-01-30 22:43:42 +0000446ifeq ($(TARGET_BASE_ARCH), sparc)
bellard34751872005-07-02 14:31:34 +0000447ifeq ($(TARGET_ARCH), sparc64)
pbrook502a5392006-05-13 16:11:23 +0000448VL_OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
bellard83469012005-07-23 14:27:54 +0000449VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
blueswir120c9f092007-05-25 18:50:28 +0000450VL_OBJS+= cirrus_vga.o parallel.o ptimer.o
bellard34751872005-07-02 14:31:34 +0000451else
bellard67e999b2006-09-03 16:09:07 +0000452VL_OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
453VL_OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o sparc32_dma.o
blueswir18d05ea82007-05-24 19:48:41 +0000454VL_OBJS+= cs4231.o ptimer.o
bellard34751872005-07-02 14:31:34 +0000455endif
bellarde95c8d52004-09-30 22:22:08 +0000456endif
bellardb5ff1b32005-11-26 10:38:39 +0000457ifeq ($(TARGET_BASE_ARCH), arm)
pbrookcdbdb642006-04-09 01:32:52 +0000458VL_OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
pbrooka1bb27b2007-04-06 16:49:48 +0000459VL_OBJS+= arm_boot.o pl011.o pl050.o pl080.o pl110.o pl181.o pl190.o
pbrook6963d7a2007-05-23 01:13:57 +0000460VL_OBJS+= versatile_pci.o sd.o ptimer.o
pbrooke69954b2006-09-23 17:40:58 +0000461VL_OBJS+= arm_gic.o realview.o arm_sysctl.o
pbrook8e716212007-01-20 17:12:09 +0000462VL_OBJS+= arm-semi.o
balrogb00052e2007-04-30 02:22:06 +0000463VL_OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
balrogadb86c32007-05-23 22:04:23 +0000464VL_OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o max111x.o max7310.o
465VL_OBJS+= spitz.o ads7846.o ide.o serial.o nand.o $(AUDIODRV) wm8750.o
balrog5a1237c2007-05-02 02:11:51 +0000466CPPFLAGS += -DHAS_AUDIO
bellardb5ff1b32005-11-26 10:38:39 +0000467endif
bellardfdf9b3e2006-04-27 21:07:38 +0000468ifeq ($(TARGET_BASE_ARCH), sh4)
469VL_OBJS+= shix.o sh7750.o sh7750_regnames.o tc58128.o
470endif
pbrook06338792007-05-23 19:58:11 +0000471ifeq ($(TARGET_BASE_ARCH), m68k)
pbrook7e049b82007-06-04 00:31:01 +0000472VL_OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
pbrooka87295e2007-05-26 15:09:38 +0000473VL_OBJS+= m68k-semi.o
pbrook06338792007-05-23 19:58:11 +0000474endif
bellarda541f292004-04-12 20:39:29 +0000475ifdef CONFIG_GDBSTUB
476VL_OBJS+=gdbstub.o
bellard728c9fd2004-01-05 00:08:14 +0000477endif
bellard626df762003-08-10 21:39:31 +0000478ifdef CONFIG_SDL
ths6070dd02007-01-24 21:40:21 +0000479VL_OBJS+=sdl.o x_keymap.o
bellardde5eaa62003-11-16 23:18:17 +0000480endif
bellard24236862006-04-30 21:28:36 +0000481VL_OBJS+=vnc.o
bellard5b0753e2005-03-01 21:37:28 +0000482ifdef CONFIG_COCOA
483VL_OBJS+=cocoa.o
bellard1d14ffa2005-10-30 18:58:22 +0000484COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
485ifdef CONFIG_COREAUDIO
486COCOA_LIBS+=-framework CoreAudio
487endif
bellard5b0753e2005-03-01 21:37:28 +0000488endif
bellard7c1f25b2004-04-22 00:02:08 +0000489ifdef CONFIG_SLIRP
ths6f30fa82007-01-05 01:00:47 +0000490CPPFLAGS+=-I$(SRC_PATH)/slirp
bellard7c1f25b2004-04-22 00:02:08 +0000491SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
492slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
bellardc7f74642004-08-24 21:57:12 +0000493tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
bellard7c1f25b2004-04-22 00:02:08 +0000494VL_OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
bellard626df762003-08-10 21:39:31 +0000495endif
496
bellardc321f672003-10-30 01:18:42 +0000497VL_LDFLAGS=
ths70956b72007-03-17 15:00:37 +0000498VL_LIBS=$(AIOLIBS)
bellardc321f672003-10-30 01:18:42 +0000499# specific flags are needed for non soft mmu emulator
bellardc321f672003-10-30 01:18:42 +0000500ifdef CONFIG_STATIC
501VL_LDFLAGS+=-static
502endif
bellardde5eaa62003-11-16 23:18:17 +0000503ifndef CONFIG_SOFTMMU
504VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld
505endif
bellard83fb7ad2004-07-05 21:25:26 +0000506ifndef CONFIG_DARWIN
bellard11d9f692004-04-02 20:55:59 +0000507ifndef CONFIG_WIN32
bellardec530c82006-04-25 22:36:06 +0000508ifndef CONFIG_SOLARIS
ths70956b72007-03-17 15:00:37 +0000509VL_LIBS+=-lutil
bellard11d9f692004-04-02 20:55:59 +0000510endif
bellard83fb7ad2004-07-05 21:25:26 +0000511endif
bellardec530c82006-04-25 22:36:06 +0000512endif
bellarde3086fb2005-02-10 21:48:51 +0000513ifdef TARGET_GPROF
ths6f30fa82007-01-05 01:00:47 +0000514vl.o: BASE_CFLAGS+=-p
bellarde3086fb2005-02-10 21:48:51 +0000515VL_LDFLAGS+=-p
516endif
bellardc321f672003-10-30 01:18:42 +0000517
bellardb8076a72005-04-07 22:20:31 +0000518ifeq ($(ARCH),ia64)
519VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
520endif
521
bellard74ccb342006-07-18 21:23:34 +0000522ifeq ($(ARCH),sparc64)
blueswir131422552007-04-16 18:27:06 +0000523 VL_LDFLAGS+=-m64
524 ifneq ($(CONFIG_SOLARIS),yes)
525 VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
526 endif
bellard74ccb342006-07-18 21:23:34 +0000527endif
528
bellard1d14ffa2005-10-30 18:58:22 +0000529ifdef CONFIG_WIN32
530SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
531endif
532
bellard1e43adf2003-09-30 20:54:24 +0000533$(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
pbrook3a117022007-02-27 21:02:54 +0000534 $(CC) $(VL_LDFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
bellard5b0753e2005-03-01 21:37:28 +0000535
536cocoa.o: cocoa.m
ths6f30fa82007-01-05 01:00:47 +0000537 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard626df762003-08-10 21:39:31 +0000538
bellard3d11d0e2004-12-12 16:56:30 +0000539sdl.o: sdl.c keymaps.c sdl_keysym.h
ths6f30fa82007-01-05 01:00:47 +0000540 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard626df762003-08-10 21:39:31 +0000541
bellard24236862006-04-30 21:28:36 +0000542vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h
ths6f30fa82007-01-05 01:00:47 +0000543 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard24236862006-04-30 21:28:36 +0000544
bellard9f059ec2004-11-14 18:59:52 +0000545sdlaudio.o: sdlaudio.c
ths6f30fa82007-01-05 01:00:47 +0000546 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard9f059ec2004-11-14 18:59:52 +0000547
bellard626df762003-08-10 21:39:31 +0000548depend: $(SRCS)
ths6f30fa82007-01-05 01:00:47 +0000549 $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
bellard626df762003-08-10 21:39:31 +0000550
bellard1d14ffa2005-10-30 18:58:22 +0000551vldepend: $(VL_OBJS:.o=.c)
ths6f30fa82007-01-05 01:00:47 +0000552 $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
bellard1d14ffa2005-10-30 18:58:22 +0000553
bellard626df762003-08-10 21:39:31 +0000554# libqemu
555
556libqemu.a: $(LIBOBJS)
557 rm -f $@
558 $(AR) rcs $@ $(LIBOBJS)
559
bellard1e43adf2003-09-30 20:54:24 +0000560translate.o: translate.c gen-op.h opc.h cpu.h
bellard626df762003-08-10 21:39:31 +0000561
bellard158142c2005-03-13 16:54:06 +0000562translate-all.o: translate-all.c opc.h cpu.h
563
564translate-op.o: translate-all.c op.h opc.h cpu.h
bellard626df762003-08-10 21:39:31 +0000565
bellard1e43adf2003-09-30 20:54:24 +0000566op.h: op.o $(DYNGEN)
bellard626df762003-08-10 21:39:31 +0000567 $(DYNGEN) -o $@ $<
568
bellard1e43adf2003-09-30 20:54:24 +0000569opc.h: op.o $(DYNGEN)
bellard626df762003-08-10 21:39:31 +0000570 $(DYNGEN) -c -o $@ $<
571
bellard1e43adf2003-09-30 20:54:24 +0000572gen-op.h: op.o $(DYNGEN)
bellard626df762003-08-10 21:39:31 +0000573 $(DYNGEN) -g -o $@ $<
574
bellard1e43adf2003-09-30 20:54:24 +0000575op.o: op.c
ths6f30fa82007-01-05 01:00:47 +0000576 $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
bellard626df762003-08-10 21:39:31 +0000577
bellard6e1b3e42006-08-17 17:41:26 +0000578# HELPER_CFLAGS is used for all the code compiled with static register
579# variables
580ifeq ($(TARGET_BASE_ARCH), i386)
581# XXX: rename helper.c to op_helper.c
bellard1e43adf2003-09-30 20:54:24 +0000582helper.o: helper.c
ths6f30fa82007-01-05 01:00:47 +0000583 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard6e1b3e42006-08-17 17:41:26 +0000584else
585op_helper.o: op_helper.c
ths6f30fa82007-01-05 01:00:47 +0000586 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard6e1b3e42006-08-17 17:41:26 +0000587endif
588
589cpu-exec.o: cpu-exec.c
ths6f30fa82007-01-05 01:00:47 +0000590 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard626df762003-08-10 21:39:31 +0000591
bellard00a67ba2006-10-28 12:19:07 +0000592# Note: this is a workaround. The real fix is to avoid compiling
593# cpu_signal_handler() in cpu-exec.c.
594signal.o: signal.c
ths6f30fa82007-01-05 01:00:47 +0000595 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard00a67ba2006-10-28 12:19:07 +0000596
blueswir194470842007-06-10 16:06:20 +0000597vga.o: pixel_ops.h
598
599tcx.o: pixel_ops.h
600
bellard0b0babc2005-01-03 23:38:40 +0000601ifeq ($(TARGET_BASE_ARCH), i386)
bellard664e0f12005-01-08 18:58:29 +0000602op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h
bellard1e43adf2003-09-30 20:54:24 +0000603endif
bellard626df762003-08-10 21:39:31 +0000604
bellard1e43adf2003-09-30 20:54:24 +0000605ifeq ($(TARGET_ARCH), arm)
606op.o: op.c op_template.h
pbrookbdd50032006-02-06 04:11:15 +0000607pl110.o: pl110_template.h
bellard1e43adf2003-09-30 20:54:24 +0000608endif
609
bellard64b3ab22005-01-30 22:43:42 +0000610ifeq ($(TARGET_BASE_ARCH), sparc)
blueswir10aac6532007-06-01 16:44:42 +0000611helper.o: cpu.h exec-all.h
612op.o: op.c op_template.h op_mem.h fop_template.h fbranch_template.h exec.h cpu.h
613op_helper.o: exec.h softmmu_template.h cpu.h
614translate.o: cpu.h exec-all.h disas.h
bellard1e43adf2003-09-30 20:54:24 +0000615endif
bellard626df762003-08-10 21:39:31 +0000616
bellarda2458622005-07-23 22:39:53 +0000617ifeq ($(TARGET_BASE_ARCH), ppc)
bellard728c9fd2004-01-05 00:08:14 +0000618op.o: op.c op_template.h op_mem.h
619op_helper.o: op_helper_mem.h
bellard3fc6c082005-07-02 20:59:34 +0000620translate.o: translate.c translate_init.c
bellard728c9fd2004-01-05 00:08:14 +0000621endif
622
thsfbe4f652007-04-01 11:16:48 +0000623ifeq ($(TARGET_BASE_ARCH), mips)
624helper.o: cpu.h exec-all.h
ths9daea902007-05-23 08:35:19 +0000625op.o: op_template.c fop_template.c op_mem.c exec.h cpu.h
626op_helper.o: op_helper_mem.c exec.h softmmu_template.h cpu.h
thsfbe4f652007-04-01 11:16:48 +0000627translate.o: translate_init.c exec-all.h disas.h
bellard6af0bf92005-07-02 14:58:51 +0000628endif
629
bellard5fe141f2006-04-23 17:12:42 +0000630loader.o: loader.c elf_ops.h
631
bellardfdf9b3e2006-04-27 21:07:38 +0000632ifeq ($(TARGET_ARCH), sh4)
633op.o: op.c op_mem.c cpu.h
634op_helper.o: op_helper.c exec.h cpu.h
635helper.o: helper.c exec.h cpu.h
bellard27c7ca72006-04-27 21:32:09 +0000636sh7750.o: sh7750.c sh7750_regs.h sh7750_regnames.h cpu.h
637shix.o: shix.c sh7750_regs.h sh7750_regnames.h
bellardfdf9b3e2006-04-27 21:07:38 +0000638sh7750_regnames.o: sh7750_regnames.c sh7750_regnames.h sh7750_regs.h
bellard27c7ca72006-04-27 21:32:09 +0000639tc58128.o: tc58128.c
bellardfdf9b3e2006-04-27 21:07:38 +0000640endif
641
j_mayercf6c1b12007-04-05 20:46:02 +0000642ifeq ($(TARGET_BASE_ARCH), alpha)
643op.o: op.c op_template.h op_mem.h
644op_helper.o: op_helper_mem.h
645endif
646
pbrook214feb52006-05-13 16:30:17 +0000647$(OBJS) $(LIBOBJS) $(VL_OBJS): config.h ../config-host.h
648
bellard626df762003-08-10 21:39:31 +0000649%.o: %.c
ths6f30fa82007-01-05 01:00:47 +0000650 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
bellard626df762003-08-10 21:39:31 +0000651
bellardf72b5192004-02-16 21:55:35 +0000652%.o: %.S
ths6f30fa82007-01-05 01:00:47 +0000653 $(CC) $(CPPFLAGS) -c -o $@ $<
bellardf72b5192004-02-16 21:55:35 +0000654
bellard626df762003-08-10 21:39:31 +0000655clean:
bellarde362b552005-04-26 20:34:26 +0000656 rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o
bellard1e43adf2003-09-30 20:54:24 +0000657
658install: all
bellard9b14bb02004-03-26 22:43:34 +0000659ifneq ($(PROGS),)
pbrook6a882642006-04-17 13:57:12 +0000660 $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
bellard9b14bb02004-03-26 22:43:34 +0000661endif
bellard626df762003-08-10 21:39:31 +0000662
663ifneq ($(wildcard .depend),)
664include .depend
665endif
bellard1d14ffa2005-10-30 18:58:22 +0000666
bellardc0fe3822005-11-05 18:55:28 +0000667ifeq (1, 0)
bellard1d14ffa2005-10-30 18:58:22 +0000668audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \
bellardc0fe3822005-11-05 18:55:28 +0000669fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \
bellard1d14ffa2005-10-30 18:58:22 +0000670CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare
671endif