]> git.proxmox.com Git - qemu.git/blame - Makefile.target
8250: Customized base baudrate
[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
f54b3f92
AJ
131ifeq ($(ARCH),hppa)
132OP_CFLAGS=-O1 -fno-delayed-branch
133BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
134endif
135
626df76a 136ifeq ($(ARCH),ia64)
40293e58 137CFLAGS+=-mno-sdata
6f30fa85 138OP_CFLAGS+=-mno-sdata
626df76a
FB
139endif
140
141ifeq ($(ARCH),arm)
6f30fa85 142OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
626df76a
FB
143endif
144
38e584a0 145ifeq ($(ARCH),m68k)
6f30fa85 146OP_CFLAGS+=-fomit-frame-pointer
6f30fa85
TS
147endif
148
149ifeq ($(ARCH),mips)
9617efe8 150OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
fbe4f65b
TS
151endif
152
153ifeq ($(ARCH),mips64)
9617efe8 154OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
83fb7adf
FB
155endif
156
40293e58
FB
157CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
158LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
3142255c 159OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
626df76a 160
6f30fa85 161CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
626df76a 162LIBS+=-lm
67b915a5 163ifdef CONFIG_WIN32
3db38e87 164LIBS+=-lwinmm -lws2_32 -liphlpapi
67b915a5 165endif
ec530c81
FB
166ifdef CONFIG_SOLARIS
167LIBS+=-lsocket -lnsl -lresolv
0475a5ca
TS
168ifdef NEEDS_LIBSUNMATH
169LIBS+=-lsunmath
170LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
171OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
40293e58 172CFLAGS+=-I/opt/SUNWspro/prod/include/cc
f72b519c 173endif
831b7825
TS
174endif
175
40293e58 176all: $(PROGS)
626df76a 177
40293e58 178#########################################################
626df76a 179# cpu emulator library
57fec1fe 180LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
cf2be984
BS
181 translate.o host-utils.o
182ifndef CONFIG_NO_DYNGEN_OP
183LIBOBJS+=op.o
184endif
57fec1fe
FB
185# TCG code generator
186LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
187CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
8289b279
BS
188ifeq ($(ARCH),sparc64)
189CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
190endif
158142c2
FB
191ifdef CONFIG_SOFTFLOAT
192LIBOBJS+=fpu/softfloat.o
193else
194LIBOBJS+=fpu/softfloat-native.o
195endif
6f30fa85 196CPPFLAGS+=-I$(SRC_PATH)/fpu
626df76a
FB
197
198ifeq ($(TARGET_ARCH), i386)
1e43adfc 199LIBOBJS+=helper.o helper2.o
626df76a
FB
200endif
201
0b0babc6
FB
202ifeq ($(TARGET_ARCH), x86_64)
203LIBOBJS+=helper.o helper2.o
204endif
205
a2458627 206ifeq ($(TARGET_BASE_ARCH), ppc)
728c9fd5 207LIBOBJS+= op_helper.o helper.o
67867308
FB
208endif
209
fbe4f65b 210ifeq ($(TARGET_BASE_ARCH), mips)
6af0bf9c
FB
211LIBOBJS+= op_helper.o helper.o
212endif
213
64b3ab24 214ifeq ($(TARGET_BASE_ARCH), sparc)
e95c8d51
FB
215LIBOBJS+= op_helper.o helper.o
216endif
217
b7bcbe95 218ifeq ($(TARGET_BASE_ARCH), arm)
e677137d 219LIBOBJS+= op_helper.o helper.o neon_helper.o iwmmxt_helper.o
b7bcbe95
FB
220endif
221
fdf9b3e8
FB
222ifeq ($(TARGET_BASE_ARCH), sh4)
223LIBOBJS+= op_helper.o helper.o
224endif
225
e6e5906b 226ifeq ($(TARGET_BASE_ARCH), m68k)
0633879f 227LIBOBJS+= op_helper.o helper.o
e6e5906b
PB
228endif
229
cf6c1b16
JM
230ifeq ($(TARGET_BASE_ARCH), alpha)
231LIBOBJS+= op_helper.o helper.o alpha_palcode.o
232endif
233
e7daa605
TS
234ifeq ($(TARGET_BASE_ARCH), cris)
235LIBOBJS+= op_helper.o helper.o
236LIBOBJS+= cris-dis.o
237
238ifndef CONFIG_USER_ONLY
239LIBOBJS+= mmu.o
240endif
241endif
242
626df76a 243# NOTE: the disassembler code is only needed for debugging
5fafdf24 244LIBOBJS+=disas.o
626df76a 245ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
bc51c5c9
FB
246USE_I386_DIS=y
247endif
0b0babc6 248ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
bc51c5c9
FB
249USE_I386_DIS=y
250endif
251ifdef USE_I386_DIS
626df76a
FB
252LIBOBJS+=i386-dis.o
253endif
254ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
255LIBOBJS+=alpha-dis.o
256endif
a2458627 257ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
626df76a
FB
258LIBOBJS+=ppc-dis.o
259endif
fbe4f65b 260ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
6af0bf9c
FB
261LIBOBJS+=mips-dis.o
262endif
64b3ab24 263ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
626df76a
FB
264LIBOBJS+=sparc-dis.o
265endif
266ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
267LIBOBJS+=arm-dis.o
268endif
48024e4a
FB
269ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
270LIBOBJS+=m68k-dis.o
271endif
fdf9b3e8
FB
272ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
273LIBOBJS+=sh4-dis.o
274endif
f54b3f92
AJ
275ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
276LIBOBJS+=hppa-dis.o
277endif
8f860bb8
TS
278ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
279LIBOBJS+=s390-dis.o
280endif
626df76a 281
40293e58
FB
282# libqemu
283
cf2be984 284ifndef CONFIG_NO_DYNGEN_OP
dd48594e 285OPC_H = gen-op.h dyngen-opc.h op.h
cf2be984 286endif
dd48594e 287
40293e58
FB
288libqemu.a: $(LIBOBJS)
289 rm -f $@
290 $(AR) rcs $@ $(LIBOBJS)
291
dd48594e
PB
292translate.o: translate.c cpu.h $(OPC_H)
293
294translate-all.o: translate-all.c cpu.h $(OPC_H)
295
296tcg/tcg.o: cpu.h $(OPC_H)
40293e58 297
dd48594e 298tcg/tcg-dyngen.o: $(OPC_H)
40293e58 299
dd48594e 300tcg/tcg-runtime.o: $(OPC_H)
40293e58
FB
301
302op.h: op.o $(DYNGEN)
303 $(DYNGEN) -o $@ $<
304
57fec1fe 305dyngen-opc.h: op.o $(DYNGEN)
40293e58
FB
306 $(DYNGEN) -c -o $@ $<
307
308gen-op.h: op.o $(DYNGEN)
309 $(DYNGEN) -g -o $@ $<
310
311op.o: op.c
312 $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
313
8dd3dca3
AJ
314machine.o: machine.c
315 $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
316
40293e58
FB
317# HELPER_CFLAGS is used for all the code compiled with static register
318# variables
319ifeq ($(TARGET_BASE_ARCH), i386)
320# XXX: rename helper.c to op_helper.c
321helper.o: helper.c
322 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
323else
324op_helper.o: op_helper.c
325 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
326endif
327
328cpu-exec.o: cpu-exec.c
329 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
330
331#########################################################
332# Linux user emulator target
333
334ifdef CONFIG_LINUX_USER
335
40293e58
FB
336ifndef TARGET_ABI_DIR
337 TARGET_ABI_DIR=$(TARGET_ARCH)
338endif
3ebdd119 339VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
40293e58
FB
340CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
341
342ifdef CONFIG_STATIC
343LDFLAGS+=-static
344endif
345
346ifeq ($(ARCH),i386)
347ifdef TARGET_GPROF
348USE_I386_LD=y
349endif
350ifdef CONFIG_STATIC
351USE_I386_LD=y
352endif
353ifdef USE_I386_LD
354LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
355else
356# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
357# that the kernel ELF loader considers as an executable. I think this
358# is the simplest way to make it self virtualizable!
359LDFLAGS+=-Wl,-shared
360endif
361endif
362
363ifeq ($(ARCH),x86_64)
364LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
365endif
366
367ifeq ($(ARCH),ppc)
368LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
369endif
370
371ifeq ($(ARCH),s390)
372LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
373endif
374
375ifeq ($(ARCH),sparc)
376# -static is used to avoid g1/g3 usage by the dynamic linker
377LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
378endif
379
380ifeq ($(ARCH),sparc64)
381LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
382endif
383
384ifeq ($(ARCH),alpha)
385LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
386endif
387
388ifeq ($(ARCH),ia64)
389LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
390endif
391
392ifeq ($(ARCH),arm)
393LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
394endif
395
396ifeq ($(ARCH),m68k)
397LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
398endif
399
400ifeq ($(ARCH),mips)
401ifeq ($(WORDS_BIGENDIAN),yes)
402LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
403else
404LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
405endif
406endif
407
408ifeq ($(ARCH),mips64)
409ifeq ($(WORDS_BIGENDIAN),yes)
410LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
411else
412LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
413endif
414endif
415
416OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
417 elfload.o linuxload.o uaccess.o
418LIBS+= $(AIOLIBS)
419ifdef TARGET_HAS_BFLT
420OBJS+= flatload.o
421endif
422ifdef TARGET_HAS_ELFLOAD32
423OBJS+= elfload32.o
424elfload32.o: elfload.c
425endif
426
427ifeq ($(TARGET_ARCH), i386)
428OBJS+= vm86.o
429endif
430ifeq ($(TARGET_ARCH), arm)
431OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
432nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
433 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
434endif
435ifeq ($(TARGET_ARCH), m68k)
436OBJS+= m68k-sim.o m68k-semi.o
437endif
438
1fddef4b
FB
439ifdef CONFIG_GDBSTUB
440OBJS+=gdbstub.o
441endif
626df76a 442
40293e58 443OBJS+= libqemu.a
ca10f867 444OBJS+= ../libqemu_common.a
40293e58
FB
445
446# Note: this is a workaround. The real fix is to avoid compiling
447# cpu_signal_handler() in cpu-exec.c.
448signal.o: signal.c
449 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
626df76a 450
40293e58
FB
451$(QEMU_PROG): $(OBJS)
452 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
626df76a
FB
453ifeq ($(ARCH),alpha)
454# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
455# the address space (31 bit so sign extending doesn't matter)
456 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
457endif
458
40293e58
FB
459endif #CONFIG_LINUX_USER
460
461#########################################################
462# Darwin user emulator target
463
464ifdef CONFIG_DARWIN_USER
465
466VPATH+=:$(SRC_PATH)/darwin-user
467CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
468
469# Leave some space for the regular program loading zone
470LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
471
472LIBS+=-lmx
473
474OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
475
476OBJS+= libqemu.a
477
478ifdef CONFIG_GDBSTUB
479OBJS+=gdbstub.o
480endif
481
482# Note: this is a workaround. The real fix is to avoid compiling
483# cpu_signal_handler() in cpu-exec.c.
484signal.o: signal.c
485 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
486
487$(QEMU_PROG): $(OBJS)
488 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
489
490endif #CONFIG_DARWIN_USER
491
492#########################################################
493# System emulator target
494ifndef CONFIG_USER_ONLY
495
8dd3dca3 496OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o
223d4670 497ifdef CONFIG_WIN32
40293e58 498OBJS+=block-raw-win32.o
223d4670 499else
40293e58 500OBJS+=block-raw-posix.o
223d4670 501endif
a541f297 502
40293e58 503LIBS+=-lz
1d14ffa9 504ifdef CONFIG_ALSA
1d14ffa9
FB
505LIBS += -lasound
506endif
ca9cc28c
AZ
507ifdef CONFIG_ESD
508LIBS += -lesd
509endif
1d14ffa9 510ifdef CONFIG_DSOUND
1d14ffa9 511LIBS += -lole32 -ldxguid
85571bc7 512endif
102a52e4 513ifdef CONFIG_FMOD
102a52e4 514LIBS += $(CONFIG_FMOD_LIB)
85571bc7 515endif
4fb240a4
FB
516
517SOUND_HW = sb16.o es1370.o
ca9cc28c
AZ
518ifdef CONFIG_AC97
519SOUND_HW += ac97.o
520endif
1d14ffa9
FB
521ifdef CONFIG_ADLIB
522SOUND_HW += fmopl.o adlib.o
523endif
423d65f4
AZ
524ifdef CONFIG_GUS
525SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
526endif
85571bc7 527
8d5d2d4c
TS
528ifdef CONFIG_VNC_TLS
529CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
530LIBS += $(CONFIG_VNC_TLS_LIBS)
531endif
532
2e5d83bb 533# SCSI layer
8b17de88 534OBJS+= lsi53c895a.o esp.o
2e5d83bb 535
a594cfbf 536# USB layer
40293e58 537OBJS+= usb-ohci.o
a594cfbf 538
663e8e51 539# EEPROM emulation
40293e58 540OBJS += eeprom93xx.o
663e8e51 541
a41b2ff2 542# PCI network cards
40293e58
FB
543OBJS += eepro100.o
544OBJS += ne2000.o
545OBJS += pcnet.o
546OBJS += rtl8139.o
7c23b892 547OBJS += e1000.o
a41b2ff2 548
0b0babc6 549ifeq ($(TARGET_BASE_ARCH), i386)
a541f297 550# Hardware support
40293e58
FB
551OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
552OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
553OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
554OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o
b00052e4 555CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
67b915a5 556endif
a2458627 557ifeq ($(TARGET_BASE_ARCH), ppc)
b00052e4 558CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
3cbee15b 559# shared objects
40293e58 560OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
3cbee15b 561# PREP target
40293e58
FB
562OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
563OBJS+= prep_pci.o ppc_prep.o
3cbee15b 564# Mac shared devices
40293e58 565OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
3cbee15b 566# OldWorld PowerMac
40293e58 567OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
3cbee15b 568# NewWorld PowerMac
40293e58 569OBJS+= unin_pci.o ppc_chrp.o
3cbee15b 570# PowerPC 4xx boards
40293e58 571OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
a541f297 572endif
fbe4f65b 573ifeq ($(TARGET_BASE_ARCH), mips)
c171148c 574OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
4ce7ff6e
AJ
575OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
576OBJS+= g364fb.o jazz_led.o
40293e58 577OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
4ce7ff6e 578OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
40293e58
FB
579OBJS+= mipsnet.o
580OBJS+= pflash_cfi01.o
4ce7ff6e 581CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
6af0bf9c 582endif
e7daa605 583ifeq ($(TARGET_BASE_ARCH), cris)
40293e58 584OBJS+= etraxfs.o
e62b5b13 585OBJS+= etraxfs_pic.o
40293e58
FB
586OBJS+= etraxfs_timer.o
587OBJS+= etraxfs_ser.o
e62b5b13
EI
588
589OBJS+= ptimer.o
590OBJS+= pflash_cfi01.o
e7daa605 591endif
64b3ab24 592ifeq ($(TARGET_BASE_ARCH), sparc)
3475187d 593ifeq ($(TARGET_ARCH), sparc64)
40293e58
FB
594OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
595OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
596OBJS+= cirrus_vga.o parallel.o ptimer.o
3475187d 597else
40293e58 598OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
8b17de88 599OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
40293e58 600OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
3475187d 601endif
e95c8d51 602endif
b5ff1b31 603ifeq ($(TARGET_BASE_ARCH), arm)
40293e58
FB
604OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
605OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
606OBJS+= versatile_pci.o ptimer.o
607OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
608OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
609OBJS+= pl061.o
610OBJS+= arm-semi.o
611OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
612OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
613OBJS+= pflash_cfi01.o gumstix.o
614OBJS+= spitz.o ide.o serial.o nand.o ecc.o
b4e3104b 615OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
827df9f3 616OBJS+= omap2.o omap_dss.o
40293e58 617OBJS+= palm.o tsc210x.o
942ac052 618OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
40293e58 619OBJS+= mst_fpga.o mainstone.o
24859b68 620OBJS+= musicpal.o pflash_cfi02.o
5a1237c4 621CPPFLAGS += -DHAS_AUDIO
b5ff1b31 622endif
fdf9b3e8 623ifeq ($(TARGET_BASE_ARCH), sh4)
40293e58
FB
624OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
625OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
fdf9b3e8 626endif
0633879f 627ifeq ($(TARGET_BASE_ARCH), m68k)
40293e58
FB
628OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
629OBJS+= m68k-semi.o dummy_m68k.o
0633879f 630endif
a541f297 631ifdef CONFIG_GDBSTUB
40293e58 632OBJS+=gdbstub.o
728c9fd5 633endif
5b0753e0 634ifdef CONFIG_COCOA
1d14ffa9
FB
635COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
636ifdef CONFIG_COREAUDIO
637COCOA_LIBS+=-framework CoreAudio
638endif
5b0753e0 639endif
7c1f25b4 640ifdef CONFIG_SLIRP
6f30fa85 641CPPFLAGS+=-I$(SRC_PATH)/slirp
626df76a
FB
642endif
643
40293e58 644LIBS+=$(AIOLIBS)
c321f673 645# specific flags are needed for non soft mmu emulator
c321f673 646ifdef CONFIG_STATIC
40293e58 647LDFLAGS+=-static
de5eaa64 648endif
83fb7adf 649ifndef CONFIG_DARWIN
11d9f695 650ifndef CONFIG_WIN32
ec530c81 651ifndef CONFIG_SOLARIS
40293e58 652LIBS+=-lutil
11d9f695 653endif
83fb7adf 654endif
ec530c81 655endif
e3086fbf 656ifdef TARGET_GPROF
40293e58
FB
657vl.o: CFLAGS+=-p
658LDFLAGS+=-p
e3086fbf 659endif
c321f673 660
b8076a74 661ifeq ($(ARCH),ia64)
40293e58 662LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
74ccb34e
FB
663endif
664
1d14ffa9
FB
665ifdef CONFIG_WIN32
666SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
667endif
668
40293e58
FB
669# profiling code
670ifdef TARGET_GPROF
671LDFLAGS+=-p
672main.o: CFLAGS+=-p
6e1b3e4d
FB
673endif
674
40293e58 675$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
2e4d9fb1 676 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS)
626df76a 677
40293e58 678endif # !CONFIG_USER_ONLY
00a67ba1 679
626df76a 680%.o: %.c
40293e58 681 $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
626df76a 682
f72b519c 683%.o: %.S
6f30fa85 684 $(CC) $(CPPFLAGS) -c -o $@ $<
f72b519c 685
626df76a 686clean:
57fec1fe
FB
687 rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
688 rm -f *.d */*.d tcg/*.o
1e43adfc 689
5fafdf24 690install: all
9b14bb04 691ifneq ($(PROGS),)
6a882643 692 $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
9b14bb04 693endif
626df76a 694
2f96c28d
JM
695# Include automatically generated dependency files
696-include $(wildcard *.d */*.d)