Merge branch 'master' of ssh://repo.or.cz/srv/git/qemu
[qemu/mmix.git] / Makefile.target
blobc91a5f8ca93c21284967facd719df8a6d81c210c
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 LIBS+=-lm
115 ifdef CONFIG_WIN32
116 LIBS+=-lwinmm -lws2_32 -liphlpapi
117 endif
118 ifdef CONFIG_SOLARIS
119 LIBS+=-lsocket -lnsl -lresolv
120 ifdef NEEDS_LIBSUNMATH
121 LIBS+=-lsunmath
122 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
123 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
124 endif
125 endif
127 kvm.o: CFLAGS+=$(KVM_CFLAGS)
128 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
130 all: $(PROGS)
132 #########################################################
133 # cpu emulator library
134 LIBOBJS=exec.o translate-all.o cpu-exec.o\
135         translate.o host-utils.o
136 ifdef CONFIG_KQEMU
137 LIBOBJS+= kqemu.o
138 endif
139 # TCG code generator
140 LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
141 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
142 ifeq ($(ARCH),sparc64)
143 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
144 endif
145 ifdef CONFIG_SOFTFLOAT
146 LIBOBJS+=fpu/softfloat.o
147 else
148 LIBOBJS+=fpu/softfloat-native.o
149 endif
150 CPPFLAGS+=-I$(SRC_PATH)/fpu
151 LIBOBJS+= op_helper.o helper.o
153 ifeq ($(TARGET_BASE_ARCH), arm)
154 LIBOBJS+= neon_helper.o iwmmxt_helper.o
155 endif
157 ifeq ($(TARGET_BASE_ARCH), alpha)
158 LIBOBJS+= alpha_palcode.o
159 endif
161 ifeq ($(TARGET_BASE_ARCH), cris)
162 LIBOBJS+= cris-dis.o
164 ifndef CONFIG_USER_ONLY
165 LIBOBJS+= mmu.o
166 endif
167 endif
169 # NOTE: the disassembler code is only needed for debugging
170 LIBOBJS+=disas.o
171 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
172 USE_I386_DIS=y
173 endif
174 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
175 USE_I386_DIS=y
176 endif
177 ifdef USE_I386_DIS
178 LIBOBJS+=i386-dis.o
179 endif
180 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
181 LIBOBJS+=alpha-dis.o
182 endif
183 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
184 LIBOBJS+=ppc-dis.o
185 endif
186 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
187 LIBOBJS+=mips-dis.o
188 endif
189 ifeq ($(findstring mmix, $(TARGET_ARCH) $(ARCH)),mmix)
190 LIBOBJS+=mmix-dis.o mmix-opc.o
191 endif
192 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
193 LIBOBJS+=sparc-dis.o
194 endif
195 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
196 LIBOBJS+=arm-dis.o
197 endif
198 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
199 LIBOBJS+=m68k-dis.o
200 endif
201 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
202 LIBOBJS+=sh4-dis.o
203 endif
204 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
205 LIBOBJS+=hppa-dis.o
206 endif
207 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
208 LIBOBJS+=s390-dis.o
209 endif
211 # libqemu
213 libqemu.a: $(LIBOBJS)
215 translate.o: translate.c cpu.h
217 translate-all.o: translate-all.c cpu.h
219 tcg/tcg.o: cpu.h
221 # HELPER_CFLAGS is used for all the code compiled with static register
222 # variables
223 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
225 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
227 #########################################################
228 # Linux user emulator target
230 ifdef CONFIG_LINUX_USER
232 ifndef TARGET_ABI_DIR
233   TARGET_ABI_DIR=$(TARGET_ARCH)
234 endif
235 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
236 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
238 ifdef CONFIG_STATIC
239 LDFLAGS+=-static
240 endif
242 ifeq ($(ARCH),i386)
243 ifdef TARGET_GPROF
244 USE_I386_LD=y
245 endif
246 ifdef CONFIG_STATIC
247 USE_I386_LD=y
248 endif
249 ifdef USE_I386_LD
250 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
251 else
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!
255 LDFLAGS+=-Wl,-shared
256 endif
257 endif
259 ifeq ($(ARCH),x86_64)
260 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
261 endif
263 ifeq ($(ARCH),ppc)
264 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
265 endif
267 ifeq ($(ARCH),ppc64)
268 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
269 endif
271 ifeq ($(ARCH),s390)
272 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
273 endif
275 ifeq ($(ARCH),sparc)
276 # -static is used to avoid g1/g3 usage by the dynamic linker    
277 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
278 endif
280 ifeq ($(ARCH),sparc64)
281 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
282 endif
284 ifeq ($(ARCH),alpha)
285 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
286 endif
288 ifeq ($(ARCH),ia64)
289 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
290 endif
292 ifeq ($(ARCH),arm)
293 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
294 endif
296 ifeq ($(ARCH),m68k)
297 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
298 endif
300 ifeq ($(ARCH),mips)
301 ifeq ($(WORDS_BIGENDIAN),yes)
302 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
303 else
304 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
305 endif
306 endif
308 ifeq ($(ARCH),mips64)
309 ifeq ($(WORDS_BIGENDIAN),yes)
310 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
311 else
312 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
313 endif
314 endif
316 # profiling code
317 ifdef TARGET_GPROF
318 LDFLAGS+=-p
319 CFLAGS+=-p
320 endif
322 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
323       elfload.o linuxload.o uaccess.o envlist.o
324 LIBS+= $(PTHREADLIBS)
325 LIBS+= $(CLOCKLIBS)
326 ifdef TARGET_HAS_BFLT
327 OBJS+= flatload.o
328 endif
329 ifdef TARGET_HAS_ELFLOAD32
330 OBJS+= elfload32.o
331 elfload32.o: elfload.c
332 endif
334 ifeq ($(TARGET_ARCH), i386)
335 OBJS+= vm86.o
336 endif
337 ifeq ($(TARGET_ARCH), arm)
338 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
339 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
340  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
341 endif
342 ifeq ($(TARGET_ARCH), m68k)
343 OBJS+= m68k-sim.o m68k-semi.o
344 endif
346 ifdef CONFIG_GDBSTUB
347 OBJS+=gdbstub.o gdbstub-xml.o
348 endif
350 OBJS+= libqemu.a
352 # Note: this is a workaround. The real fix is to avoid compiling
353 # cpu_signal_handler() in cpu-exec.c.
354 signal.o: CFLAGS += $(HELPER_CFLAGS)
356 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
357         $(LINK)
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 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
381 OBJS+= libqemu.a
383 ifdef CONFIG_GDBSTUB
384 OBJS+=gdbstub.o gdbstub-xml.o
385 endif
387 # Note: this is a workaround. The real fix is to avoid compiling
388 # cpu_signal_handler() in cpu-exec.c.
389 signal.o: CFLAGS += $(HELPER_CFLAGS)
391 $(QEMU_PROG): $(OBJS)
392         $(LINK)
394 endif #CONFIG_DARWIN_USER
396 #########################################################
397 # BSD user emulator target
399 ifdef CONFIG_BSD_USER
401 VPATH+=:$(SRC_PATH)/bsd-user
402 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
404 ifdef CONFIG_STATIC
405 LDFLAGS+=-static
406 endif
408 ifeq ($(ARCH),i386)
409 ifdef TARGET_GPROF
410 USE_I386_LD=y
411 endif
412 ifdef CONFIG_STATIC
413 USE_I386_LD=y
414 endif
415 ifdef USE_I386_LD
416 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
417 else
418 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
419 # that the kernel ELF loader considers as an executable. I think this
420 # is the simplest way to make it self virtualizable!
421 LDFLAGS+=-Wl,-shared
422 endif
423 endif
425 ifeq ($(ARCH),x86_64)
426 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
427 endif
429 ifeq ($(ARCH),ppc)
430 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
431 endif
433 ifeq ($(ARCH),ppc64)
434 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
435 endif
437 ifeq ($(ARCH),s390)
438 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
439 endif
441 ifeq ($(ARCH),sparc)
442 # -static is used to avoid g1/g3 usage by the dynamic linker
443 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
444 endif
446 ifeq ($(ARCH),sparc64)
447 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
448 endif
450 ifeq ($(ARCH),alpha)
451 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
452 endif
454 ifeq ($(ARCH),ia64)
455 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
456 endif
458 ifeq ($(ARCH),arm)
459 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
460 endif
462 ifeq ($(ARCH),m68k)
463 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
464 endif
466 ifeq ($(ARCH),mips)
467 ifeq ($(WORDS_BIGENDIAN),yes)
468 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
469 else
470 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
471 endif
472 endif
474 ifeq ($(ARCH),mips64)
475 ifeq ($(WORDS_BIGENDIAN),yes)
476 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
477 else
478 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
479 endif
480 endif
482 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
483 OBJS+= uaccess.o
485 OBJS+= libqemu.a
487 ifdef CONFIG_GDBSTUB
488 OBJS+=gdbstub.o
489 endif
491 # Note: this is a workaround. The real fix is to avoid compiling
492 # cpu_signal_handler() in cpu-exec.c.
493 signal.o: CFLAGS += $(HELPER_CFLAGS)
495 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
496         $(LINK)
498 endif #CONFIG_BSD_USER
500 #########################################################
501 # System emulator target
502 ifndef CONFIG_USER_ONLY
504 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
505 # virtio has to be here due to weird dependency between PCI and virtio-net.
506 # need to fix this properly
507 OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
508 OBJS+=fw_cfg.o
509 ifdef CONFIG_KVM
510 OBJS+=kvm.o kvm-all.o
511 endif
512 ifdef CONFIG_WIN32
513 OBJS+=block-raw-win32.o
514 else
515 ifdef CONFIG_AIO
516 OBJS+=posix-aio-compat.o
517 endif
518 OBJS+=block-raw-posix.o
519 endif
521 LIBS+=-lz
522 ifdef CONFIG_ALSA
523 LIBS += -lasound
524 endif
525 ifdef CONFIG_ESD
526 LIBS += -lesd
527 endif
528 ifdef CONFIG_PA
529 LIBS += -lpulse-simple
530 endif
531 ifdef CONFIG_DSOUND
532 LIBS += -lole32 -ldxguid
533 endif
534 ifdef CONFIG_FMOD
535 LIBS += $(CONFIG_FMOD_LIB)
536 endif
537 ifdef CONFIG_OSS
538 LIBS += $(CONFIG_OSS_LIB)
539 endif
541 SOUND_HW = sb16.o es1370.o ac97.o
542 ifdef CONFIG_ADLIB
543 SOUND_HW += fmopl.o adlib.o
544 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
545 endif
546 ifdef CONFIG_GUS
547 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
548 endif
549 ifdef CONFIG_CS4231A
550 SOUND_HW += cs4231a.o
551 endif
553 ifdef CONFIG_VNC_TLS
554 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
555 LIBS += $(CONFIG_VNC_TLS_LIBS)
556 endif
558 ifdef CONFIG_VNC_SASL
559 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
560 LIBS += $(CONFIG_VNC_SASL_LIBS)
561 endif
563 ifdef CONFIG_BLUEZ
564 LIBS += $(CONFIG_BLUEZ_LIBS)
565 endif
567 # xen backend driver support
568 XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o
569 XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
570 ifeq ($(CONFIG_XEN), yes)
571   OBJS += $(XEN_OBJS)
572   LIBS += $(XEN_LIBS)
573 endif
575 # SCSI layer
576 OBJS+= lsi53c895a.o esp.o
578 # USB layer
579 OBJS+= usb-ohci.o
581 # PCI network cards
582 OBJS += eepro100.o
583 OBJS += ne2000.o
584 OBJS += pcnet.o
585 OBJS += rtl8139.o
586 OBJS += e1000.o
588 ifeq ($(TARGET_BASE_ARCH), i386)
589 # Hardware support
590 OBJS+= ide.o pckbd.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 smbios.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 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 dp8393x.o
627 OBJS+= ide.o gt64xxx.o pckbd.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+= pflash_cfi02.o nand.o
646 endif
647 ifeq ($(TARGET_BASE_ARCH), sparc)
648 ifeq ($(TARGET_ARCH), sparc64)
649 OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
650 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
651 OBJS+= cirrus_vga.o parallel.o
652 else
653 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
654 OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
655 OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
656 endif
657 endif
658 ifeq ($(TARGET_BASE_ARCH), arm)
659 OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
660 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
661 OBJS+= versatile_pci.o
662 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
663 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
664 OBJS+= pl061.o
665 OBJS+= arm-semi.o
666 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
667 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
668 OBJS+= pflash_cfi01.o gumstix.o
669 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
670 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
671 OBJS+= omap2.o omap_dss.o soc_dma.o
672 OBJS+= omap_sx1.o palm.o tsc210x.o
673 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
674 OBJS+= mst_fpga.o mainstone.o
675 OBJS+= musicpal.o pflash_cfi02.o
676 OBJS+= framebuffer.o
677 CPPFLAGS += -DHAS_AUDIO
678 endif
679 ifeq ($(TARGET_BASE_ARCH), sh4)
680 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
681 OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
682 OBJS+= ide.o
683 endif
684 ifeq ($(TARGET_BASE_ARCH), m68k)
685 OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
686 OBJS+= m68k-semi.o dummy_m68k.o
687 endif
688 ifeq ($(TARGET_BASE_ARCH), mmix)
689 OBJS+= mmixplatform.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+=$(PTHREADLIBS)
705 LIBS+=$(CLOCKLIBS)
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 vl.o: qemu-options.h
740 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
742 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
743         $(LINK)
745 endif # !CONFIG_USER_ONLY
747 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
748 ifeq ($(TARGET_XML_FILES),)
749         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
750 else
751         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
752 endif
754 qemu-options.h: $(SRC_PATH)/qemu-options.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 qemu-options.h gdbstub-xml.c
759         rm -f *.d */*.d tcg/*.o
761 install: all
762 ifneq ($(PROGS),)
763         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
764 endif
766 # Include automatically generated dependency files
767 -include $(wildcard *.d */*.d)