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