]> git.proxmox.com Git - mirror_qemu.git/blame - Makefile.target
ioport: consolidate duplicated logic in register_ioport_{read, write}().
[mirror_qemu.git] / Makefile.target
CommitLineData
626df76a 1include config.mak
17759187 2include $(SRC_PATH)/rules.mak
626df76a 3
0b0babc6
FB
4TARGET_BASE_ARCH:=$(TARGET_ARCH)
5ifeq ($(TARGET_ARCH), x86_64)
6TARGET_BASE_ARCH:=i386
7endif
540635ba
TS
8ifeq ($(TARGET_ARCH), mipsn32)
9TARGET_BASE_ARCH:=mips
10endif
fbe4f65b
TS
11ifeq ($(TARGET_ARCH), mips64)
12TARGET_BASE_ARCH:=mips
13endif
a2458627
FB
14ifeq ($(TARGET_ARCH), ppc64)
15TARGET_BASE_ARCH:=ppc
16endif
22f8a8b3
JM
17ifeq ($(TARGET_ARCH), ppc64h)
18TARGET_BASE_ARCH:=ppc
19endif
d4082e95
JM
20ifeq ($(TARGET_ARCH), ppcemb)
21TARGET_BASE_ARCH:=ppc
22endif
64b3ab24
FB
23ifeq ($(TARGET_ARCH), sparc64)
24TARGET_BASE_ARCH:=sparc
25endif
0b0babc6 26TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
4fb240a4 27VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
46dc3881 28CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
0b0babc6 29#CFLAGS+=-Werror
626df76a 30LIBS=
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
6c041c54 75# cc-option
c7328801 76# Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0)
6c041c54 77
c7328801
AL
78cc-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 ;)
6f30fa85 80
40293e58
FB
81HELPER_CFLAGS=
82
626df76a 83ifeq ($(ARCH),i386)
6f30fa85 84HELPER_CFLAGS+=-fomit-frame-pointer
bc51c5c9
FB
85endif
86
d19076fa 87ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
88translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-time,)
89endif
90
626df76a 91ifeq ($(ARCH),sparc)
c7328801 92 ifneq ($(CONFIG_SOLARIS),yes)
40293e58 93 HELPER_CFLAGS+=-ffixed-i0
3142255c 94 endif
fdbb4691 95endif
626df76a 96
626df76a 97ifeq ($(ARCH),alpha)
626df76a 98# Ensure there's only a single GP
40293e58 99CFLAGS+=-msmall-data
626df76a
FB
100endif
101
f54b3f92 102ifeq ($(ARCH),hppa)
f54b3f92
AJ
103BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
104endif
105
626df76a 106ifeq ($(ARCH),ia64)
40293e58 107CFLAGS+=-mno-sdata
83fb7adf
FB
108endif
109
40293e58
FB
110CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
111LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
626df76a 112
6f30fa85 113CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
4a244704 114CPPFLAGS+=-U_FORTIFY_SOURCE
626df76a 115LIBS+=-lm
67b915a5 116ifdef CONFIG_WIN32
3db38e87 117LIBS+=-lwinmm -lws2_32 -liphlpapi
67b915a5 118endif
ec530c81
FB
119ifdef CONFIG_SOLARIS
120LIBS+=-lsocket -lnsl -lresolv
0475a5ca
TS
121ifdef NEEDS_LIBSUNMATH
122LIBS+=-lsunmath
123LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
40293e58 124CFLAGS+=-I/opt/SUNWspro/prod/include/cc
f72b519c 125endif
831b7825
TS
126endif
127
7ba1e619
AL
128kvm.o: CFLAGS+=$(KVM_CFLAGS)
129kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
130
40293e58 131all: $(PROGS)
c2fb2637
PB
132# Dummy command so that make thinks it has done something
133 @true
626df76a 134
40293e58 135#########################################################
626df76a 136# cpu emulator library
c9e0df73 137libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o
943e0a31 138libobj-$(CONFIG_KQEMU) += kqemu.o
57fec1fe 139# TCG code generator
c9e0df73 140libobj-y += tcg/tcg.o tcg/tcg-runtime.o
57fec1fe 141CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
8289b279
BS
142ifeq ($(ARCH),sparc64)
143CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
144endif
158142c2 145ifdef CONFIG_SOFTFLOAT
c9e0df73 146libobj-y += fpu/softfloat.o
158142c2 147else
c9e0df73 148libobj-y += fpu/softfloat-native.o
158142c2 149endif
6f30fa85 150CPPFLAGS+=-I$(SRC_PATH)/fpu
c9e0df73 151libobj-y += op_helper.o helper.o
e95c8d51 152
b7bcbe95 153ifeq ($(TARGET_BASE_ARCH), arm)
c9e0df73 154libobj-y += neon_helper.o iwmmxt_helper.o
e6e5906b
PB
155endif
156
cf6c1b16 157ifeq ($(TARGET_BASE_ARCH), alpha)
c9e0df73 158libobj-y += alpha_palcode.o
cf6c1b16
JM
159endif
160
e7daa605 161ifeq ($(TARGET_BASE_ARCH), cris)
c9e0df73 162libobj-y += cris-dis.o
e7daa605
TS
163
164ifndef CONFIG_USER_ONLY
c9e0df73 165libobj-y += mmu.o
e7daa605
TS
166endif
167endif
168
626df76a 169# NOTE: the disassembler code is only needed for debugging
c9e0df73 170libobj-y += disas.o
626df76a 171ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
bc51c5c9
FB
172USE_I386_DIS=y
173endif
0b0babc6 174ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
bc51c5c9
FB
175USE_I386_DIS=y
176endif
943e0a31 177libobj-$(USE_I386_DIS) += i386-dis.o
626df76a 178ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
c9e0df73 179libobj-y += alpha-dis.o
626df76a 180endif
a2458627 181ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
c9e0df73 182libobj-y += ppc-dis.o
626df76a 183endif
72b675ca 184ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
c9e0df73 185libobj-y += microblaze-dis.o
72b675ca 186ifndef CONFIG_USER_ONLY
c9e0df73 187libobj-y += mmu.o
72b675ca
EI
188endif
189endif
fbe4f65b 190ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
c9e0df73 191libobj-y += mips-dis.o
6af0bf9c 192endif
64b3ab24 193ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
c9e0df73 194libobj-y += sparc-dis.o
626df76a
FB
195endif
196ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
c9e0df73 197libobj-y += arm-dis.o
626df76a 198endif
48024e4a 199ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
c9e0df73 200libobj-y += m68k-dis.o
48024e4a 201endif
fdf9b3e8 202ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
c9e0df73 203libobj-y += sh4-dis.o
fdf9b3e8 204endif
f54b3f92 205ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
c9e0df73 206libobj-y += hppa-dis.o
f54b3f92 207endif
8f860bb8 208ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
c9e0df73 209libobj-y += s390-dis.o
8f860bb8 210endif
626df76a 211
40293e58
FB
212# libqemu
213
c9e0df73 214libqemu.a: $(libobj-y)
40293e58 215
86e840ee 216translate.o: translate.c cpu.h
40293e58 217
86e840ee 218translate-all.o: translate-all.c cpu.h
40293e58 219
86e840ee 220tcg/tcg.o: cpu.h
40293e58
FB
221
222# HELPER_CFLAGS is used for all the code compiled with static register
223# variables
807544e2 224op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
40293e58 225
807544e2 226cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
40293e58
FB
227
228#########################################################
229# Linux user emulator target
230
231ifdef CONFIG_LINUX_USER
232
40293e58
FB
233ifndef TARGET_ABI_DIR
234 TARGET_ABI_DIR=$(TARGET_ARCH)
235endif
3ebdd119 236VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
40293e58
FB
237CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
238
239ifdef CONFIG_STATIC
240LDFLAGS+=-static
241endif
242
243ifeq ($(ARCH),i386)
244ifdef TARGET_GPROF
245USE_I386_LD=y
246endif
247ifdef CONFIG_STATIC
248USE_I386_LD=y
249endif
250ifdef USE_I386_LD
251LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
252else
253# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
254# that the kernel ELF loader considers as an executable. I think this
255# is the simplest way to make it self virtualizable!
256LDFLAGS+=-Wl,-shared
257endif
258endif
259
260ifeq ($(ARCH),x86_64)
261LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
262endif
263
264ifeq ($(ARCH),ppc)
265LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
266endif
267
810260a8 268ifeq ($(ARCH),ppc64)
269LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
270endif
271
40293e58
FB
272ifeq ($(ARCH),s390)
273LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
274endif
275
276ifeq ($(ARCH),sparc)
277# -static is used to avoid g1/g3 usage by the dynamic linker
278LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
279endif
280
281ifeq ($(ARCH),sparc64)
282LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
283endif
284
285ifeq ($(ARCH),alpha)
286LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
287endif
288
289ifeq ($(ARCH),ia64)
290LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
291endif
292
293ifeq ($(ARCH),arm)
294LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
295endif
296
297ifeq ($(ARCH),m68k)
298LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
299endif
300
301ifeq ($(ARCH),mips)
302ifeq ($(WORDS_BIGENDIAN),yes)
303LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
304else
305LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
306endif
307endif
308
309ifeq ($(ARCH),mips64)
310ifeq ($(WORDS_BIGENDIAN),yes)
311LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
312else
313LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
314endif
315endif
316
6d946cda
AJ
317# profiling code
318ifdef TARGET_GPROF
319LDFLAGS+=-p
320CFLAGS+=-p
321endif
322
a8e492c0 323obj-y = main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
322f9d01 324 elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
e5d355d1
AL
325LIBS+= $(PTHREADLIBS)
326LIBS+= $(CLOCKLIBS)
943e0a31
JQ
327obj-$(TARGET_HAS_BFLT) += flatload.o
328
40293e58 329ifdef TARGET_HAS_ELFLOAD32
40293e58
FB
330elfload32.o: elfload.c
331endif
943e0a31 332obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
40293e58
FB
333
334ifeq ($(TARGET_ARCH), i386)
a8e492c0 335obj-y += vm86.o
40293e58
FB
336endif
337ifeq ($(TARGET_ARCH), arm)
a8e492c0 338obj-y += nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
40293e58
FB
339nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
340 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
341endif
342ifeq ($(TARGET_ARCH), m68k)
a8e492c0 343obj-y += m68k-sim.o m68k-semi.o
40293e58
FB
344endif
345
40293e58
FB
346# Note: this is a workaround. The real fix is to avoid compiling
347# cpu_signal_handler() in cpu-exec.c.
807544e2 348signal.o: CFLAGS += $(HELPER_CFLAGS)
626df76a 349
0bfe3ca5 350$(QEMU_PROG): ARLIBS=../libqemu_user.a libqemu.a
a8e492c0
JQ
351$(QEMU_PROG): $(obj-y) ../libqemu_user.a libqemu.a
352 $(call LINK,$(obj-y))
626df76a
FB
353ifeq ($(ARCH),alpha)
354# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
355# the address space (31 bit so sign extending doesn't matter)
356 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
357endif
358
40293e58
FB
359endif #CONFIG_LINUX_USER
360
361#########################################################
362# Darwin user emulator target
363
364ifdef CONFIG_DARWIN_USER
365
366VPATH+=:$(SRC_PATH)/darwin-user
367CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
368
369# Leave some space for the regular program loading zone
370LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
371
372LIBS+=-lmx
373
a8e492c0
JQ
374obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
375 gdbstub.o gdbstub-xml.o
40293e58 376
40293e58
FB
377# Note: this is a workaround. The real fix is to avoid compiling
378# cpu_signal_handler() in cpu-exec.c.
807544e2 379signal.o: CFLAGS += $(HELPER_CFLAGS)
40293e58 380
0bfe3ca5 381$(QEMU_PROG): ARLIBS=libqemu.a
a8e492c0
JQ
382$(QEMU_PROG): $(obj-y) libqemu.a
383 $(call LINK,$(obj-y))
40293e58
FB
384
385endif #CONFIG_DARWIN_USER
386
84778508
BS
387#########################################################
388# BSD user emulator target
389
390ifdef CONFIG_BSD_USER
391
392VPATH+=:$(SRC_PATH)/bsd-user
393CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
394
395ifdef CONFIG_STATIC
396LDFLAGS+=-static
397endif
398
399ifeq ($(ARCH),i386)
400ifdef TARGET_GPROF
401USE_I386_LD=y
402endif
403ifdef CONFIG_STATIC
404USE_I386_LD=y
405endif
406ifdef USE_I386_LD
407LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
408else
409# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
410# that the kernel ELF loader considers as an executable. I think this
411# is the simplest way to make it self virtualizable!
412LDFLAGS+=-Wl,-shared
413endif
414endif
415
416ifeq ($(ARCH),x86_64)
417LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
418endif
419
420ifeq ($(ARCH),ppc)
421LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
422endif
423
424ifeq ($(ARCH),ppc64)
425LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
426endif
427
428ifeq ($(ARCH),s390)
429LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
430endif
431
432ifeq ($(ARCH),sparc)
433# -static is used to avoid g1/g3 usage by the dynamic linker
434LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
435endif
436
437ifeq ($(ARCH),sparc64)
438LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
439endif
440
441ifeq ($(ARCH),alpha)
442LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
443endif
444
445ifeq ($(ARCH),ia64)
446LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
447endif
448
449ifeq ($(ARCH),arm)
450LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
451endif
452
453ifeq ($(ARCH),m68k)
454LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
455endif
456
457ifeq ($(ARCH),mips)
458ifeq ($(WORDS_BIGENDIAN),yes)
459LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
460else
461LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
462endif
463endif
464
465ifeq ($(ARCH),mips64)
466ifeq ($(WORDS_BIGENDIAN),yes)
467LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
468else
469LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
470endif
471endif
472
a8e492c0
JQ
473obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
474 gdbstub.o gdbstub-xml.o
475obj-y += uaccess.o
84778508 476
84778508
BS
477# Note: this is a workaround. The real fix is to avoid compiling
478# cpu_signal_handler() in cpu-exec.c.
807544e2 479signal.o: CFLAGS += $(HELPER_CFLAGS)
84778508 480
0bfe3ca5 481$(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
a8e492c0
JQ
482$(QEMU_PROG): $(obj-y) libqemu.a ../libqemu_user.a
483 $(call LINK,$(obj-y))
84778508
BS
484
485endif #CONFIG_BSD_USER
486
40293e58
FB
487#########################################################
488# System emulator target
489ifndef CONFIG_USER_ONLY
490
a8e492c0 491obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
32993977 492 gdbstub.o gdbstub-xml.o msix.o ioport.o
1fd31ad7
AL
493# virtio has to be here due to weird dependency between PCI and virtio-net.
494# need to fix this properly
a8e492c0
JQ
495obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
496obj-$(CONFIG_KVM) += kvm.o kvm-all.o
a3392f9b 497
40293e58 498LIBS+=-lz
1d14ffa9 499ifdef CONFIG_ALSA
1d14ffa9
FB
500LIBS += -lasound
501endif
ca9cc28c
AZ
502ifdef CONFIG_ESD
503LIBS += -lesd
504endif
b8e59f18 505ifdef CONFIG_PA
506LIBS += -lpulse-simple
507endif
1d14ffa9 508ifdef CONFIG_DSOUND
1d14ffa9 509LIBS += -lole32 -ldxguid
85571bc7 510endif
102a52e4 511ifdef CONFIG_FMOD
102a52e4 512LIBS += $(CONFIG_FMOD_LIB)
85571bc7 513endif
2f6a1ab0
BS
514ifdef CONFIG_OSS
515LIBS += $(CONFIG_OSS_LIB)
516endif
4fb240a4 517
b6271b48
JQ
518sound-obj-y =
519sound-obj-$(CONFIG_SB16) += sb16.o
520sound-obj-$(CONFIG_ES1370) += es1370.o
521sound-obj-$(CONFIG_AC97) += ac97.o
522sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
523sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
57a943c4 524sound-obj-$(CONFIG_CS4231A) += cs4231a.o
b6271b48 525
1d14ffa9 526ifdef CONFIG_ADLIB
c40e866f 527adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
1d14ffa9 528endif
85571bc7 529
8d5d2d4c
TS
530ifdef CONFIG_VNC_TLS
531CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
532LIBS += $(CONFIG_VNC_TLS_LIBS)
533endif
534
2f9606b3
AL
535ifdef CONFIG_VNC_SASL
536CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
537LIBS += $(CONFIG_VNC_SASL_LIBS)
538endif
539
fb599c9a
AZ
540ifdef CONFIG_BLUEZ
541LIBS += $(CONFIG_BLUEZ_LIBS)
542endif
543
e37630ca 544# xen backend driver support
943e0a31 545obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
e37630ca 546ifeq ($(CONFIG_XEN), yes)
e37630ca
AL
547 LIBS += $(XEN_LIBS)
548endif
549
a594cfbf 550# USB layer
a8e492c0 551obj-y += usb-ohci.o
a594cfbf 552
a41b2ff2 553# PCI network cards
a8e492c0
JQ
554obj-y += eepro100.o
555obj-y += ne2000.o
556obj-y += pcnet.o
557obj-y += rtl8139.o
558obj-y += e1000.o
a41b2ff2 559
9dd986cc 560# Generic watchdog support and some watchdog devices
a8e492c0 561obj-y += wdt_ib700.o wdt_i6300esb.o
9dd986cc 562
0b0babc6 563ifeq ($(TARGET_BASE_ARCH), i386)
a541f297 564# Hardware support
5f877627 565obj-y += ide.o pckbd.o vga.o $(sound-obj-y) dma.o
a8e492c0
JQ
566obj-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
567obj-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
568obj-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
569obj-y += device-hotplug.o pci-hotplug.o smbios.o
b00052e4 570CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
67b915a5 571endif
a2458627 572ifeq ($(TARGET_BASE_ARCH), ppc)
70ad3dec 573CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
3cbee15b 574# shared objects
5f877627 575obj-y += ppc.o ide.o vga.o $(sound-obj-y) dma.o openpic.o
3cbee15b 576# PREP target
a8e492c0
JQ
577obj-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
578obj-y += prep_pci.o ppc_prep.o
3cbee15b 579# Mac shared devices
a8e492c0 580obj-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
3cbee15b 581# OldWorld PowerMac
a8e492c0 582obj-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
3cbee15b 583# NewWorld PowerMac
a8e492c0 584obj-y += unin_pci.o ppc_newworld.o
3cbee15b 585# PowerPC 4xx boards
a8e492c0
JQ
586obj-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
587obj-y += ppc440.o ppc440_bamboo.o
74c62ba8 588# PowerPC E500 boards
a8e492c0 589obj-y += ppce500_pci.o ppce500_mpc8544ds.o
f652e6af 590ifdef FDT_LIBS
a8e492c0 591obj-y += device_tree.o
f652e6af
AJ
592LIBS+= $(FDT_LIBS)
593endif
943e0a31 594obj-$(CONFIG_KVM) += kvm_ppc.o
a541f297 595endif
fbe4f65b 596ifeq ($(TARGET_BASE_ARCH), mips)
a8e492c0
JQ
597obj-y += mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
598obj-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
599obj-y += g364fb.o jazz_led.o dp8393x.o
600obj-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
5f877627 601obj-y += piix_pci.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y)
a8e492c0
JQ
602obj-y += mipsnet.o
603obj-y += pflash_cfi01.o
604obj-y += vmware_vga.o
4ce7ff6e 605CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
6af0bf9c 606endif
72b675ca 607ifeq ($(TARGET_BASE_ARCH), microblaze)
a8e492c0 608obj-y += petalogix_s3adsp1800_mmu.o
72b675ca 609
a8e492c0
JQ
610obj-y += microblaze_pic_cpu.o
611obj-y += xilinx_intc.o
612obj-y += xilinx_timer.o
613obj-y += xilinx_uartlite.o
614obj-y += xilinx_ethlite.o
72b675ca 615
a8e492c0 616obj-y += pflash_cfi02.o
72b675ca 617ifdef FDT_LIBS
a8e492c0 618obj-y += device_tree.o
72b675ca
EI
619LIBS+= $(FDT_LIBS)
620endif
621endif
e7daa605 622ifeq ($(TARGET_BASE_ARCH), cris)
10c144e2 623# Boards
a8e492c0 624obj-y += cris_pic_cpu.o etraxfs.o axis_dev88.o
10c144e2
EI
625
626# IO blocks
a8e492c0
JQ
627obj-y += etraxfs_dma.o
628obj-y += etraxfs_pic.o
629obj-y += etraxfs_eth.o
630obj-y += etraxfs_timer.o
631obj-y += etraxfs_ser.o
e62b5b13 632
a8e492c0 633obj-y += pflash_cfi02.o
e7daa605 634endif
64b3ab24 635ifeq ($(TARGET_BASE_ARCH), sparc)
3475187d 636ifeq ($(TARGET_ARCH), sparc64)
a8e492c0
JQ
637obj-y += sun4u.o ide.o pckbd.o vga.o apb_pci.o
638obj-y += fdc.o mc146818rtc.o serial.o
639obj-y += cirrus_vga.o parallel.o
3475187d 640else
a8e492c0
JQ
641obj-y += sun4m.o tcx.o iommu.o slavio_intctl.o
642obj-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
643obj-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
3475187d 644endif
e95c8d51 645endif
b5ff1b31 646ifeq ($(TARGET_BASE_ARCH), arm)
a8e492c0
JQ
647obj-y += integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
648obj-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
649obj-y += versatile_pci.o
650obj-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
651obj-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
652obj-y += pl061.o
653obj-y += arm-semi.o
654obj-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
655obj-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
656obj-y += pflash_cfi01.o gumstix.o
657obj-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
658obj-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
659obj-y += omap2.o omap_dss.o soc_dma.o
660obj-y += omap_sx1.o palm.o tsc210x.o
661obj-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
662obj-y += mst_fpga.o mainstone.o
663obj-y += musicpal.o pflash_cfi02.o
664obj-y += framebuffer.o
665obj-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
666obj-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
667obj-y += syborg_virtio.o
5a1237c4 668CPPFLAGS += -DHAS_AUDIO
b5ff1b31 669endif
fdf9b3e8 670ifeq ($(TARGET_BASE_ARCH), sh4)
a8e492c0
JQ
671obj-y += shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
672obj-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
673obj-y += ide.o
fdf9b3e8 674endif
0633879f 675ifeq ($(TARGET_BASE_ARCH), m68k)
a8e492c0
JQ
676obj-y += an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
677obj-y += m68k-semi.o dummy_m68k.o
0633879f 678endif
5b0753e0 679ifdef CONFIG_COCOA
1d14ffa9
FB
680COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
681ifdef CONFIG_COREAUDIO
682COCOA_LIBS+=-framework CoreAudio
683endif
5b0753e0 684endif
7c1f25b4 685ifdef CONFIG_SLIRP
6f30fa85 686CPPFLAGS+=-I$(SRC_PATH)/slirp
626df76a
FB
687endif
688
e5d355d1
AL
689LIBS+=$(PTHREADLIBS)
690LIBS+=$(CLOCKLIBS)
c321f673 691# specific flags are needed for non soft mmu emulator
c321f673 692ifdef CONFIG_STATIC
40293e58 693LDFLAGS+=-static
de5eaa64 694endif
83fb7adf 695ifndef CONFIG_DARWIN
11d9f695 696ifndef CONFIG_WIN32
ec530c81 697ifndef CONFIG_SOLARIS
b29fe3ed 698ifndef CONFIG_AIX
40293e58 699LIBS+=-lutil
11d9f695 700endif
b29fe3ed 701endif
83fb7adf 702endif
ec530c81 703endif
e3086fbf 704ifdef TARGET_GPROF
40293e58
FB
705vl.o: CFLAGS+=-p
706LDFLAGS+=-p
e3086fbf 707endif
c321f673 708
b8076a74 709ifeq ($(ARCH),ia64)
40293e58 710LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
74ccb34e
FB
711endif
712
1d14ffa9
FB
713ifdef CONFIG_WIN32
714SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
715endif
716
40293e58
FB
717# profiling code
718ifdef TARGET_GPROF
719LDFLAGS+=-p
720main.o: CFLAGS+=-p
6e1b3e4d
FB
721endif
722
537fe2d6
AL
723vl.o: CFLAGS+=$(SDL_CFLAGS)
724
5824d651
BS
725vl.o: qemu-options.h
726
2313086a
BS
727monitor.o: qemu-monitor.h
728
769ce76d 729$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
79eb76ad 730$(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
a8e492c0
JQ
731$(QEMU_PROG): $(obj-y) ../libqemu_common.a libqemu.a $(HWLIB)
732 $(call LINK,$(obj-y))
626df76a 733
40293e58 734endif # !CONFIG_USER_ONLY
00a67ba1 735
56aebc89 736gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
56aebc89 737ifeq ($(TARGET_XML_FILES),)
1aef4c57 738 $(call quiet-command,rm -f $@ && echo > $@," GEN $(TARGET_DIR)$@")
56aebc89 739else
1aef4c57 740 $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@")
56aebc89
PB
741endif
742
5824d651 743qemu-options.h: $(SRC_PATH)/qemu-options.hx
0d00e563 744 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
5824d651 745
2313086a
BS
746qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
747 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
748
626df76a 749clean:
2313086a 750 rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
57fec1fe 751 rm -f *.d */*.d tcg/*.o
2313086a 752 rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
1e43adfc 753
5fafdf24 754install: all
9b14bb04 755ifneq ($(PROGS),)
1625af87 756 $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
9b14bb04 757endif
626df76a 758
2f96c28d
JM
759# Include automatically generated dependency files
760-include $(wildcard *.d */*.d)