]> git.proxmox.com Git - qemu.git/blame_incremental - Makefile.target
Fix absolute mouse events generated by SDL frontend.
[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 ($(ARCH),sparc)
88 CFLAGS+=-ffixed-g2 -ffixed-g3
89 ifneq ($(CONFIG_SOLARIS),yes)
90 CFLAGS+=-ffixed-g1 -ffixed-g6
91 HELPER_CFLAGS+=-ffixed-i0
92 endif
93endif
94
95ifeq ($(ARCH),sparc64)
96 ifneq ($(CONFIG_SOLARIS),yes)
97 CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
98 else
99 CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
100 endif
101endif
102
103ifeq ($(ARCH),alpha)
104# Ensure there's only a single GP
105CFLAGS+=-msmall-data
106endif
107
108ifeq ($(ARCH),hppa)
109BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
110endif
111
112ifeq ($(ARCH),ia64)
113CFLAGS+=-mno-sdata
114endif
115
116CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
117LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
118
119CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
120LIBS+=-lm
121ifdef CONFIG_WIN32
122LIBS+=-lwinmm -lws2_32 -liphlpapi
123endif
124ifdef CONFIG_SOLARIS
125LIBS+=-lsocket -lnsl -lresolv
126ifdef NEEDS_LIBSUNMATH
127LIBS+=-lsunmath
128LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
129CFLAGS+=-I/opt/SUNWspro/prod/include/cc
130endif
131endif
132
133kvm.o: CFLAGS+=$(KVM_CFLAGS)
134kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
135
136all: $(PROGS)
137
138#########################################################
139# cpu emulator library
140LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
141 translate.o host-utils.o
142# TCG code generator
143LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
144CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
145ifeq ($(ARCH),sparc64)
146CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
147endif
148ifdef CONFIG_SOFTFLOAT
149LIBOBJS+=fpu/softfloat.o
150else
151LIBOBJS+=fpu/softfloat-native.o
152endif
153CPPFLAGS+=-I$(SRC_PATH)/fpu
154LIBOBJS+= op_helper.o helper.o
155
156ifeq ($(TARGET_BASE_ARCH), arm)
157LIBOBJS+= neon_helper.o iwmmxt_helper.o
158endif
159
160ifeq ($(TARGET_BASE_ARCH), alpha)
161LIBOBJS+= alpha_palcode.o
162endif
163
164ifeq ($(TARGET_BASE_ARCH), cris)
165LIBOBJS+= cris-dis.o
166
167ifndef CONFIG_USER_ONLY
168LIBOBJS+= mmu.o
169endif
170endif
171
172# NOTE: the disassembler code is only needed for debugging
173LIBOBJS+=disas.o
174ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
175USE_I386_DIS=y
176endif
177ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
178USE_I386_DIS=y
179endif
180ifdef USE_I386_DIS
181LIBOBJS+=i386-dis.o
182endif
183ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
184LIBOBJS+=alpha-dis.o
185endif
186ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
187LIBOBJS+=ppc-dis.o
188endif
189ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
190LIBOBJS+=mips-dis.o
191endif
192ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
193LIBOBJS+=sparc-dis.o
194endif
195ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
196LIBOBJS+=arm-dis.o
197endif
198ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
199LIBOBJS+=m68k-dis.o
200endif
201ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
202LIBOBJS+=sh4-dis.o
203endif
204ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
205LIBOBJS+=hppa-dis.o
206endif
207ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
208LIBOBJS+=s390-dis.o
209endif
210
211# libqemu
212
213libqemu.a: $(LIBOBJS)
214
215translate.o: translate.c cpu.h
216
217translate-all.o: translate-all.c cpu.h
218
219tcg/tcg.o: cpu.h
220
221# HELPER_CFLAGS is used for all the code compiled with static register
222# variables
223op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
224
225cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
226
227#########################################################
228# Linux user emulator target
229
230ifdef CONFIG_LINUX_USER
231
232ifndef TARGET_ABI_DIR
233 TARGET_ABI_DIR=$(TARGET_ARCH)
234endif
235VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
236CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
237
238ifdef CONFIG_STATIC
239LDFLAGS+=-static
240endif
241
242ifeq ($(ARCH),i386)
243ifdef TARGET_GPROF
244USE_I386_LD=y
245endif
246ifdef CONFIG_STATIC
247USE_I386_LD=y
248endif
249ifdef USE_I386_LD
250LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
251else
252# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
253# that the kernel ELF loader considers as an executable. I think this
254# is the simplest way to make it self virtualizable!
255LDFLAGS+=-Wl,-shared
256endif
257endif
258
259ifeq ($(ARCH),x86_64)
260LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
261endif
262
263ifeq ($(ARCH),ppc)
264LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
265endif
266
267ifeq ($(ARCH),ppc64)
268LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
269endif
270
271ifeq ($(ARCH),s390)
272LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
273endif
274
275ifeq ($(ARCH),sparc)
276# -static is used to avoid g1/g3 usage by the dynamic linker
277LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
278endif
279
280ifeq ($(ARCH),sparc64)
281LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
282endif
283
284ifeq ($(ARCH),alpha)
285LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
286endif
287
288ifeq ($(ARCH),ia64)
289LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
290endif
291
292ifeq ($(ARCH),arm)
293LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
294endif
295
296ifeq ($(ARCH),m68k)
297LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
298endif
299
300ifeq ($(ARCH),mips)
301ifeq ($(WORDS_BIGENDIAN),yes)
302LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
303else
304LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
305endif
306endif
307
308ifeq ($(ARCH),mips64)
309ifeq ($(WORDS_BIGENDIAN),yes)
310LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
311else
312LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
313endif
314endif
315
316# profiling code
317ifdef TARGET_GPROF
318LDFLAGS+=-p
319CFLAGS+=-p
320endif
321
322OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
323 elfload.o linuxload.o uaccess.o envlist.o
324LIBS+= $(AIOLIBS)
325ifdef TARGET_HAS_BFLT
326OBJS+= flatload.o
327endif
328ifdef TARGET_HAS_ELFLOAD32
329OBJS+= elfload32.o
330elfload32.o: elfload.c
331endif
332
333ifeq ($(TARGET_ARCH), i386)
334OBJS+= vm86.o
335endif
336ifeq ($(TARGET_ARCH), arm)
337OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
338nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
339 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
340endif
341ifeq ($(TARGET_ARCH), m68k)
342OBJS+= m68k-sim.o m68k-semi.o
343endif
344
345ifdef CONFIG_GDBSTUB
346OBJS+=gdbstub.o gdbstub-xml.o
347endif
348
349OBJS+= libqemu.a
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): $(OBJS) ../libqemu_user.a
356 $(LINK)
357ifeq ($(ARCH),alpha)
358# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
359# the address space (31 bit so sign extending doesn't matter)
360 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
361endif
362
363endif #CONFIG_LINUX_USER
364
365#########################################################
366# Darwin user emulator target
367
368ifdef CONFIG_DARWIN_USER
369
370VPATH+=:$(SRC_PATH)/darwin-user
371CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
372
373# Leave some space for the regular program loading zone
374LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
375
376LIBS+=-lmx
377
378OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
379
380OBJS+= libqemu.a
381
382ifdef CONFIG_GDBSTUB
383OBJS+=gdbstub.o gdbstub-xml.o
384endif
385
386# Note: this is a workaround. The real fix is to avoid compiling
387# cpu_signal_handler() in cpu-exec.c.
388signal.o: CFLAGS += $(HELPER_CFLAGS)
389
390$(QEMU_PROG): $(OBJS)
391 $(LINK)
392
393endif #CONFIG_DARWIN_USER
394
395#########################################################
396# BSD user emulator target
397
398ifdef CONFIG_BSD_USER
399
400VPATH+=:$(SRC_PATH)/bsd-user
401CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
402
403ifdef CONFIG_STATIC
404LDFLAGS+=-static
405endif
406
407ifeq ($(ARCH),i386)
408ifdef TARGET_GPROF
409USE_I386_LD=y
410endif
411ifdef CONFIG_STATIC
412USE_I386_LD=y
413endif
414ifdef USE_I386_LD
415LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
416else
417# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
418# that the kernel ELF loader considers as an executable. I think this
419# is the simplest way to make it self virtualizable!
420LDFLAGS+=-Wl,-shared
421endif
422endif
423
424ifeq ($(ARCH),x86_64)
425LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
426endif
427
428ifeq ($(ARCH),ppc)
429LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
430endif
431
432ifeq ($(ARCH),ppc64)
433LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
434endif
435
436ifeq ($(ARCH),s390)
437LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
438endif
439
440ifeq ($(ARCH),sparc)
441# -static is used to avoid g1/g3 usage by the dynamic linker
442LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
443endif
444
445ifeq ($(ARCH),sparc64)
446LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
447endif
448
449ifeq ($(ARCH),alpha)
450LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
451endif
452
453ifeq ($(ARCH),ia64)
454LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
455endif
456
457ifeq ($(ARCH),arm)
458LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
459endif
460
461ifeq ($(ARCH),m68k)
462LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
463endif
464
465ifeq ($(ARCH),mips)
466ifeq ($(WORDS_BIGENDIAN),yes)
467LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
468else
469LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
470endif
471endif
472
473ifeq ($(ARCH),mips64)
474ifeq ($(WORDS_BIGENDIAN),yes)
475LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
476else
477LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
478endif
479endif
480
481OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
482OBJS+= uaccess.o
483
484OBJS+= libqemu.a
485
486ifdef CONFIG_GDBSTUB
487OBJS+=gdbstub.o
488endif
489
490# Note: this is a workaround. The real fix is to avoid compiling
491# cpu_signal_handler() in cpu-exec.c.
492signal.o: CFLAGS += $(HELPER_CFLAGS)
493
494$(QEMU_PROG): $(OBJS) ../libqemu_user.a
495 $(LINK)
496
497endif #CONFIG_BSD_USER
498
499#########################################################
500# System emulator target
501ifndef CONFIG_USER_ONLY
502
503OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
504# virtio has to be here due to weird dependency between PCI and virtio-net.
505# need to fix this properly
506OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
507OBJS+=fw_cfg.o
508ifdef CONFIG_KVM
509OBJS+=kvm.o kvm-all.o
510endif
511ifdef CONFIG_WIN32
512OBJS+=block-raw-win32.o
513else
514ifdef CONFIG_AIO
515OBJS+=posix-aio-compat.o
516endif
517OBJS+=block-raw-posix.o
518endif
519
520LIBS+=-lz
521ifdef CONFIG_ALSA
522LIBS += -lasound
523endif
524ifdef CONFIG_ESD
525LIBS += -lesd
526endif
527ifdef CONFIG_PA
528LIBS += -lpulse-simple
529endif
530ifdef CONFIG_DSOUND
531LIBS += -lole32 -ldxguid
532endif
533ifdef CONFIG_FMOD
534LIBS += $(CONFIG_FMOD_LIB)
535endif
536ifdef CONFIG_OSS
537LIBS += $(CONFIG_OSS_LIB)
538endif
539
540SOUND_HW = sb16.o es1370.o ac97.o
541ifdef CONFIG_ADLIB
542SOUND_HW += fmopl.o adlib.o
543adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
544endif
545ifdef CONFIG_GUS
546SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
547endif
548ifdef CONFIG_CS4231A
549SOUND_HW += cs4231a.o
550endif
551
552ifdef CONFIG_VNC_TLS
553CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
554LIBS += $(CONFIG_VNC_TLS_LIBS)
555endif
556
557ifdef CONFIG_VNC_SASL
558CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
559LIBS += $(CONFIG_VNC_SASL_LIBS)
560endif
561
562ifdef CONFIG_BLUEZ
563LIBS += $(CONFIG_BLUEZ_LIBS)
564endif
565
566# SCSI layer
567OBJS+= lsi53c895a.o esp.o
568
569# USB layer
570OBJS+= usb-ohci.o
571
572# EEPROM emulation
573OBJS += eeprom93xx.o
574
575# PCI network cards
576OBJS += eepro100.o
577OBJS += ne2000.o
578OBJS += pcnet.o
579OBJS += rtl8139.o
580OBJS += e1000.o
581
582# Serial mouse
583OBJS += msmouse.o
584
585ifeq ($(TARGET_BASE_ARCH), i386)
586# Hardware support
587OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
588OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
589OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
590OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
591OBJS += device-hotplug.o pci-hotplug.o
592CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
593endif
594ifeq ($(TARGET_BASE_ARCH), ppc)
595CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
596# shared objects
597OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
598# PREP target
599OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
600OBJS+= prep_pci.o ppc_prep.o
601# Mac shared devices
602OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o
603# OldWorld PowerMac
604OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
605# NewWorld PowerMac
606OBJS+= unin_pci.o ppc_newworld.o
607# PowerPC 4xx boards
608OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
609OBJS+= ppc440.o ppc440_bamboo.o
610# PowerPC E500 boards
611OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
612ifdef FDT_LIBS
613OBJS+= device_tree.o
614LIBS+= $(FDT_LIBS)
615endif
616ifdef CONFIG_KVM
617OBJS+= kvm_ppc.o
618endif
619endif
620ifeq ($(TARGET_BASE_ARCH), mips)
621OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
622OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
623OBJS+= g364fb.o jazz_led.o
624OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
625OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
626OBJS+= mipsnet.o
627OBJS+= pflash_cfi01.o
628OBJS+= vmware_vga.o
629CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
630endif
631ifeq ($(TARGET_BASE_ARCH), cris)
632# Boards
633OBJS+= etraxfs.o axis_dev88.o
634
635# IO blocks
636OBJS+= etraxfs_dma.o
637OBJS+= etraxfs_pic.o
638OBJS+= etraxfs_eth.o
639OBJS+= etraxfs_timer.o
640OBJS+= etraxfs_ser.o
641
642OBJS+= ptimer.o
643OBJS+= pflash_cfi02.o nand.o
644endif
645ifeq ($(TARGET_BASE_ARCH), sparc)
646ifeq ($(TARGET_ARCH), sparc64)
647OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
648OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
649OBJS+= cirrus_vga.o parallel.o ptimer.o
650else
651OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
652OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
653OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
654endif
655endif
656ifeq ($(TARGET_BASE_ARCH), arm)
657OBJS+= integratorcp.o versatilepb.o ps2.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 ptimer.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 nand.o ecc.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+= tsc2005.o bt-hci-csr.o
673OBJS+= mst_fpga.o mainstone.o
674OBJS+= musicpal.o pflash_cfi02.o
675CPPFLAGS += -DHAS_AUDIO
676endif
677ifeq ($(TARGET_BASE_ARCH), sh4)
678OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
679OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
680OBJS+= ide.o
681endif
682ifeq ($(TARGET_BASE_ARCH), m68k)
683OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
684OBJS+= m68k-semi.o dummy_m68k.o
685endif
686ifdef CONFIG_GDBSTUB
687OBJS+=gdbstub.o gdbstub-xml.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+=$(AIOLIBS)
700# specific flags are needed for non soft mmu emulator
701ifdef CONFIG_STATIC
702LDFLAGS+=-static
703endif
704ifndef CONFIG_DARWIN
705ifndef CONFIG_WIN32
706ifndef CONFIG_SOLARIS
707ifndef CONFIG_AIX
708LIBS+=-lutil
709endif
710endif
711endif
712endif
713ifdef TARGET_GPROF
714vl.o: CFLAGS+=-p
715LDFLAGS+=-p
716endif
717
718ifeq ($(ARCH),ia64)
719LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
720endif
721
722ifdef CONFIG_WIN32
723SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
724endif
725
726# profiling code
727ifdef TARGET_GPROF
728LDFLAGS+=-p
729main.o: CFLAGS+=-p
730endif
731
732$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
733
734$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
735 $(LINK)
736
737endif # !CONFIG_USER_ONLY
738
739gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
740 rm -f $@
741ifeq ($(TARGET_XML_FILES),)
742 echo > $@
743else
744 $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
745endif
746
747clean:
748 rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
749 rm -f *.d */*.d tcg/*.o
750
751install: all
752ifneq ($(PROGS),)
753 $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
754endif
755
756# Include automatically generated dependency files
757-include $(wildcard *.d */*.d)