]> git.proxmox.com Git - mirror_qemu.git/blame - Makefile.target
Temporary fix for i386 host
[mirror_qemu.git] / Makefile.target
CommitLineData
626df76a
FB
1include config.mak
2
0b0babc6
FB
3TARGET_BASE_ARCH:=$(TARGET_ARCH)
4ifeq ($(TARGET_ARCH), x86_64)
5TARGET_BASE_ARCH:=i386
6endif
540635ba
TS
7ifeq ($(TARGET_ARCH), mipsn32)
8TARGET_BASE_ARCH:=mips
9endif
fbe4f65b
TS
10ifeq ($(TARGET_ARCH), mips64)
11TARGET_BASE_ARCH:=mips
12endif
a2458627
FB
13ifeq ($(TARGET_ARCH), ppc64)
14TARGET_BASE_ARCH:=ppc
15endif
22f8a8b3
JM
16ifeq ($(TARGET_ARCH), ppc64h)
17TARGET_BASE_ARCH:=ppc
18endif
d4082e95
JM
19ifeq ($(TARGET_ARCH), ppcemb)
20TARGET_BASE_ARCH:=ppc
21endif
64b3ab24
FB
22ifeq ($(TARGET_ARCH), sparc64)
23TARGET_BASE_ARCH:=sparc
24endif
0b0babc6 25TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
4fb240a4 26VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
faf07963 27CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MP -DNEED_CPU_H
0b0babc6 28#CFLAGS+=-Werror
626df76a 29LIBS=
67b915a5 30DYNGEN=../dyngen$(EXESUF)
1e43adfc 31# user emulator name
0c64b9cd 32ifndef TARGET_ARCH2
c91fde65 33TARGET_ARCH2=$(TARGET_ARCH)
0c64b9cd 34endif
808c4954
FB
35ifeq ($(TARGET_ARCH),arm)
36 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
c91fde65 37 TARGET_ARCH2=armeb
808c4954 38 endif
c91fde65 39endif
908f52b0
PB
40ifeq ($(TARGET_ARCH),sh4)
41 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
42 TARGET_ARCH2=sh4eb
43 endif
44endif
01f5e596 45ifeq ($(TARGET_ARCH),mips)
c91fde65
FB
46 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
47 TARGET_ARCH2=mipsel
01f5e596 48 endif
01f5e596 49endif
540635ba
TS
50ifeq ($(TARGET_ARCH),mipsn32)
51 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
52 TARGET_ARCH2=mipsn32el
53 endif
54endif
fbe4f65b
TS
55ifeq ($(TARGET_ARCH),mips64)
56 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
57 TARGET_ARCH2=mips64el
58 endif
59endif
40293e58
FB
60
61ifdef CONFIG_USER_ONLY
62# user emulator name
63QEMU_PROG=qemu-$(TARGET_ARCH2)
64else
1e43adfc 65# system emulator name
a541f297 66ifeq ($(TARGET_ARCH), i386)
40293e58 67QEMU_PROG=qemu$(EXESUF)
0db63474 68else
40293e58 69QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
a541f297 70endif
de5eaa64 71endif
626df76a 72
40293e58 73PROGS=$(QEMU_PROG)
626df76a 74
6f30fa85 75# We require -O2 to avoid the stack setup prologue in EXIT_TB
6c041c54
TS
76OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing
77
78# cc-option
79# Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
80
81cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
82 > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
83
84OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
85OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
86OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
87OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
88OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
89OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
90OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
91OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
1870a74c 92OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
6f30fa85 93
40293e58
FB
94HELPER_CFLAGS=
95
626df76a 96ifeq ($(ARCH),i386)
6f30fa85
TS
97HELPER_CFLAGS+=-fomit-frame-pointer
98OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
bc51c5c9
FB
99endif
100
626df76a 101ifeq ($(ARCH),ppc)
6f30fa85 102CPPFLAGS+= -D__powerpc__
626df76a
FB
103endif
104
105ifeq ($(ARCH),sparc)
40293e58 106 CFLAGS+=-ffixed-g2 -ffixed-g3
3142255c
BS
107 OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
108 ifeq ($(CONFIG_SOLARIS),yes)
109 OP_CFLAGS+=-fno-omit-frame-pointer
110 else
40293e58
FB
111 CFLAGS+=-ffixed-g1 -ffixed-g6
112 HELPER_CFLAGS+=-ffixed-i0
3142255c 113 endif
fdbb4691 114endif
626df76a
FB
115
116ifeq ($(ARCH),sparc64)
40293e58 117 CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
3142255c
BS
118 OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
119 ifneq ($(CONFIG_SOLARIS),yes)
3142255c
BS
120 OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
121 endif
626df76a
FB
122endif
123
124ifeq ($(ARCH),alpha)
6f30fa85
TS
125# -msmall-data is not used for OP_CFLAGS because we want two-instruction
126# relocations for the constant constructions
626df76a 127# Ensure there's only a single GP
40293e58 128CFLAGS+=-msmall-data
626df76a
FB
129endif
130
131ifeq ($(ARCH),ia64)
40293e58 132CFLAGS+=-mno-sdata
6f30fa85 133OP_CFLAGS+=-mno-sdata
626df76a
FB
134endif
135
136ifeq ($(ARCH),arm)
6f30fa85 137OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
626df76a
FB
138endif
139
38e584a0 140ifeq ($(ARCH),m68k)
6f30fa85 141OP_CFLAGS+=-fomit-frame-pointer
6f30fa85
TS
142endif
143
144ifeq ($(ARCH),mips)
9617efe8 145OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
fbe4f65b
TS
146endif
147
148ifeq ($(ARCH),mips64)
9617efe8 149OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
83fb7adf
FB
150endif
151
40293e58
FB
152CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
153LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
3142255c 154OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
626df76a 155
6f30fa85 156CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
626df76a 157LIBS+=-lm
67b915a5 158ifdef CONFIG_WIN32
3db38e87 159LIBS+=-lwinmm -lws2_32 -liphlpapi
67b915a5 160endif
ec530c81
FB
161ifdef CONFIG_SOLARIS
162LIBS+=-lsocket -lnsl -lresolv
0475a5ca
TS
163ifdef NEEDS_LIBSUNMATH
164LIBS+=-lsunmath
165LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
166OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
40293e58 167CFLAGS+=-I/opt/SUNWspro/prod/include/cc
f72b519c 168endif
831b7825
TS
169endif
170
40293e58 171all: $(PROGS)
626df76a 172
40293e58 173#########################################################
626df76a 174# cpu emulator library
57fec1fe 175LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
f1548daa 176 translate.o op.o host-utils.o
57fec1fe
FB
177# TCG code generator
178LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
179CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
158142c2
FB
180ifdef CONFIG_SOFTFLOAT
181LIBOBJS+=fpu/softfloat.o
182else
183LIBOBJS+=fpu/softfloat-native.o
184endif
6f30fa85 185CPPFLAGS+=-I$(SRC_PATH)/fpu
626df76a
FB
186
187ifeq ($(TARGET_ARCH), i386)
1e43adfc 188LIBOBJS+=helper.o helper2.o
626df76a
FB
189endif
190
0b0babc6
FB
191ifeq ($(TARGET_ARCH), x86_64)
192LIBOBJS+=helper.o helper2.o
193endif
194
a2458627 195ifeq ($(TARGET_BASE_ARCH), ppc)
728c9fd5 196LIBOBJS+= op_helper.o helper.o
67867308
FB
197endif
198
fbe4f65b 199ifeq ($(TARGET_BASE_ARCH), mips)
6af0bf9c
FB
200LIBOBJS+= op_helper.o helper.o
201endif
202
64b3ab24 203ifeq ($(TARGET_BASE_ARCH), sparc)
e95c8d51
FB
204LIBOBJS+= op_helper.o helper.o
205endif
206
b7bcbe95 207ifeq ($(TARGET_BASE_ARCH), arm)
b5ff1b31 208LIBOBJS+= op_helper.o helper.o
b7bcbe95
FB
209endif
210
fdf9b3e8
FB
211ifeq ($(TARGET_BASE_ARCH), sh4)
212LIBOBJS+= op_helper.o helper.o
213endif
214
e6e5906b 215ifeq ($(TARGET_BASE_ARCH), m68k)
0633879f 216LIBOBJS+= op_helper.o helper.o
e6e5906b
PB
217endif
218
cf6c1b16
JM
219ifeq ($(TARGET_BASE_ARCH), alpha)
220LIBOBJS+= op_helper.o helper.o alpha_palcode.o
221endif
222
e7daa605
TS
223ifeq ($(TARGET_BASE_ARCH), cris)
224LIBOBJS+= op_helper.o helper.o
225LIBOBJS+= cris-dis.o
226
227ifndef CONFIG_USER_ONLY
228LIBOBJS+= mmu.o
229endif
230endif
231
626df76a 232# NOTE: the disassembler code is only needed for debugging
5fafdf24 233LIBOBJS+=disas.o
626df76a 234ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
bc51c5c9
FB
235USE_I386_DIS=y
236endif
0b0babc6 237ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
bc51c5c9
FB
238USE_I386_DIS=y
239endif
240ifdef USE_I386_DIS
626df76a
FB
241LIBOBJS+=i386-dis.o
242endif
243ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
244LIBOBJS+=alpha-dis.o
245endif
a2458627 246ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
626df76a
FB
247LIBOBJS+=ppc-dis.o
248endif
fbe4f65b 249ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
6af0bf9c
FB
250LIBOBJS+=mips-dis.o
251endif
64b3ab24 252ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
626df76a
FB
253LIBOBJS+=sparc-dis.o
254endif
255ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
256LIBOBJS+=arm-dis.o
257endif
48024e4a
FB
258ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
259LIBOBJS+=m68k-dis.o
260endif
fdf9b3e8
FB
261ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
262LIBOBJS+=sh4-dis.o
263endif
8f860bb8
TS
264ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
265LIBOBJS+=s390-dis.o
266endif
626df76a 267
40293e58
FB
268# libqemu
269
dd48594e
PB
270OPC_H = gen-op.h dyngen-opc.h op.h
271
40293e58
FB
272libqemu.a: $(LIBOBJS)
273 rm -f $@
274 $(AR) rcs $@ $(LIBOBJS)
275
dd48594e
PB
276translate.o: translate.c cpu.h $(OPC_H)
277
278translate-all.o: translate-all.c cpu.h $(OPC_H)
279
280tcg/tcg.o: cpu.h $(OPC_H)
40293e58 281
dd48594e 282tcg/tcg-dyngen.o: $(OPC_H)
40293e58 283
dd48594e 284tcg/tcg-runtime.o: $(OPC_H)
40293e58
FB
285
286op.h: op.o $(DYNGEN)
287 $(DYNGEN) -o $@ $<
288
57fec1fe 289dyngen-opc.h: op.o $(DYNGEN)
40293e58
FB
290 $(DYNGEN) -c -o $@ $<
291
292gen-op.h: op.o $(DYNGEN)
293 $(DYNGEN) -g -o $@ $<
294
295op.o: op.c
296 $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
297
298# HELPER_CFLAGS is used for all the code compiled with static register
299# variables
300ifeq ($(TARGET_BASE_ARCH), i386)
301# XXX: rename helper.c to op_helper.c
302helper.o: helper.c
303 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
304else
305op_helper.o: op_helper.c
306 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
307endif
308
309cpu-exec.o: cpu-exec.c
310 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
311
312#########################################################
313# Linux user emulator target
314
315ifdef CONFIG_LINUX_USER
316
317VPATH+=:$(SRC_PATH)/linux-user
318ifndef TARGET_ABI_DIR
319 TARGET_ABI_DIR=$(TARGET_ARCH)
320endif
321CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
322
323ifdef CONFIG_STATIC
324LDFLAGS+=-static
325endif
326
327ifeq ($(ARCH),i386)
328ifdef TARGET_GPROF
329USE_I386_LD=y
330endif
331ifdef CONFIG_STATIC
332USE_I386_LD=y
333endif
334ifdef USE_I386_LD
335LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
336else
337# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
338# that the kernel ELF loader considers as an executable. I think this
339# is the simplest way to make it self virtualizable!
340LDFLAGS+=-Wl,-shared
341endif
342endif
343
344ifeq ($(ARCH),x86_64)
345LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
346endif
347
348ifeq ($(ARCH),ppc)
349LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
350endif
351
352ifeq ($(ARCH),s390)
353LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
354endif
355
356ifeq ($(ARCH),sparc)
357# -static is used to avoid g1/g3 usage by the dynamic linker
358LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
359endif
360
361ifeq ($(ARCH),sparc64)
362LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
363endif
364
365ifeq ($(ARCH),alpha)
366LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
367endif
368
369ifeq ($(ARCH),ia64)
370LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
371endif
372
373ifeq ($(ARCH),arm)
374LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
375endif
376
377ifeq ($(ARCH),m68k)
378LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
379endif
380
381ifeq ($(ARCH),mips)
382ifeq ($(WORDS_BIGENDIAN),yes)
383LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
384else
385LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
386endif
387endif
388
389ifeq ($(ARCH),mips64)
390ifeq ($(WORDS_BIGENDIAN),yes)
391LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
392else
393LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
394endif
395endif
396
397OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
398 elfload.o linuxload.o uaccess.o
399LIBS+= $(AIOLIBS)
400ifdef TARGET_HAS_BFLT
401OBJS+= flatload.o
402endif
403ifdef TARGET_HAS_ELFLOAD32
404OBJS+= elfload32.o
405elfload32.o: elfload.c
406endif
407
408ifeq ($(TARGET_ARCH), i386)
409OBJS+= vm86.o
410endif
411ifeq ($(TARGET_ARCH), arm)
412OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
413nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
414 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
415endif
416ifeq ($(TARGET_ARCH), m68k)
417OBJS+= m68k-sim.o m68k-semi.o
418endif
419
1fddef4b
FB
420ifdef CONFIG_GDBSTUB
421OBJS+=gdbstub.o
422endif
626df76a 423
40293e58
FB
424OBJS+= libqemu.a
425
426# Note: this is a workaround. The real fix is to avoid compiling
427# cpu_signal_handler() in cpu-exec.c.
428signal.o: signal.c
429 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
626df76a 430
40293e58
FB
431$(QEMU_PROG): $(OBJS)
432 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
626df76a
FB
433ifeq ($(ARCH),alpha)
434# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
435# the address space (31 bit so sign extending doesn't matter)
436 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
437endif
438
40293e58
FB
439endif #CONFIG_LINUX_USER
440
441#########################################################
442# Darwin user emulator target
443
444ifdef CONFIG_DARWIN_USER
445
446VPATH+=:$(SRC_PATH)/darwin-user
447CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
448
449# Leave some space for the regular program loading zone
450LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
451
452LIBS+=-lmx
453
454OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
455
456OBJS+= libqemu.a
457
458ifdef CONFIG_GDBSTUB
459OBJS+=gdbstub.o
460endif
461
462# Note: this is a workaround. The real fix is to avoid compiling
463# cpu_signal_handler() in cpu-exec.c.
464signal.o: signal.c
465 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
466
467$(QEMU_PROG): $(OBJS)
468 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
469
470endif #CONFIG_DARWIN_USER
471
472#########################################################
473# System emulator target
474ifndef CONFIG_USER_ONLY
475
476OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o
223d4670 477ifdef CONFIG_WIN32
40293e58 478OBJS+=block-raw-win32.o
223d4670 479else
40293e58 480OBJS+=block-raw-posix.o
223d4670 481endif
a541f297 482
40293e58 483LIBS+=-lz
1d14ffa9 484ifdef CONFIG_ALSA
1d14ffa9
FB
485LIBS += -lasound
486endif
ca9cc28c
AZ
487ifdef CONFIG_ESD
488LIBS += -lesd
489endif
1d14ffa9 490ifdef CONFIG_DSOUND
1d14ffa9 491LIBS += -lole32 -ldxguid
85571bc7 492endif
102a52e4 493ifdef CONFIG_FMOD
102a52e4 494LIBS += $(CONFIG_FMOD_LIB)
85571bc7 495endif
4fb240a4
FB
496
497SOUND_HW = sb16.o es1370.o
ca9cc28c
AZ
498ifdef CONFIG_AC97
499SOUND_HW += ac97.o
500endif
1d14ffa9
FB
501ifdef CONFIG_ADLIB
502SOUND_HW += fmopl.o adlib.o
503endif
423d65f4
AZ
504ifdef CONFIG_GUS
505SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
506endif
85571bc7 507
8d5d2d4c
TS
508ifdef CONFIG_VNC_TLS
509CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
510LIBS += $(CONFIG_VNC_TLS_LIBS)
511endif
512
2e5d83bb 513# SCSI layer
40293e58 514OBJS+= lsi53c895a.o
2e5d83bb 515
a594cfbf 516# USB layer
40293e58 517OBJS+= usb-ohci.o
a594cfbf 518
663e8e51 519# EEPROM emulation
40293e58 520OBJS += eeprom93xx.o
663e8e51 521
a41b2ff2 522# PCI network cards
40293e58
FB
523OBJS += eepro100.o
524OBJS += ne2000.o
525OBJS += pcnet.o
526OBJS += rtl8139.o
7c23b892 527OBJS += e1000.o
a41b2ff2 528
0b0babc6 529ifeq ($(TARGET_BASE_ARCH), i386)
a541f297 530# Hardware support
40293e58
FB
531OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
532OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
533OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
534OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o
b00052e4 535CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
67b915a5 536endif
a2458627 537ifeq ($(TARGET_BASE_ARCH), ppc)
b00052e4 538CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
3cbee15b 539# shared objects
40293e58 540OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
3cbee15b 541# PREP target
40293e58
FB
542OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
543OBJS+= prep_pci.o ppc_prep.o
3cbee15b 544# Mac shared devices
40293e58 545OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
3cbee15b 546# OldWorld PowerMac
40293e58 547OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
3cbee15b 548# NewWorld PowerMac
40293e58 549OBJS+= unin_pci.o ppc_chrp.o
3cbee15b 550# PowerPC 4xx boards
40293e58 551OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
a541f297 552endif
fbe4f65b 553ifeq ($(TARGET_BASE_ARCH), mips)
40293e58
FB
554OBJS+= mips_r4k.o mips_malta.o mips_pica61.o mips_mipssim.o
555OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o
556OBJS+= jazz_led.o
557OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
558OBJS+= piix_pci.o parallel.o cirrus_vga.o $(SOUND_HW)
559OBJS+= mipsnet.o
560OBJS+= pflash_cfi01.o
83b1fb88 561CPPFLAGS += -DHAS_AUDIO
6af0bf9c 562endif
e7daa605 563ifeq ($(TARGET_BASE_ARCH), cris)
40293e58
FB
564OBJS+= etraxfs.o
565OBJS+= ptimer.o
566OBJS+= etraxfs_timer.o
567OBJS+= etraxfs_ser.o
e7daa605 568endif
64b3ab24 569ifeq ($(TARGET_BASE_ARCH), sparc)
3475187d 570ifeq ($(TARGET_ARCH), sparc64)
40293e58
FB
571OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
572OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
573OBJS+= cirrus_vga.o parallel.o ptimer.o
3475187d 574else
40293e58
FB
575OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
576OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o sparc32_dma.o
577OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
3475187d 578endif
e95c8d51 579endif
b5ff1b31 580ifeq ($(TARGET_BASE_ARCH), arm)
40293e58
FB
581OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
582OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
583OBJS+= versatile_pci.o ptimer.o
584OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
585OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
586OBJS+= pl061.o
587OBJS+= arm-semi.o
588OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
589OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
590OBJS+= pflash_cfi01.o gumstix.o
591OBJS+= spitz.o ide.o serial.o nand.o ecc.o
592OBJS+= omap.o omap_lcdc.o omap1_clk.o omap_mmc.o omap_i2c.o
593OBJS+= palm.o tsc210x.o
594OBJS+= mst_fpga.o mainstone.o
5a1237c4 595CPPFLAGS += -DHAS_AUDIO
b5ff1b31 596endif
fdf9b3e8 597ifeq ($(TARGET_BASE_ARCH), sh4)
40293e58
FB
598OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
599OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
fdf9b3e8 600endif
0633879f 601ifeq ($(TARGET_BASE_ARCH), m68k)
40293e58
FB
602OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
603OBJS+= m68k-semi.o dummy_m68k.o
0633879f 604endif
a541f297 605ifdef CONFIG_GDBSTUB
40293e58 606OBJS+=gdbstub.o
728c9fd5 607endif
5b0753e0 608ifdef CONFIG_COCOA
1d14ffa9
FB
609COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
610ifdef CONFIG_COREAUDIO
611COCOA_LIBS+=-framework CoreAudio
612endif
5b0753e0 613endif
7c1f25b4 614ifdef CONFIG_SLIRP
6f30fa85 615CPPFLAGS+=-I$(SRC_PATH)/slirp
626df76a
FB
616endif
617
40293e58 618LIBS+=$(AIOLIBS)
c321f673 619# specific flags are needed for non soft mmu emulator
c321f673 620ifdef CONFIG_STATIC
40293e58 621LDFLAGS+=-static
de5eaa64 622endif
83fb7adf 623ifndef CONFIG_DARWIN
11d9f695 624ifndef CONFIG_WIN32
ec530c81 625ifndef CONFIG_SOLARIS
40293e58 626LIBS+=-lutil
11d9f695 627endif
83fb7adf 628endif
ec530c81 629endif
e3086fbf 630ifdef TARGET_GPROF
40293e58
FB
631vl.o: CFLAGS+=-p
632LDFLAGS+=-p
e3086fbf 633endif
c321f673 634
b8076a74 635ifeq ($(ARCH),ia64)
40293e58 636LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
74ccb34e
FB
637endif
638
1d14ffa9
FB
639ifdef CONFIG_WIN32
640SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
641endif
642
40293e58
FB
643# profiling code
644ifdef TARGET_GPROF
645LDFLAGS+=-p
646main.o: CFLAGS+=-p
6e1b3e4d
FB
647endif
648
40293e58 649$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
4d3b6f6e 650 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS)
626df76a 651
40293e58 652endif # !CONFIG_USER_ONLY
00a67ba1 653
626df76a 654%.o: %.c
40293e58 655 $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
626df76a 656
f72b519c 657%.o: %.S
6f30fa85 658 $(CC) $(CPPFLAGS) -c -o $@ $<
f72b519c 659
626df76a 660clean:
57fec1fe
FB
661 rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
662 rm -f *.d */*.d tcg/*.o
1e43adfc 663
5fafdf24 664install: all
9b14bb04 665ifneq ($(PROGS),)
6a882643 666 $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
9b14bb04 667endif
626df76a 668
2f96c28d
JM
669# Include automatically generated dependency files
670-include $(wildcard *.d */*.d)