blob: f73510524c3d248592ae4b52768b1fb63d16ac18 [file] [log] [blame]
bellard626df762003-08-10 21:39:31 +00001include config.mak
aliguori17759182009-01-21 18:12:52 +00002include $(SRC_PATH)/rules.mak
bellard626df762003-08-10 21:39:31 +00003
bellard0b0babc2005-01-03 23:38:40 +00004TARGET_BASE_ARCH:=$(TARGET_ARCH)
5ifeq ($(TARGET_ARCH), x86_64)
6TARGET_BASE_ARCH:=i386
7endif
ths540635b2007-09-30 01:58:33 +00008ifeq ($(TARGET_ARCH), mipsn32)
9TARGET_BASE_ARCH:=mips
10endif
thsfbe4f652007-04-01 11:16:48 +000011ifeq ($(TARGET_ARCH), mips64)
12TARGET_BASE_ARCH:=mips
13endif
bellarda2458622005-07-23 22:39:53 +000014ifeq ($(TARGET_ARCH), ppc64)
15TARGET_BASE_ARCH:=ppc
16endif
j_mayer22f8a8b2007-10-14 08:38:29 +000017ifeq ($(TARGET_ARCH), ppc64h)
18TARGET_BASE_ARCH:=ppc
19endif
j_mayerd4082e92007-04-24 07:34:03 +000020ifeq ($(TARGET_ARCH), ppcemb)
21TARGET_BASE_ARCH:=ppc
22endif
bellard64b3ab22005-01-30 22:43:42 +000023ifeq ($(TARGET_ARCH), sparc64)
24TARGET_BASE_ARCH:=sparc
25endif
bellard0b0babc2005-01-03 23:38:40 +000026TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
bellard4fb240a2007-11-07 19:24:02 +000027VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
balrog46dc3882008-06-02 02:09:09 +000028CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
bellard0b0babc2005-01-03 23:38:40 +000029#CFLAGS+=-Werror
bellard626df762003-08-10 21:39:31 +000030LIBS=
bellard1e43adf2003-09-30 20:54:24 +000031# user emulator name
bellard0c64b9c2008-01-06 18:27:58 +000032ifndef TARGET_ARCH2
bellardc91fde62006-05-02 22:52:36 +000033TARGET_ARCH2=$(TARGET_ARCH)
bellard0c64b9c2008-01-06 18:27:58 +000034endif
bellard808c4952004-12-19 23:33:47 +000035ifeq ($(TARGET_ARCH),arm)
36 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
bellardc91fde62006-05-02 22:52:36 +000037 TARGET_ARCH2=armeb
bellard808c4952004-12-19 23:33:47 +000038 endif
bellardc91fde62006-05-02 22:52:36 +000039endif
pbrook908f52b2006-06-18 19:16:53 +000040ifeq ($(TARGET_ARCH),sh4)
41 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
42 TARGET_ARCH2=sh4eb
43 endif
44endif
bellard01f5e592005-12-06 21:42:17 +000045ifeq ($(TARGET_ARCH),mips)
bellardc91fde62006-05-02 22:52:36 +000046 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
47 TARGET_ARCH2=mipsel
bellard01f5e592005-12-06 21:42:17 +000048 endif
bellard808c4952004-12-19 23:33:47 +000049endif
ths540635b2007-09-30 01:58:33 +000050ifeq ($(TARGET_ARCH),mipsn32)
51 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
52 TARGET_ARCH2=mipsn32el
53 endif
54endif
thsfbe4f652007-04-01 11:16:48 +000055ifeq ($(TARGET_ARCH),mips64)
56 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
57 TARGET_ARCH2=mips64el
58 endif
59endif
bellard1e43adf2003-09-30 20:54:24 +000060
bellard16e9b7d2003-10-27 21:09:52 +000061ifdef CONFIG_USER_ONLY
bellard40293e52008-01-31 11:32:10 +000062# user emulator name
63QEMU_PROG=qemu-$(TARGET_ARCH2)
bellard16e9b7d2003-10-27 21:09:52 +000064else
bellard40293e52008-01-31 11:32:10 +000065# system emulator name
66ifeq ($(TARGET_ARCH), i386)
67QEMU_PROG=qemu$(EXESUF)
68else
69QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
bellardde5eaa62003-11-16 23:18:17 +000070endif
bellard40293e52008-01-31 11:32:10 +000071endif
bellard728c9fd2004-01-05 00:08:14 +000072
bellard40293e52008-01-31 11:32:10 +000073PROGS=$(QEMU_PROG)
bellard626df762003-08-10 21:39:31 +000074
ths6c041c52007-03-18 23:23:31 +000075# cc-option
aliguoric7328802009-01-21 18:12:27 +000076# Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0)
ths6c041c52007-03-18 23:23:31 +000077
aliguoric7328802009-01-21 18:12:27 +000078cc-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 ;)
ths6f30fa82007-01-05 01:00:47 +000080
bellard40293e52008-01-31 11:32:10 +000081HELPER_CFLAGS=
82
bellard626df762003-08-10 21:39:31 +000083ifeq ($(ARCH),i386)
ths6f30fa82007-01-05 01:00:47 +000084HELPER_CFLAGS+=-fomit-frame-pointer
bellardbc51c5c2004-03-17 23:46:04 +000085endif
86
malcd19076f2009-04-02 01:16:39 +000087ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
88translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-time,)
89endif
90
bellard626df762003-08-10 21:39:31 +000091ifeq ($(ARCH),sparc)
aliguoric7328802009-01-21 18:12:27 +000092 ifneq ($(CONFIG_SOLARIS),yes)
bellard40293e52008-01-31 11:32:10 +000093 HELPER_CFLAGS+=-ffixed-i0
blueswir131422552007-04-16 18:27:06 +000094 endif
bellardfdbb4692006-06-14 17:32:25 +000095endif
bellard626df762003-08-10 21:39:31 +000096
bellard626df762003-08-10 21:39:31 +000097ifeq ($(ARCH),alpha)
bellard626df762003-08-10 21:39:31 +000098# Ensure there's only a single GP
bellard40293e52008-01-31 11:32:10 +000099CFLAGS+=-msmall-data
bellard626df762003-08-10 21:39:31 +0000100endif
101
aurel32f54b3f92008-04-12 20:14:54 +0000102ifeq ($(ARCH),hppa)
aurel32f54b3f92008-04-12 20:14:54 +0000103BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
104endif
105
bellard626df762003-08-10 21:39:31 +0000106ifeq ($(ARCH),ia64)
bellard40293e52008-01-31 11:32:10 +0000107CFLAGS+=-mno-sdata
bellard38e584a2003-08-10 22:14:22 +0000108endif
109
bellard40293e52008-01-31 11:32:10 +0000110CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
111LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
bellard626df762003-08-10 21:39:31 +0000112
ths6f30fa82007-01-05 01:00:47 +0000113CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
bellard626df762003-08-10 21:39:31 +0000114LIBS+=-lm
bellard67b915a2004-03-31 23:37:16 +0000115ifdef CONFIG_WIN32
bellard3db38e82004-07-14 17:19:55 +0000116LIBS+=-lwinmm -lws2_32 -liphlpapi
bellard67b915a2004-03-31 23:37:16 +0000117endif
bellardec530c82006-04-25 22:36:06 +0000118ifdef CONFIG_SOLARIS
119LIBS+=-lsocket -lnsl -lresolv
ths0475a5c2007-04-01 18:54:44 +0000120ifdef NEEDS_LIBSUNMATH
121LIBS+=-lsunmath
122LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
bellard40293e52008-01-31 11:32:10 +0000123CFLAGS+=-I/opt/SUNWspro/prod/include/cc
ths0475a5c2007-04-01 18:54:44 +0000124endif
bellardec530c82006-04-25 22:36:06 +0000125endif
bellard626df762003-08-10 21:39:31 +0000126
aliguori7ba1e612008-11-05 16:04:33 +0000127kvm.o: CFLAGS+=$(KVM_CFLAGS)
128kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
129
bellard40293e52008-01-31 11:32:10 +0000130all: $(PROGS)
bellard626df762003-08-10 21:39:31 +0000131
bellard40293e52008-01-31 11:32:10 +0000132#########################################################
bellard626df762003-08-10 21:39:31 +0000133# cpu emulator library
blueswir12d6ebb02009-04-18 19:25:43 +0000134LIBOBJS=exec.o translate-all.o cpu-exec.o\
blueswir1cf2be982008-03-21 18:03:09 +0000135 translate.o host-utils.o
blueswir12d6ebb02009-04-18 19:25:43 +0000136ifdef CONFIG_KQEMU
137LIBOBJS+= kqemu.o
138endif
bellard57fec1f2008-02-01 10:50:11 +0000139# TCG code generator
aurel3249516bc2008-12-07 18:15:45 +0000140LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
bellard57fec1f2008-02-01 10:50:11 +0000141CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
blueswir18289b272008-02-27 17:53:27 +0000142ifeq ($(ARCH),sparc64)
143CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
144endif
bellard158142c2005-03-13 16:54:06 +0000145ifdef CONFIG_SOFTFLOAT
146LIBOBJS+=fpu/softfloat.o
147else
148LIBOBJS+=fpu/softfloat-native.o
149endif
ths6f30fa82007-01-05 01:00:47 +0000150CPPFLAGS+=-I$(SRC_PATH)/fpu
bellard728c9fd2004-01-05 00:08:14 +0000151LIBOBJS+= op_helper.o helper.o
bellarde95c8d52004-09-30 22:22:08 +0000152
bellardb7bcbe92005-02-22 19:27:29 +0000153ifeq ($(TARGET_BASE_ARCH), arm)
bellardeaa728e2008-05-28 12:51:20 +0000154LIBOBJS+= neon_helper.o iwmmxt_helper.o
pbrooke6e59062006-10-22 00:18:54 +0000155endif
156
j_mayercf6c1b12007-04-05 20:46:02 +0000157ifeq ($(TARGET_BASE_ARCH), alpha)
bellardeaa728e2008-05-28 12:51:20 +0000158LIBOBJS+= alpha_palcode.o
j_mayercf6c1b12007-04-05 20:46:02 +0000159endif
160
thse7daa602007-10-08 13:38:27 +0000161ifeq ($(TARGET_BASE_ARCH), cris)
thse7daa602007-10-08 13:38:27 +0000162LIBOBJS+= cris-dis.o
163
164ifndef CONFIG_USER_ONLY
165LIBOBJS+= mmu.o
166endif
167endif
168
bellard626df762003-08-10 21:39:31 +0000169# NOTE: the disassembler code is only needed for debugging
ths5fafdf22007-09-16 21:08:06 +0000170LIBOBJS+=disas.o
bellard626df762003-08-10 21:39:31 +0000171ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
bellardbc51c5c2004-03-17 23:46:04 +0000172USE_I386_DIS=y
173endif
bellard0b0babc2005-01-03 23:38:40 +0000174ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
bellardbc51c5c2004-03-17 23:46:04 +0000175USE_I386_DIS=y
176endif
177ifdef USE_I386_DIS
bellard626df762003-08-10 21:39:31 +0000178LIBOBJS+=i386-dis.o
179endif
180ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
181LIBOBJS+=alpha-dis.o
182endif
bellarda2458622005-07-23 22:39:53 +0000183ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
bellard626df762003-08-10 21:39:31 +0000184LIBOBJS+=ppc-dis.o
185endif
thsfbe4f652007-04-01 11:16:48 +0000186ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
bellard6af0bf92005-07-02 14:58:51 +0000187LIBOBJS+=mips-dis.o
188endif
bellard64b3ab22005-01-30 22:43:42 +0000189ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
bellard626df762003-08-10 21:39:31 +0000190LIBOBJS+=sparc-dis.o
191endif
192ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
193LIBOBJS+=arm-dis.o
194endif
bellard48024e42005-11-06 16:52:11 +0000195ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
196LIBOBJS+=m68k-dis.o
197endif
bellardfdf9b3e2006-04-27 21:07:38 +0000198ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
199LIBOBJS+=sh4-dis.o
200endif
aurel32f54b3f92008-04-12 20:14:54 +0000201ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
202LIBOBJS+=hppa-dis.o
203endif
ths8f860bb2007-07-31 23:44:21 +0000204ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
205LIBOBJS+=s390-dis.o
206endif
bellard626df762003-08-10 21:39:31 +0000207
bellard40293e52008-01-31 11:32:10 +0000208# libqemu
209
210libqemu.a: $(LIBOBJS)
bellard40293e52008-01-31 11:32:10 +0000211
aurel3286e840e2008-12-07 15:21:23 +0000212translate.o: translate.c cpu.h
bellard40293e52008-01-31 11:32:10 +0000213
aurel3286e840e2008-12-07 15:21:23 +0000214translate-all.o: translate-all.c cpu.h
bellard40293e52008-01-31 11:32:10 +0000215
aurel3286e840e2008-12-07 15:21:23 +0000216tcg/tcg.o: cpu.h
bellard40293e52008-01-31 11:32:10 +0000217
218# HELPER_CFLAGS is used for all the code compiled with static register
219# variables
aliguori807544e2009-01-21 18:12:44 +0000220op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
bellard40293e52008-01-31 11:32:10 +0000221
aliguori807544e2009-01-21 18:12:44 +0000222cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
bellard40293e52008-01-31 11:32:10 +0000223
224#########################################################
225# Linux user emulator target
226
227ifdef CONFIG_LINUX_USER
228
bellard40293e52008-01-31 11:32:10 +0000229ifndef TARGET_ABI_DIR
230 TARGET_ABI_DIR=$(TARGET_ARCH)
231endif
aurel323ebdd112008-04-09 06:53:01 +0000232VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
bellard40293e52008-01-31 11:32:10 +0000233CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
234
235ifdef CONFIG_STATIC
236LDFLAGS+=-static
237endif
238
239ifeq ($(ARCH),i386)
240ifdef TARGET_GPROF
241USE_I386_LD=y
242endif
243ifdef CONFIG_STATIC
244USE_I386_LD=y
245endif
246ifdef USE_I386_LD
247LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
248else
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!
252LDFLAGS+=-Wl,-shared
253endif
254endif
255
256ifeq ($(ARCH),x86_64)
257LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
258endif
259
260ifeq ($(ARCH),ppc)
261LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
262endif
263
malc810260a2008-07-23 19:17:46 +0000264ifeq ($(ARCH),ppc64)
265LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
266endif
267
bellard40293e52008-01-31 11:32:10 +0000268ifeq ($(ARCH),s390)
269LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
270endif
271
272ifeq ($(ARCH),sparc)
273# -static is used to avoid g1/g3 usage by the dynamic linker
274LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
275endif
276
277ifeq ($(ARCH),sparc64)
278LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
279endif
280
281ifeq ($(ARCH),alpha)
282LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
283endif
284
285ifeq ($(ARCH),ia64)
286LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
287endif
288
289ifeq ($(ARCH),arm)
290LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
291endif
292
293ifeq ($(ARCH),m68k)
294LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
295endif
296
297ifeq ($(ARCH),mips)
298ifeq ($(WORDS_BIGENDIAN),yes)
299LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
300else
301LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
302endif
303endif
304
305ifeq ($(ARCH),mips64)
306ifeq ($(WORDS_BIGENDIAN),yes)
307LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
308else
309LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
310endif
311endif
312
aurel326d946cd2008-11-06 16:15:18 +0000313# profiling code
314ifdef TARGET_GPROF
315LDFLAGS+=-p
316CFLAGS+=-p
317endif
318
pbrook17e23772008-06-09 13:47:45 +0000319OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
aurel3204a6dfe2009-01-30 19:59:17 +0000320 elfload.o linuxload.o uaccess.o envlist.o
aliguorie5d355d2009-04-24 18:03:15 +0000321LIBS+= $(PTHREADLIBS)
322LIBS+= $(CLOCKLIBS)
bellard40293e52008-01-31 11:32:10 +0000323ifdef TARGET_HAS_BFLT
324OBJS+= flatload.o
325endif
326ifdef TARGET_HAS_ELFLOAD32
327OBJS+= elfload32.o
328elfload32.o: elfload.c
329endif
330
331ifeq ($(TARGET_ARCH), i386)
332OBJS+= vm86.o
333endif
334ifeq ($(TARGET_ARCH), arm)
335OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
336nwfpe/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
338endif
339ifeq ($(TARGET_ARCH), m68k)
340OBJS+= m68k-sim.o m68k-semi.o
341endif
342
bellard1fddef42005-04-17 19:16:13 +0000343ifdef CONFIG_GDBSTUB
pbrook56aebc82008-10-11 17:55:29 +0000344OBJS+=gdbstub.o gdbstub-xml.o
bellard1fddef42005-04-17 19:16:13 +0000345endif
bellard626df762003-08-10 21:39:31 +0000346
bellard40293e52008-01-31 11:32:10 +0000347OBJS+= libqemu.a
bellard626df762003-08-10 21:39:31 +0000348
bellard40293e52008-01-31 11:32:10 +0000349# Note: this is a workaround. The real fix is to avoid compiling
350# cpu_signal_handler() in cpu-exec.c.
aliguori807544e2009-01-21 18:12:44 +0000351signal.o: CFLAGS += $(HELPER_CFLAGS)
bellard40293e52008-01-31 11:32:10 +0000352
pbrookcec7d0b2008-05-28 16:44:57 +0000353$(QEMU_PROG): $(OBJS) ../libqemu_user.a
aliguori3aa892d2009-01-21 18:13:02 +0000354 $(LINK)
bellard626df762003-08-10 21:39:31 +0000355ifeq ($(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
359endif
360
bellard40293e52008-01-31 11:32:10 +0000361endif #CONFIG_LINUX_USER
362
363#########################################################
364# Darwin user emulator target
365
366ifdef CONFIG_DARWIN_USER
367
368VPATH+=:$(SRC_PATH)/darwin-user
369CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
370
371# Leave some space for the regular program loading zone
372LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
373
374LIBS+=-lmx
375
pbrook17e23772008-06-09 13:47:45 +0000376OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
bellard40293e52008-01-31 11:32:10 +0000377
378OBJS+= libqemu.a
379
380ifdef CONFIG_GDBSTUB
pbrook56aebc82008-10-11 17:55:29 +0000381OBJS+=gdbstub.o gdbstub-xml.o
ths223d4672007-12-15 17:28:36 +0000382endif
bellarda541f292004-04-12 20:39:29 +0000383
bellard40293e52008-01-31 11:32:10 +0000384# Note: this is a workaround. The real fix is to avoid compiling
385# cpu_signal_handler() in cpu-exec.c.
aliguori807544e2009-01-21 18:12:44 +0000386signal.o: CFLAGS += $(HELPER_CFLAGS)
bellard40293e52008-01-31 11:32:10 +0000387
388$(QEMU_PROG): $(OBJS)
aliguori3aa892d2009-01-21 18:13:02 +0000389 $(LINK)
bellard40293e52008-01-31 11:32:10 +0000390
391endif #CONFIG_DARWIN_USER
392
393#########################################################
blueswir184778502008-10-26 20:33:16 +0000394# BSD user emulator target
395
396ifdef CONFIG_BSD_USER
397
398VPATH+=:$(SRC_PATH)/bsd-user
399CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
400
401ifdef CONFIG_STATIC
402LDFLAGS+=-static
403endif
404
405ifeq ($(ARCH),i386)
406ifdef TARGET_GPROF
407USE_I386_LD=y
408endif
409ifdef CONFIG_STATIC
410USE_I386_LD=y
411endif
412ifdef USE_I386_LD
413LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
414else
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!
418LDFLAGS+=-Wl,-shared
419endif
420endif
421
422ifeq ($(ARCH),x86_64)
423LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
424endif
425
426ifeq ($(ARCH),ppc)
427LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
428endif
429
430ifeq ($(ARCH),ppc64)
431LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
432endif
433
434ifeq ($(ARCH),s390)
435LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
436endif
437
438ifeq ($(ARCH),sparc)
439# -static is used to avoid g1/g3 usage by the dynamic linker
440LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
441endif
442
443ifeq ($(ARCH),sparc64)
444LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
445endif
446
447ifeq ($(ARCH),alpha)
448LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
449endif
450
451ifeq ($(ARCH),ia64)
452LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
453endif
454
455ifeq ($(ARCH),arm)
456LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
457endif
458
459ifeq ($(ARCH),m68k)
460LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
461endif
462
463ifeq ($(ARCH),mips)
464ifeq ($(WORDS_BIGENDIAN),yes)
465LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
466else
467LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
468endif
469endif
470
471ifeq ($(ARCH),mips64)
472ifeq ($(WORDS_BIGENDIAN),yes)
473LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
474else
475LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
476endif
477endif
478
479OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
480OBJS+= uaccess.o
481
482OBJS+= libqemu.a
483
484ifdef CONFIG_GDBSTUB
485OBJS+=gdbstub.o
486endif
487
488# Note: this is a workaround. The real fix is to avoid compiling
489# cpu_signal_handler() in cpu-exec.c.
aliguori807544e2009-01-21 18:12:44 +0000490signal.o: CFLAGS += $(HELPER_CFLAGS)
blueswir184778502008-10-26 20:33:16 +0000491
492$(QEMU_PROG): $(OBJS) ../libqemu_user.a
aliguori3aa892d2009-01-21 18:13:02 +0000493 $(LINK)
blueswir184778502008-10-26 20:33:16 +0000494
495endif #CONFIG_BSD_USER
496
497#########################################################
bellard40293e52008-01-31 11:32:10 +0000498# System emulator target
499ifndef CONFIG_USER_ONLY
500
aliguori244ab902009-02-05 21:23:50 +0000501OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
aliguori1fd31ad2008-12-18 01:56:22 +0000502# virtio has to be here due to weird dependency between PCI and virtio-net.
503# need to fix this properly
aliguori9ede2fd2009-01-15 20:05:25 +0000504OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
aliguori559b90f2008-11-11 21:20:14 +0000505OBJS+=fw_cfg.o
aliguori7ba1e612008-11-05 16:04:33 +0000506ifdef CONFIG_KVM
507OBJS+=kvm.o kvm-all.o
508endif
bellard40293e52008-01-31 11:32:10 +0000509ifdef CONFIG_WIN32
510OBJS+=block-raw-win32.o
511else
aliguori3c529d92008-12-12 16:41:40 +0000512ifdef CONFIG_AIO
513OBJS+=posix-aio-compat.o
514endif
aliguori559b90f2008-11-11 21:20:14 +0000515OBJS+=block-raw-posix.o
aliguoria3392f92008-09-11 18:00:19 +0000516endif
517
bellard40293e52008-01-31 11:32:10 +0000518LIBS+=-lz
bellard1d14ffa2005-10-30 18:58:22 +0000519ifdef CONFIG_ALSA
bellard1d14ffa2005-10-30 18:58:22 +0000520LIBS += -lasound
521endif
balrogca9cc282008-01-14 04:24:29 +0000522ifdef CONFIG_ESD
523LIBS += -lesd
524endif
malcb8e59f12008-07-02 21:03:08 +0000525ifdef CONFIG_PA
526LIBS += -lpulse-simple
527endif
bellard1d14ffa2005-10-30 18:58:22 +0000528ifdef CONFIG_DSOUND
bellard1d14ffa2005-10-30 18:58:22 +0000529LIBS += -lole32 -ldxguid
530endif
bellard102a52e2004-11-14 19:57:29 +0000531ifdef CONFIG_FMOD
bellard102a52e2004-11-14 19:57:29 +0000532LIBS += $(CONFIG_FMOD_LIB)
bellard85571bc2004-11-07 18:04:02 +0000533endif
blueswir12f6a1ab2008-08-21 18:00:53 +0000534ifdef CONFIG_OSS
535LIBS += $(CONFIG_OSS_LIB)
536endif
bellard4fb240a2007-11-07 19:24:02 +0000537
aliguorib0f3b8f2009-01-08 21:03:55 +0000538SOUND_HW = sb16.o es1370.o ac97.o
bellard1d14ffa2005-10-30 18:58:22 +0000539ifdef CONFIG_ADLIB
540SOUND_HW += fmopl.o adlib.o
malcc40e8662008-12-11 00:14:25 +0000541adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
bellard1d14ffa2005-10-30 18:58:22 +0000542endif
balrog423d65f2008-01-14 22:09:11 +0000543ifdef CONFIG_GUS
544SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
545endif
malccc53d262008-06-13 10:48:22 +0000546ifdef CONFIG_CS4231A
547SOUND_HW += cs4231a.o
548endif
bellard85571bc2004-11-07 18:04:02 +0000549
ths8d5d2d42007-08-25 01:37:51 +0000550ifdef CONFIG_VNC_TLS
551CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
552LIBS += $(CONFIG_VNC_TLS_LIBS)
553endif
554
aliguori2f9606b2009-03-06 20:27:28 +0000555ifdef CONFIG_VNC_SASL
556CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
557LIBS += $(CONFIG_VNC_SASL_LIBS)
558endif
559
balrogfb599c92008-09-28 23:49:55 +0000560ifdef CONFIG_BLUEZ
561LIBS += $(CONFIG_BLUEZ_LIBS)
562endif
563
aliguorie37630c2009-04-22 15:19:10 +0000564# xen backend driver support
aliguori9306acb2009-04-22 15:19:44 +0000565XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o
aliguorie613b062009-04-22 15:19:35 +0000566XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
aliguorie37630c2009-04-22 15:19:10 +0000567ifeq ($(CONFIG_XEN), yes)
568 OBJS += $(XEN_OBJS)
569 LIBS += $(XEN_LIBS)
570endif
571
pbrook2e5d83b2006-05-25 23:58:51 +0000572# SCSI layer
blueswir18b17de82008-03-02 08:48:47 +0000573OBJS+= lsi53c895a.o esp.o
pbrook2e5d83b2006-05-25 23:58:51 +0000574
bellarda594cfb2005-11-06 16:13:29 +0000575# USB layer
bellard40293e52008-01-31 11:32:10 +0000576OBJS+= usb-ohci.o
bellarda594cfb2005-11-06 16:13:29 +0000577
pbrooka41b2ff2006-02-05 04:14:41 +0000578# PCI network cards
bellard40293e52008-01-31 11:32:10 +0000579OBJS += eepro100.o
580OBJS += ne2000.o
581OBJS += pcnet.o
582OBJS += rtl8139.o
balrog7c23b892008-02-03 02:20:18 +0000583OBJS += e1000.o
pbrooka41b2ff2006-02-05 04:14:41 +0000584
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100585# Generic watchdog support and some watchdog devices
586OBJS += watchdog.o
587OBJS += wdt_ib700.o wdt_i6300esb.o
588
bellard0b0babc2005-01-03 23:38:40 +0000589ifeq ($(TARGET_BASE_ARCH), i386)
bellarda541f292004-04-12 20:39:29 +0000590# Hardware support
blueswir1e9c28332009-04-11 09:04:44 +0000591OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
bellard40293e52008-01-31 11:32:10 +0000592OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
aliguori610626a2009-03-12 20:25:12 +0000593OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
aliguori16b29ae2008-12-17 23:28:44 +0000594OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
aliguorib6f6e3d2009-04-17 18:59:56 +0000595OBJS += device-hotplug.o pci-hotplug.o smbios.o
balrogb00052e2007-04-30 02:22:06 +0000596CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
bellard67b915a2004-03-31 23:37:16 +0000597endif
bellarda2458622005-07-23 22:39:53 +0000598ifeq ($(TARGET_BASE_ARCH), ppc)
aurel3270ad3de2008-12-14 17:30:18 +0000599CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
j_mayer3cbee152007-10-28 23:42:18 +0000600# shared objects
bellard40293e52008-01-31 11:32:10 +0000601OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
j_mayer3cbee152007-10-28 23:42:18 +0000602# PREP target
blueswir1e9c28332009-04-11 09:04:44 +0000603OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
bellard40293e52008-01-31 11:32:10 +0000604OBJS+= prep_pci.o ppc_prep.o
j_mayer3cbee152007-10-28 23:42:18 +0000605# Mac shared devices
blueswir17fa9ae12009-01-12 17:40:23 +0000606OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o
j_mayer3cbee152007-10-28 23:42:18 +0000607# OldWorld PowerMac
bellard40293e52008-01-31 11:32:10 +0000608OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
j_mayer3cbee152007-10-28 23:42:18 +0000609# NewWorld PowerMac
blueswir1b98a0032009-02-08 12:49:13 +0000610OBJS+= unin_pci.o ppc_newworld.o
j_mayer3cbee152007-10-28 23:42:18 +0000611# PowerPC 4xx boards
aurel32825bb582008-12-02 23:53:50 +0000612OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
aurel322c9fade2008-12-16 10:44:14 +0000613OBJS+= ppc440.o ppc440_bamboo.o
aurel3274c62ba2009-03-02 16:42:23 +0000614# PowerPC E500 boards
aurel321db09b82009-03-02 16:42:42 +0000615OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
aurel32f652e6a2008-12-16 10:43:48 +0000616ifdef FDT_LIBS
617OBJS+= device_tree.o
618LIBS+= $(FDT_LIBS)
619endif
aurel32d76d1652008-12-16 10:43:58 +0000620ifdef CONFIG_KVM
621OBJS+= kvm_ppc.o
622endif
bellarda541f292004-04-12 20:39:29 +0000623endif
thsfbe4f652007-04-01 11:16:48 +0000624ifeq ($(TARGET_BASE_ARCH), mips)
aurel32c1711482008-04-08 19:51:06 +0000625OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
aurel324ce7ff62008-04-07 19:47:14 +0000626OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
aurel32a65f56e2009-04-15 14:57:54 +0000627OBJS+= g364fb.o jazz_led.o dp8393x.o
blueswir1e9c28332009-04-11 09:04:44 +0000628OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
aurel324ce7ff62008-04-07 19:47:14 +0000629OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
bellard40293e52008-01-31 11:32:10 +0000630OBJS+= mipsnet.o
631OBJS+= pflash_cfi01.o
aurel321f605a72009-02-08 14:51:19 +0000632OBJS+= vmware_vga.o
aurel324ce7ff62008-04-07 19:47:14 +0000633CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
bellard6af0bf92005-07-02 14:58:51 +0000634endif
thse7daa602007-10-08 13:38:27 +0000635ifeq ($(TARGET_BASE_ARCH), cris)
edgar_igl10c144e2009-01-07 12:19:50 +0000636# Boards
637OBJS+= etraxfs.o axis_dev88.o
638
639# IO blocks
edgar_igl48318012008-05-11 15:07:19 +0000640OBJS+= etraxfs_dma.o
edgar_igle62b5b12008-03-14 01:04:24 +0000641OBJS+= etraxfs_pic.o
edgar_igl48318012008-05-11 15:07:19 +0000642OBJS+= etraxfs_eth.o
bellard40293e52008-01-31 11:32:10 +0000643OBJS+= etraxfs_timer.o
644OBJS+= etraxfs_ser.o
edgar_igle62b5b12008-03-14 01:04:24 +0000645
edgar_igl10c144e2009-01-07 12:19:50 +0000646OBJS+= pflash_cfi02.o nand.o
thse7daa602007-10-08 13:38:27 +0000647endif
bellard64b3ab22005-01-30 22:43:42 +0000648ifeq ($(TARGET_BASE_ARCH), sparc)
bellard34751872005-07-02 14:31:34 +0000649ifeq ($(TARGET_ARCH), sparc64)
blueswir1e9c28332009-04-11 09:04:44 +0000650OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
bellard40293e52008-01-31 11:32:10 +0000651OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
blueswir1e9c28332009-04-11 09:04:44 +0000652OBJS+= cirrus_vga.o parallel.o
bellard34751872005-07-02 14:31:34 +0000653else
bellard40293e52008-01-31 11:32:10 +0000654OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
blueswir12aa2ab32009-01-12 17:33:30 +0000655OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
blueswir1e9c28332009-04-11 09:04:44 +0000656OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
bellard34751872005-07-02 14:31:34 +0000657endif
bellarde95c8d52004-09-30 22:22:08 +0000658endif
bellardb5ff1b32005-11-26 10:38:39 +0000659ifeq ($(TARGET_BASE_ARCH), arm)
blueswir1e9c28332009-04-11 09:04:44 +0000660OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
bellard40293e52008-01-31 11:32:10 +0000661OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
blueswir1e9c28332009-04-11 09:04:44 +0000662OBJS+= versatile_pci.o
bellard40293e52008-01-31 11:32:10 +0000663OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
664OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
665OBJS+= pl061.o
666OBJS+= arm-semi.o
667OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
668OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
669OBJS+= pflash_cfi01.o gumstix.o
balrog88d2c952008-06-09 00:03:13 +0000670OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
balrogb4e31042008-03-06 21:07:38 +0000671OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
balrogafbb5192008-07-21 20:40:22 +0000672OBJS+= omap2.o omap_dss.o soc_dma.o
balrog997641a2008-12-15 02:05:00 +0000673OBJS+= omap_sx1.o palm.o tsc210x.o
balrog942ac052008-04-22 03:15:10 +0000674OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
bellard40293e52008-01-31 11:32:10 +0000675OBJS+= mst_fpga.o mainstone.o
balrog24859b62008-04-24 19:21:53 +0000676OBJS+= musicpal.o pflash_cfi02.o
pbrook714fa302009-04-01 12:27:59 +0000677OBJS+= framebuffer.o
balrog5a1237c2007-05-02 02:11:51 +0000678CPPFLAGS += -DHAS_AUDIO
bellardb5ff1b32005-11-26 10:38:39 +0000679endif
bellardfdf9b3e2006-04-27 21:07:38 +0000680ifeq ($(TARGET_BASE_ARCH), sh4)
bellard40293e52008-01-31 11:32:10 +0000681OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
blueswir1e9c28332009-04-11 09:04:44 +0000682OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
balroga4a771c2008-12-07 18:41:42 +0000683OBJS+= ide.o
bellardfdf9b3e2006-04-27 21:07:38 +0000684endif
pbrook06338792007-05-23 19:58:11 +0000685ifeq ($(TARGET_BASE_ARCH), m68k)
blueswir1e9c28332009-04-11 09:04:44 +0000686OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
bellard40293e52008-01-31 11:32:10 +0000687OBJS+= m68k-semi.o dummy_m68k.o
pbrook06338792007-05-23 19:58:11 +0000688endif
bellarda541f292004-04-12 20:39:29 +0000689ifdef CONFIG_GDBSTUB
pbrook56aebc82008-10-11 17:55:29 +0000690OBJS+=gdbstub.o gdbstub-xml.o
bellard728c9fd2004-01-05 00:08:14 +0000691endif
bellard5b0753e2005-03-01 21:37:28 +0000692ifdef CONFIG_COCOA
bellard1d14ffa2005-10-30 18:58:22 +0000693COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
694ifdef CONFIG_COREAUDIO
695COCOA_LIBS+=-framework CoreAudio
696endif
bellard5b0753e2005-03-01 21:37:28 +0000697endif
bellard7c1f25b2004-04-22 00:02:08 +0000698ifdef CONFIG_SLIRP
ths6f30fa82007-01-05 01:00:47 +0000699CPPFLAGS+=-I$(SRC_PATH)/slirp
bellard626df762003-08-10 21:39:31 +0000700endif
701
aliguorie5d355d2009-04-24 18:03:15 +0000702LIBS+=$(PTHREADLIBS)
703LIBS+=$(CLOCKLIBS)
bellardc321f672003-10-30 01:18:42 +0000704# specific flags are needed for non soft mmu emulator
bellardc321f672003-10-30 01:18:42 +0000705ifdef CONFIG_STATIC
bellard40293e52008-01-31 11:32:10 +0000706LDFLAGS+=-static
bellardde5eaa62003-11-16 23:18:17 +0000707endif
bellard83fb7ad2004-07-05 21:25:26 +0000708ifndef CONFIG_DARWIN
bellard11d9f692004-04-02 20:55:59 +0000709ifndef CONFIG_WIN32
bellardec530c82006-04-25 22:36:06 +0000710ifndef CONFIG_SOLARIS
malcb29fe3e2008-11-18 01:42:22 +0000711ifndef CONFIG_AIX
bellard40293e52008-01-31 11:32:10 +0000712LIBS+=-lutil
bellard11d9f692004-04-02 20:55:59 +0000713endif
bellard83fb7ad2004-07-05 21:25:26 +0000714endif
bellardec530c82006-04-25 22:36:06 +0000715endif
malcb29fe3e2008-11-18 01:42:22 +0000716endif
bellarde3086fb2005-02-10 21:48:51 +0000717ifdef TARGET_GPROF
bellard40293e52008-01-31 11:32:10 +0000718vl.o: CFLAGS+=-p
719LDFLAGS+=-p
bellarde3086fb2005-02-10 21:48:51 +0000720endif
bellardc321f672003-10-30 01:18:42 +0000721
bellardb8076a72005-04-07 22:20:31 +0000722ifeq ($(ARCH),ia64)
bellard40293e52008-01-31 11:32:10 +0000723LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
ths8a0ef212007-11-18 22:34:46 +0000724endif
725
bellard1d14ffa2005-10-30 18:58:22 +0000726ifdef CONFIG_WIN32
727SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
728endif
729
bellard40293e52008-01-31 11:32:10 +0000730# profiling code
731ifdef TARGET_GPROF
732LDFLAGS+=-p
733main.o: CFLAGS+=-p
bellard6e1b3e42006-08-17 17:41:26 +0000734endif
735
blueswir15824d652009-03-28 06:44:27 +0000736vl.o: qemu-options.h
737
aliguori3aa892d2009-01-21 18:13:02 +0000738$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
739
bellard40293e52008-01-31 11:32:10 +0000740$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
aliguori3aa892d2009-01-21 18:13:02 +0000741 $(LINK)
bellard626df762003-08-10 21:39:31 +0000742
bellard40293e52008-01-31 11:32:10 +0000743endif # !CONFIG_USER_ONLY
bellard00a67ba2006-10-28 12:19:07 +0000744
pbrook56aebc82008-10-11 17:55:29 +0000745gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
pbrook56aebc82008-10-11 17:55:29 +0000746ifeq ($(TARGET_XML_FILES),)
aurel321aef4c52009-03-28 23:46:00 +0000747 $(call quiet-command,rm -f $@ && echo > $@," GEN $(TARGET_DIR)$@")
pbrook56aebc82008-10-11 17:55:29 +0000748else
aurel321aef4c52009-03-28 23:46:00 +0000749 $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@")
pbrook56aebc82008-10-11 17:55:29 +0000750endif
751
blueswir15824d652009-03-28 06:44:27 +0000752qemu-options.h: $(SRC_PATH)/qemu-options.hx
aliguori0d00e562009-04-05 17:40:46 +0000753 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
blueswir15824d652009-03-28 06:44:27 +0000754
bellard626df762003-08-10 21:39:31 +0000755clean:
aliguori016c62c2009-04-05 17:40:50 +0000756 rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c
bellard57fec1f2008-02-01 10:50:11 +0000757 rm -f *.d */*.d tcg/*.o
bellard1e43adf2003-09-30 20:54:24 +0000758
ths5fafdf22007-09-16 21:08:06 +0000759install: all
bellard9b14bb02004-03-26 22:43:34 +0000760ifneq ($(PROGS),)
aliguori1625af82009-04-05 17:41:02 +0000761 $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
bellard9b14bb02004-03-26 22:43:34 +0000762endif
bellard626df762003-08-10 21:39:31 +0000763
j_mayer2f96c282007-10-28 13:07:12 +0000764# Include automatically generated dependency files
765-include $(wildcard *.d */*.d)