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