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