]> git.proxmox.com Git - mirror_qemu.git/blame - Makefile.target
xen: pv domain builder. (Gerd Hoffmann)
[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
626df76a 114LIBS+=-lm
67b915a5 115ifdef CONFIG_WIN32
3db38e87 116LIBS+=-lwinmm -lws2_32 -liphlpapi
67b915a5 117endif
ec530c81
FB
118ifdef CONFIG_SOLARIS
119LIBS+=-lsocket -lnsl -lresolv
0475a5ca
TS
120ifdef NEEDS_LIBSUNMATH
121LIBS+=-lsunmath
122LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
40293e58 123CFLAGS+=-I/opt/SUNWspro/prod/include/cc
f72b519c 124endif
831b7825
TS
125endif
126
7ba1e619
AL
127kvm.o: CFLAGS+=$(KVM_CFLAGS)
128kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
129
40293e58 130all: $(PROGS)
626df76a 131
40293e58 132#########################################################
626df76a 133# cpu emulator library
2d6ebb0c 134LIBOBJS=exec.o translate-all.o cpu-exec.o\
cf2be984 135 translate.o host-utils.o
2d6ebb0c
BS
136ifdef CONFIG_KQEMU
137LIBOBJS+= kqemu.o
138endif
57fec1fe 139# TCG code generator
49516bc0 140LIBOBJS+= 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
FB
145ifdef CONFIG_SOFTFLOAT
146LIBOBJS+=fpu/softfloat.o
147else
148LIBOBJS+=fpu/softfloat-native.o
149endif
6f30fa85 150CPPFLAGS+=-I$(SRC_PATH)/fpu
e95c8d51 151LIBOBJS+= op_helper.o helper.o
e95c8d51 152
b7bcbe95 153ifeq ($(TARGET_BASE_ARCH), arm)
eaa728ee 154LIBOBJS+= neon_helper.o iwmmxt_helper.o
e6e5906b
PB
155endif
156
cf6c1b16 157ifeq ($(TARGET_BASE_ARCH), alpha)
eaa728ee 158LIBOBJS+= alpha_palcode.o
cf6c1b16
JM
159endif
160
e7daa605 161ifeq ($(TARGET_BASE_ARCH), cris)
e7daa605
TS
162LIBOBJS+= cris-dis.o
163
164ifndef CONFIG_USER_ONLY
165LIBOBJS+= mmu.o
166endif
167endif
168
626df76a 169# NOTE: the disassembler code is only needed for debugging
5fafdf24 170LIBOBJS+=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
177ifdef USE_I386_DIS
626df76a
FB
178LIBOBJS+=i386-dis.o
179endif
180ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
181LIBOBJS+=alpha-dis.o
182endif
a2458627 183ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
626df76a
FB
184LIBOBJS+=ppc-dis.o
185endif
fbe4f65b 186ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
6af0bf9c
FB
187LIBOBJS+=mips-dis.o
188endif
64b3ab24 189ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
626df76a
FB
190LIBOBJS+=sparc-dis.o
191endif
192ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
193LIBOBJS+=arm-dis.o
194endif
48024e4a
FB
195ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
196LIBOBJS+=m68k-dis.o
197endif
fdf9b3e8
FB
198ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
199LIBOBJS+=sh4-dis.o
200endif
f54b3f92
AJ
201ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
202LIBOBJS+=hppa-dis.o
203endif
8f860bb8
TS
204ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
205LIBOBJS+=s390-dis.o
206endif
626df76a 207
40293e58
FB
208# libqemu
209
210libqemu.a: $(LIBOBJS)
40293e58 211
86e840ee 212translate.o: translate.c cpu.h
40293e58 213
86e840ee 214translate-all.o: translate-all.c cpu.h
40293e58 215
86e840ee 216tcg/tcg.o: cpu.h
40293e58
FB
217
218# HELPER_CFLAGS is used for all the code compiled with static register
219# variables
807544e2 220op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
40293e58 221
807544e2 222cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
40293e58
FB
223
224#########################################################
225# Linux user emulator target
226
227ifdef CONFIG_LINUX_USER
228
40293e58
FB
229ifndef TARGET_ABI_DIR
230 TARGET_ABI_DIR=$(TARGET_ARCH)
231endif
3ebdd119 232VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
40293e58
FB
233CPPFLAGS+=-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
810260a8 264ifeq ($(ARCH),ppc64)
265LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
266endif
267
40293e58
FB
268ifeq ($(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
6d946cda
AJ
313# profiling code
314ifdef TARGET_GPROF
315LDFLAGS+=-p
316CFLAGS+=-p
317endif
318
17e2377a 319OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
04a6dfeb 320 elfload.o linuxload.o uaccess.o envlist.o
40293e58
FB
321LIBS+= $(AIOLIBS)
322ifdef TARGET_HAS_BFLT
323OBJS+= flatload.o
324endif
325ifdef TARGET_HAS_ELFLOAD32
326OBJS+= elfload32.o
327elfload32.o: elfload.c
328endif
329
330ifeq ($(TARGET_ARCH), i386)
331OBJS+= vm86.o
332endif
333ifeq ($(TARGET_ARCH), arm)
334OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
335nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
336 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
337endif
338ifeq ($(TARGET_ARCH), m68k)
339OBJS+= m68k-sim.o m68k-semi.o
340endif
341
1fddef4b 342ifdef CONFIG_GDBSTUB
56aebc89 343OBJS+=gdbstub.o gdbstub-xml.o
1fddef4b 344endif
626df76a 345
40293e58
FB
346OBJS+= libqemu.a
347
348# Note: this is a workaround. The real fix is to avoid compiling
349# cpu_signal_handler() in cpu-exec.c.
807544e2 350signal.o: CFLAGS += $(HELPER_CFLAGS)
626df76a 351
cec7d0b6 352$(QEMU_PROG): $(OBJS) ../libqemu_user.a
3aa892d7 353 $(LINK)
626df76a
FB
354ifeq ($(ARCH),alpha)
355# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
356# the address space (31 bit so sign extending doesn't matter)
357 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
358endif
359
40293e58
FB
360endif #CONFIG_LINUX_USER
361
362#########################################################
363# Darwin user emulator target
364
365ifdef CONFIG_DARWIN_USER
366
367VPATH+=:$(SRC_PATH)/darwin-user
368CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
369
370# Leave some space for the regular program loading zone
371LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
372
373LIBS+=-lmx
374
17e2377a 375OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
40293e58
FB
376
377OBJS+= libqemu.a
378
379ifdef CONFIG_GDBSTUB
56aebc89 380OBJS+=gdbstub.o gdbstub-xml.o
40293e58
FB
381endif
382
383# Note: this is a workaround. The real fix is to avoid compiling
384# cpu_signal_handler() in cpu-exec.c.
807544e2 385signal.o: CFLAGS += $(HELPER_CFLAGS)
40293e58
FB
386
387$(QEMU_PROG): $(OBJS)
3aa892d7 388 $(LINK)
40293e58
FB
389
390endif #CONFIG_DARWIN_USER
391
84778508
BS
392#########################################################
393# BSD user emulator target
394
395ifdef CONFIG_BSD_USER
396
397VPATH+=:$(SRC_PATH)/bsd-user
398CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
399
400ifdef CONFIG_STATIC
401LDFLAGS+=-static
402endif
403
404ifeq ($(ARCH),i386)
405ifdef TARGET_GPROF
406USE_I386_LD=y
407endif
408ifdef CONFIG_STATIC
409USE_I386_LD=y
410endif
411ifdef USE_I386_LD
412LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
413else
414# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
415# that the kernel ELF loader considers as an executable. I think this
416# is the simplest way to make it self virtualizable!
417LDFLAGS+=-Wl,-shared
418endif
419endif
420
421ifeq ($(ARCH),x86_64)
422LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
423endif
424
425ifeq ($(ARCH),ppc)
426LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
427endif
428
429ifeq ($(ARCH),ppc64)
430LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
431endif
432
433ifeq ($(ARCH),s390)
434LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
435endif
436
437ifeq ($(ARCH),sparc)
438# -static is used to avoid g1/g3 usage by the dynamic linker
439LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
440endif
441
442ifeq ($(ARCH),sparc64)
443LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
444endif
445
446ifeq ($(ARCH),alpha)
447LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
448endif
449
450ifeq ($(ARCH),ia64)
451LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
452endif
453
454ifeq ($(ARCH),arm)
455LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
456endif
457
458ifeq ($(ARCH),m68k)
459LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
460endif
461
462ifeq ($(ARCH),mips)
463ifeq ($(WORDS_BIGENDIAN),yes)
464LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
465else
466LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
467endif
468endif
469
470ifeq ($(ARCH),mips64)
471ifeq ($(WORDS_BIGENDIAN),yes)
472LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
473else
474LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
475endif
476endif
477
478OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
479OBJS+= uaccess.o
480
481OBJS+= libqemu.a
482
483ifdef CONFIG_GDBSTUB
484OBJS+=gdbstub.o
485endif
486
487# Note: this is a workaround. The real fix is to avoid compiling
488# cpu_signal_handler() in cpu-exec.c.
807544e2 489signal.o: CFLAGS += $(HELPER_CFLAGS)
84778508
BS
490
491$(QEMU_PROG): $(OBJS) ../libqemu_user.a
3aa892d7 492 $(LINK)
84778508
BS
493
494endif #CONFIG_BSD_USER
495
40293e58
FB
496#########################################################
497# System emulator target
498ifndef CONFIG_USER_ONLY
499
244ab90e 500OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
1fd31ad7
AL
501# virtio has to be here due to weird dependency between PCI and virtio-net.
502# need to fix this properly
9ede2fde 503OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
559b90fb 504OBJS+=fw_cfg.o
7ba1e619
AL
505ifdef CONFIG_KVM
506OBJS+=kvm.o kvm-all.o
507endif
223d4670 508ifdef CONFIG_WIN32
40293e58 509OBJS+=block-raw-win32.o
223d4670 510else
3c529d93
AL
511ifdef CONFIG_AIO
512OBJS+=posix-aio-compat.o
513endif
559b90fb 514OBJS+=block-raw-posix.o
a3392f9b
AL
515endif
516
40293e58 517LIBS+=-lz
1d14ffa9 518ifdef CONFIG_ALSA
1d14ffa9
FB
519LIBS += -lasound
520endif
ca9cc28c
AZ
521ifdef CONFIG_ESD
522LIBS += -lesd
523endif
b8e59f18 524ifdef CONFIG_PA
525LIBS += -lpulse-simple
526endif
1d14ffa9 527ifdef CONFIG_DSOUND
1d14ffa9 528LIBS += -lole32 -ldxguid
85571bc7 529endif
102a52e4 530ifdef CONFIG_FMOD
102a52e4 531LIBS += $(CONFIG_FMOD_LIB)
85571bc7 532endif
2f6a1ab0
BS
533ifdef CONFIG_OSS
534LIBS += $(CONFIG_OSS_LIB)
535endif
4fb240a4 536
b0f3b8fa 537SOUND_HW = sb16.o es1370.o ac97.o
1d14ffa9
FB
538ifdef CONFIG_ADLIB
539SOUND_HW += fmopl.o adlib.o
c40e866f 540adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
1d14ffa9 541endif
423d65f4
AZ
542ifdef CONFIG_GUS
543SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
544endif
cc53d26d 545ifdef CONFIG_CS4231A
546SOUND_HW += cs4231a.o
547endif
85571bc7 548
8d5d2d4c
TS
549ifdef CONFIG_VNC_TLS
550CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
551LIBS += $(CONFIG_VNC_TLS_LIBS)
552endif
553
2f9606b3
AL
554ifdef CONFIG_VNC_SASL
555CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
556LIBS += $(CONFIG_VNC_SASL_LIBS)
557endif
558
fb599c9a
AZ
559ifdef CONFIG_BLUEZ
560LIBS += $(CONFIG_BLUEZ_LIBS)
561endif
562
e37630ca 563# xen backend driver support
9306acb5 564XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o
e613b064 565XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
e37630ca
AL
566ifeq ($(CONFIG_XEN), yes)
567 OBJS += $(XEN_OBJS)
568 LIBS += $(XEN_LIBS)
569endif
570
2e5d83bb 571# SCSI layer
8b17de88 572OBJS+= lsi53c895a.o esp.o
2e5d83bb 573
a594cfbf 574# USB layer
40293e58 575OBJS+= usb-ohci.o
a594cfbf 576
a41b2ff2 577# PCI network cards
40293e58
FB
578OBJS += eepro100.o
579OBJS += ne2000.o
580OBJS += pcnet.o
581OBJS += rtl8139.o
7c23b892 582OBJS += e1000.o
a41b2ff2 583
0b0babc6 584ifeq ($(TARGET_BASE_ARCH), i386)
a541f297 585# Hardware support
e9c28334 586OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
40293e58 587OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
610626af 588OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
16b29ae1 589OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
b6f6e3d3 590OBJS += device-hotplug.o pci-hotplug.o smbios.o
b00052e4 591CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
67b915a5 592endif
a2458627 593ifeq ($(TARGET_BASE_ARCH), ppc)
70ad3dec 594CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
3cbee15b 595# shared objects
40293e58 596OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
3cbee15b 597# PREP target
e9c28334 598OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
40293e58 599OBJS+= prep_pci.o ppc_prep.o
3cbee15b 600# Mac shared devices
7fa9ae1a 601OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o
3cbee15b 602# OldWorld PowerMac
40293e58 603OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
3cbee15b 604# NewWorld PowerMac
b98a003c 605OBJS+= unin_pci.o ppc_newworld.o
3cbee15b 606# PowerPC 4xx boards
825bb581 607OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
2c9fade2 608OBJS+= ppc440.o ppc440_bamboo.o
74c62ba8 609# PowerPC E500 boards
1db09b84 610OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
f652e6af
AJ
611ifdef FDT_LIBS
612OBJS+= device_tree.o
613LIBS+= $(FDT_LIBS)
614endif
d76d1650
AJ
615ifdef CONFIG_KVM
616OBJS+= kvm_ppc.o
617endif
a541f297 618endif
fbe4f65b 619ifeq ($(TARGET_BASE_ARCH), mips)
c171148c 620OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
4ce7ff6e 621OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
a65f56ee 622OBJS+= g364fb.o jazz_led.o dp8393x.o
e9c28334 623OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
4ce7ff6e 624OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
40293e58
FB
625OBJS+= mipsnet.o
626OBJS+= pflash_cfi01.o
1f605a76 627OBJS+= vmware_vga.o
4ce7ff6e 628CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
6af0bf9c 629endif
e7daa605 630ifeq ($(TARGET_BASE_ARCH), cris)
10c144e2
EI
631# Boards
632OBJS+= etraxfs.o axis_dev88.o
633
634# IO blocks
48318011 635OBJS+= etraxfs_dma.o
e62b5b13 636OBJS+= etraxfs_pic.o
48318011 637OBJS+= etraxfs_eth.o
40293e58
FB
638OBJS+= etraxfs_timer.o
639OBJS+= etraxfs_ser.o
e62b5b13 640
10c144e2 641OBJS+= pflash_cfi02.o nand.o
e7daa605 642endif
64b3ab24 643ifeq ($(TARGET_BASE_ARCH), sparc)
3475187d 644ifeq ($(TARGET_ARCH), sparc64)
e9c28334 645OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
40293e58 646OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
e9c28334 647OBJS+= cirrus_vga.o parallel.o
3475187d 648else
40293e58 649OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
2aa2ab3a 650OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
e9c28334 651OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
3475187d 652endif
e95c8d51 653endif
b5ff1b31 654ifeq ($(TARGET_BASE_ARCH), arm)
e9c28334 655OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
40293e58 656OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
e9c28334 657OBJS+= versatile_pci.o
40293e58
FB
658OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
659OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
660OBJS+= pl061.o
661OBJS+= arm-semi.o
662OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
663OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
664OBJS+= pflash_cfi01.o gumstix.o
88d2c950 665OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
b4e3104b 666OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
afbb5194 667OBJS+= omap2.o omap_dss.o soc_dma.o
997641a8 668OBJS+= omap_sx1.o palm.o tsc210x.o
942ac052 669OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
40293e58 670OBJS+= mst_fpga.o mainstone.o
24859b68 671OBJS+= musicpal.o pflash_cfi02.o
714fa308 672OBJS+= framebuffer.o
5a1237c4 673CPPFLAGS += -DHAS_AUDIO
b5ff1b31 674endif
fdf9b3e8 675ifeq ($(TARGET_BASE_ARCH), sh4)
40293e58 676OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
e9c28334 677OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
a4a771c0 678OBJS+= ide.o
fdf9b3e8 679endif
0633879f 680ifeq ($(TARGET_BASE_ARCH), m68k)
e9c28334 681OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
40293e58 682OBJS+= m68k-semi.o dummy_m68k.o
0633879f 683endif
a541f297 684ifdef CONFIG_GDBSTUB
56aebc89 685OBJS+=gdbstub.o gdbstub-xml.o
728c9fd5 686endif
5b0753e0 687ifdef CONFIG_COCOA
1d14ffa9
FB
688COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
689ifdef CONFIG_COREAUDIO
690COCOA_LIBS+=-framework CoreAudio
691endif
5b0753e0 692endif
7c1f25b4 693ifdef CONFIG_SLIRP
6f30fa85 694CPPFLAGS+=-I$(SRC_PATH)/slirp
626df76a
FB
695endif
696
40293e58 697LIBS+=$(AIOLIBS)
c321f673 698# specific flags are needed for non soft mmu emulator
c321f673 699ifdef CONFIG_STATIC
40293e58 700LDFLAGS+=-static
de5eaa64 701endif
83fb7adf 702ifndef CONFIG_DARWIN
11d9f695 703ifndef CONFIG_WIN32
ec530c81 704ifndef CONFIG_SOLARIS
b29fe3ed 705ifndef CONFIG_AIX
40293e58 706LIBS+=-lutil
11d9f695 707endif
b29fe3ed 708endif
83fb7adf 709endif
ec530c81 710endif
e3086fbf 711ifdef TARGET_GPROF
40293e58
FB
712vl.o: CFLAGS+=-p
713LDFLAGS+=-p
e3086fbf 714endif
c321f673 715
b8076a74 716ifeq ($(ARCH),ia64)
40293e58 717LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
74ccb34e
FB
718endif
719
1d14ffa9
FB
720ifdef CONFIG_WIN32
721SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
722endif
723
40293e58
FB
724# profiling code
725ifdef TARGET_GPROF
726LDFLAGS+=-p
727main.o: CFLAGS+=-p
6e1b3e4d
FB
728endif
729
5824d651
BS
730vl.o: qemu-options.h
731
3aa892d7
AL
732$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
733
40293e58 734$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
3aa892d7 735 $(LINK)
626df76a 736
40293e58 737endif # !CONFIG_USER_ONLY
00a67ba1 738
56aebc89 739gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
56aebc89 740ifeq ($(TARGET_XML_FILES),)
1aef4c57 741 $(call quiet-command,rm -f $@ && echo > $@," GEN $(TARGET_DIR)$@")
56aebc89 742else
1aef4c57 743 $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@")
56aebc89
PB
744endif
745
5824d651 746qemu-options.h: $(SRC_PATH)/qemu-options.hx
0d00e563 747 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
5824d651 748
626df76a 749clean:
016c62c8 750 rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c
57fec1fe 751 rm -f *.d */*.d tcg/*.o
1e43adfc 752
5fafdf24 753install: all
9b14bb04 754ifneq ($(PROGS),)
1625af87 755 $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
9b14bb04 756endif
626df76a 757
2f96c28d
JM
758# Include automatically generated dependency files
759-include $(wildcard *.d */*.d)