Rename BLOCK_OBJS to block-obj-y
[qemu/kevin.git] / Makefile.target
blobb4e5be5e265c5612edf45975b47b3d14a2b5ca02
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   ifneq ($(CONFIG_SOLARIS),yes)
93     HELPER_CFLAGS+=-ffixed-i0
94   endif
95 endif
97 ifeq ($(ARCH),alpha)
98 # Ensure there's only a single GP
99 CFLAGS+=-msmall-data
100 endif
102 ifeq ($(ARCH),hppa)
103 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
104 endif
106 ifeq ($(ARCH),ia64)
107 CFLAGS+=-mno-sdata
108 endif
110 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
111 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
113 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
114 CPPFLAGS+=-U_FORTIFY_SOURCE
115 LIBS+=-lm
116 ifdef CONFIG_WIN32
117 LIBS+=-lwinmm -lws2_32 -liphlpapi
118 endif
119 ifdef CONFIG_SOLARIS
120 LIBS+=-lsocket -lnsl -lresolv
121 ifdef NEEDS_LIBSUNMATH
122 LIBS+=-lsunmath
123 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
124 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
125 endif
126 endif
128 kvm.o: CFLAGS+=$(KVM_CFLAGS)
129 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
131 all: $(PROGS)
132 # Dummy command so that make thinks it has done something
133         @true
135 #########################################################
136 # cpu emulator library
137 libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o
138 ifdef CONFIG_KQEMU
139 libobj-y += kqemu.o
140 endif
141 # TCG code generator
142 libobj-y += tcg/tcg.o tcg/tcg-runtime.o
143 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
144 ifeq ($(ARCH),sparc64)
145 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
146 endif
147 ifdef CONFIG_SOFTFLOAT
148 libobj-y += fpu/softfloat.o
149 else
150 libobj-y += fpu/softfloat-native.o
151 endif
152 CPPFLAGS+=-I$(SRC_PATH)/fpu
153 libobj-y += op_helper.o helper.o
155 ifeq ($(TARGET_BASE_ARCH), arm)
156 libobj-y += neon_helper.o iwmmxt_helper.o
157 endif
159 ifeq ($(TARGET_BASE_ARCH), alpha)
160 libobj-y += alpha_palcode.o
161 endif
163 ifeq ($(TARGET_BASE_ARCH), cris)
164 libobj-y += cris-dis.o
166 ifndef CONFIG_USER_ONLY
167 libobj-y += mmu.o
168 endif
169 endif
171 # NOTE: the disassembler code is only needed for debugging
172 libobj-y += disas.o
173 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
174 USE_I386_DIS=y
175 endif
176 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
177 USE_I386_DIS=y
178 endif
179 ifdef USE_I386_DIS
180 libobj-y += i386-dis.o
181 endif
182 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
183 libobj-y += alpha-dis.o
184 endif
185 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
186 libobj-y += ppc-dis.o
187 endif
188 ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
189 libobj-y += microblaze-dis.o
190 ifndef CONFIG_USER_ONLY
191 libobj-y += mmu.o
192 endif
193 endif
194 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
195 libobj-y += mips-dis.o
196 endif
197 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
198 libobj-y += sparc-dis.o
199 endif
200 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
201 libobj-y += arm-dis.o
202 endif
203 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
204 libobj-y += m68k-dis.o
205 endif
206 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
207 libobj-y += sh4-dis.o
208 endif
209 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
210 libobj-y += hppa-dis.o
211 endif
212 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
213 libobj-y += s390-dis.o
214 endif
216 # libqemu
218 libqemu.a: $(libobj-y)
220 translate.o: translate.c cpu.h
222 translate-all.o: translate-all.c cpu.h
224 tcg/tcg.o: cpu.h
226 # HELPER_CFLAGS is used for all the code compiled with static register
227 # variables
228 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
230 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
232 #########################################################
233 # Linux user emulator target
235 ifdef CONFIG_LINUX_USER
237 ifndef TARGET_ABI_DIR
238   TARGET_ABI_DIR=$(TARGET_ARCH)
239 endif
240 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
241 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
243 ifdef CONFIG_STATIC
244 LDFLAGS+=-static
245 endif
247 ifeq ($(ARCH),i386)
248 ifdef TARGET_GPROF
249 USE_I386_LD=y
250 endif
251 ifdef CONFIG_STATIC
252 USE_I386_LD=y
253 endif
254 ifdef USE_I386_LD
255 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
256 else
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!
260 LDFLAGS+=-Wl,-shared
261 endif
262 endif
264 ifeq ($(ARCH),x86_64)
265 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
266 endif
268 ifeq ($(ARCH),ppc)
269 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
270 endif
272 ifeq ($(ARCH),ppc64)
273 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
274 endif
276 ifeq ($(ARCH),s390)
277 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
278 endif
280 ifeq ($(ARCH),sparc)
281 # -static is used to avoid g1/g3 usage by the dynamic linker    
282 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
283 endif
285 ifeq ($(ARCH),sparc64)
286 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
287 endif
289 ifeq ($(ARCH),alpha)
290 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
291 endif
293 ifeq ($(ARCH),ia64)
294 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
295 endif
297 ifeq ($(ARCH),arm)
298 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
299 endif
301 ifeq ($(ARCH),m68k)
302 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
303 endif
305 ifeq ($(ARCH),mips)
306 ifeq ($(WORDS_BIGENDIAN),yes)
307 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
308 else
309 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
310 endif
311 endif
313 ifeq ($(ARCH),mips64)
314 ifeq ($(WORDS_BIGENDIAN),yes)
315 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
316 else
317 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
318 endif
319 endif
321 # profiling code
322 ifdef TARGET_GPROF
323 LDFLAGS+=-p
324 CFLAGS+=-p
325 endif
327 obj-y = 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
329 LIBS+= $(PTHREADLIBS)
330 LIBS+= $(CLOCKLIBS)
331 ifdef TARGET_HAS_BFLT
332 obj-y += flatload.o
333 endif
334 ifdef TARGET_HAS_ELFLOAD32
335 obj-y += elfload32.o
336 elfload32.o: elfload.c
337 endif
339 ifeq ($(TARGET_ARCH), i386)
340 obj-y += vm86.o
341 endif
342 ifeq ($(TARGET_ARCH), arm)
343 obj-y += nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
344 nwfpe/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
346 endif
347 ifeq ($(TARGET_ARCH), m68k)
348 obj-y += m68k-sim.o m68k-semi.o
349 endif
351 # Note: this is a workaround. The real fix is to avoid compiling
352 # cpu_signal_handler() in cpu-exec.c.
353 signal.o: CFLAGS += $(HELPER_CFLAGS)
355 $(QEMU_PROG): ARLIBS=../libqemu_user.a libqemu.a
356 $(QEMU_PROG): $(obj-y) ../libqemu_user.a libqemu.a
357         $(call LINK,$(obj-y))
358 ifeq ($(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
362 endif
364 endif #CONFIG_LINUX_USER
366 #########################################################
367 # Darwin user emulator target
369 ifdef CONFIG_DARWIN_USER
371 VPATH+=:$(SRC_PATH)/darwin-user
372 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
374 # Leave some space for the regular program loading zone
375 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
377 LIBS+=-lmx
379 obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
380         gdbstub.o gdbstub-xml.o
382 # Note: this is a workaround. The real fix is to avoid compiling
383 # cpu_signal_handler() in cpu-exec.c.
384 signal.o: CFLAGS += $(HELPER_CFLAGS)
386 $(QEMU_PROG): ARLIBS=libqemu.a
387 $(QEMU_PROG): $(obj-y) libqemu.a
388         $(call LINK,$(obj-y))
390 endif #CONFIG_DARWIN_USER
392 #########################################################
393 # BSD user emulator target
395 ifdef CONFIG_BSD_USER
397 VPATH+=:$(SRC_PATH)/bsd-user
398 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
400 ifdef CONFIG_STATIC
401 LDFLAGS+=-static
402 endif
404 ifeq ($(ARCH),i386)
405 ifdef TARGET_GPROF
406 USE_I386_LD=y
407 endif
408 ifdef CONFIG_STATIC
409 USE_I386_LD=y
410 endif
411 ifdef USE_I386_LD
412 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
413 else
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!
417 LDFLAGS+=-Wl,-shared
418 endif
419 endif
421 ifeq ($(ARCH),x86_64)
422 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
423 endif
425 ifeq ($(ARCH),ppc)
426 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
427 endif
429 ifeq ($(ARCH),ppc64)
430 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
431 endif
433 ifeq ($(ARCH),s390)
434 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
435 endif
437 ifeq ($(ARCH),sparc)
438 # -static is used to avoid g1/g3 usage by the dynamic linker
439 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
440 endif
442 ifeq ($(ARCH),sparc64)
443 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
444 endif
446 ifeq ($(ARCH),alpha)
447 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
448 endif
450 ifeq ($(ARCH),ia64)
451 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
452 endif
454 ifeq ($(ARCH),arm)
455 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
456 endif
458 ifeq ($(ARCH),m68k)
459 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
460 endif
462 ifeq ($(ARCH),mips)
463 ifeq ($(WORDS_BIGENDIAN),yes)
464 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
465 else
466 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
467 endif
468 endif
470 ifeq ($(ARCH),mips64)
471 ifeq ($(WORDS_BIGENDIAN),yes)
472 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
473 else
474 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
475 endif
476 endif
478 obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
479         gdbstub.o gdbstub-xml.o
480 obj-y += uaccess.o
482 # Note: this is a workaround. The real fix is to avoid compiling
483 # cpu_signal_handler() in cpu-exec.c.
484 signal.o: CFLAGS += $(HELPER_CFLAGS)
486 $(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
487 $(QEMU_PROG): $(obj-y) libqemu.a ../libqemu_user.a
488         $(call LINK,$(obj-y))
490 endif #CONFIG_BSD_USER
492 #########################################################
493 # System emulator target
494 ifndef CONFIG_USER_ONLY
496 obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
497         gdbstub.o gdbstub-xml.o msix.o
498 # virtio has to be here due to weird dependency between PCI and virtio-net.
499 # need to fix this properly
500 obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
501 obj-$(CONFIG_KVM) += kvm.o kvm-all.o
503 LIBS+=-lz
504 ifdef CONFIG_ALSA
505 LIBS += -lasound
506 endif
507 ifdef CONFIG_ESD
508 LIBS += -lesd
509 endif
510 ifdef CONFIG_PA
511 LIBS += -lpulse-simple
512 endif
513 ifdef CONFIG_DSOUND
514 LIBS += -lole32 -ldxguid
515 endif
516 ifdef CONFIG_FMOD
517 LIBS += $(CONFIG_FMOD_LIB)
518 endif
519 ifdef CONFIG_OSS
520 LIBS += $(CONFIG_OSS_LIB)
521 endif
523 SOUND_HW = sb16.o es1370.o ac97.o
524 ifdef CONFIG_ADLIB
525 SOUND_HW += fmopl.o adlib.o
526 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
527 endif
528 ifdef CONFIG_GUS
529 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
530 endif
531 ifdef CONFIG_CS4231A
532 SOUND_HW += cs4231a.o
533 endif
535 ifdef CONFIG_VNC_TLS
536 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
537 LIBS += $(CONFIG_VNC_TLS_LIBS)
538 endif
540 ifdef CONFIG_VNC_SASL
541 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
542 LIBS += $(CONFIG_VNC_SASL_LIBS)
543 endif
545 ifdef CONFIG_BLUEZ
546 LIBS += $(CONFIG_BLUEZ_LIBS)
547 endif
549 # xen backend driver support
550 XEN_OBJS := xen_machine_pv.o xen_domainbuild.o
551 ifeq ($(CONFIG_XEN), yes)
552   obj-y += $(XEN_OBJS)
553   LIBS += $(XEN_LIBS)
554 endif
556 # USB layer
557 obj-y += usb-ohci.o
559 # PCI network cards
560 obj-y += eepro100.o
561 obj-y += ne2000.o
562 obj-y += pcnet.o
563 obj-y += rtl8139.o
564 obj-y += e1000.o
566 # Generic watchdog support and some watchdog devices
567 obj-y += wdt_ib700.o wdt_i6300esb.o
569 ifeq ($(TARGET_BASE_ARCH), i386)
570 # Hardware support
571 obj-y += ide.o pckbd.o vga.o $(SOUND_HW) dma.o
572 obj-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
573 obj-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
574 obj-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
575 obj-y += device-hotplug.o pci-hotplug.o smbios.o
576 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
577 endif
578 ifeq ($(TARGET_BASE_ARCH), ppc)
579 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
580 # shared objects
581 obj-y += ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
582 # PREP target
583 obj-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
584 obj-y += prep_pci.o ppc_prep.o
585 # Mac shared devices
586 obj-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
587 # OldWorld PowerMac
588 obj-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
589 # NewWorld PowerMac
590 obj-y += unin_pci.o ppc_newworld.o
591 # PowerPC 4xx boards
592 obj-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
593 obj-y += ppc440.o ppc440_bamboo.o
594 # PowerPC E500 boards
595 obj-y += ppce500_pci.o ppce500_mpc8544ds.o
596 ifdef FDT_LIBS
597 obj-y += device_tree.o
598 LIBS+= $(FDT_LIBS)
599 endif
600 ifdef CONFIG_KVM
601 obj-y += kvm_ppc.o
602 endif
603 endif
604 ifeq ($(TARGET_BASE_ARCH), mips)
605 obj-y += mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
606 obj-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
607 obj-y += g364fb.o jazz_led.o dp8393x.o
608 obj-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
609 obj-y += piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
610 obj-y += mipsnet.o
611 obj-y += pflash_cfi01.o
612 obj-y += vmware_vga.o
613 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
614 endif
615 ifeq ($(TARGET_BASE_ARCH), microblaze)
616 obj-y += petalogix_s3adsp1800_mmu.o
618 obj-y += microblaze_pic_cpu.o
619 obj-y += xilinx_intc.o
620 obj-y += xilinx_timer.o
621 obj-y += xilinx_uartlite.o
622 obj-y += xilinx_ethlite.o
624 obj-y += pflash_cfi02.o
625 ifdef FDT_LIBS
626 obj-y += device_tree.o
627 LIBS+= $(FDT_LIBS)
628 endif
629 endif
630 ifeq ($(TARGET_BASE_ARCH), cris)
631 # Boards
632 obj-y += cris_pic_cpu.o etraxfs.o axis_dev88.o
634 # IO blocks
635 obj-y += etraxfs_dma.o
636 obj-y += etraxfs_pic.o
637 obj-y += etraxfs_eth.o
638 obj-y += etraxfs_timer.o
639 obj-y += etraxfs_ser.o
641 obj-y += pflash_cfi02.o
642 endif
643 ifeq ($(TARGET_BASE_ARCH), sparc)
644 ifeq ($(TARGET_ARCH), sparc64)
645 obj-y += sun4u.o ide.o pckbd.o vga.o apb_pci.o
646 obj-y += fdc.o mc146818rtc.o serial.o
647 obj-y += cirrus_vga.o parallel.o
648 else
649 obj-y += sun4m.o tcx.o iommu.o slavio_intctl.o
650 obj-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
651 obj-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
652 endif
653 endif
654 ifeq ($(TARGET_BASE_ARCH), arm)
655 obj-y += integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
656 obj-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
657 obj-y += versatile_pci.o
658 obj-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
659 obj-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
660 obj-y += pl061.o
661 obj-y += arm-semi.o
662 obj-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
663 obj-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
664 obj-y += pflash_cfi01.o gumstix.o
665 obj-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
666 obj-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
667 obj-y += omap2.o omap_dss.o soc_dma.o
668 obj-y += omap_sx1.o palm.o tsc210x.o
669 obj-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
670 obj-y += mst_fpga.o mainstone.o
671 obj-y += musicpal.o pflash_cfi02.o
672 obj-y += framebuffer.o
673 obj-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
674 obj-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
675 obj-y += syborg_virtio.o
676 CPPFLAGS += -DHAS_AUDIO
677 endif
678 ifeq ($(TARGET_BASE_ARCH), sh4)
679 obj-y += shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
680 obj-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
681 obj-y += ide.o
682 endif
683 ifeq ($(TARGET_BASE_ARCH), m68k)
684 obj-y += an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
685 obj-y += m68k-semi.o dummy_m68k.o
686 endif
687 ifdef CONFIG_COCOA
688 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
689 ifdef CONFIG_COREAUDIO
690 COCOA_LIBS+=-framework CoreAudio
691 endif
692 endif
693 ifdef CONFIG_SLIRP
694 CPPFLAGS+=-I$(SRC_PATH)/slirp
695 endif
697 LIBS+=$(PTHREADLIBS)
698 LIBS+=$(CLOCKLIBS)
699 # specific flags are needed for non soft mmu emulator
700 ifdef CONFIG_STATIC
701 LDFLAGS+=-static
702 endif
703 ifndef CONFIG_DARWIN
704 ifndef CONFIG_WIN32
705 ifndef CONFIG_SOLARIS
706 ifndef CONFIG_AIX
707 LIBS+=-lutil
708 endif
709 endif
710 endif
711 endif
712 ifdef TARGET_GPROF
713 vl.o: CFLAGS+=-p
714 LDFLAGS+=-p
715 endif
717 ifeq ($(ARCH),ia64)
718 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
719 endif
721 ifdef CONFIG_WIN32
722 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
723 endif
725 # profiling code
726 ifdef TARGET_GPROF
727 LDFLAGS+=-p
728 main.o: CFLAGS+=-p
729 endif
731 vl.o: CFLAGS+=$(SDL_CFLAGS)
733 vl.o: qemu-options.h
735 monitor.o: qemu-monitor.h
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): $(obj-y) ../libqemu_common.a libqemu.a $(HWLIB)
740         $(call LINK,$(obj-y))
742 endif # !CONFIG_USER_ONLY
744 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
745 ifeq ($(TARGET_XML_FILES),)
746         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
747 else
748         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
749 endif
751 qemu-options.h: $(SRC_PATH)/qemu-options.hx
752         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
754 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
755         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
757 clean:
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
762 install: all
763 ifneq ($(PROGS),)
764         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
765 endif
767 # Include automatically generated dependency files
768 -include $(wildcard *.d */*.d)