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