add sparc64-softmmu to default configure targets list
[qemu/aliguori-queue.git] / Makefile.target
bloba0f24fa2eb465803ddf8ed6ca8f4d066e5b6b029
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 LIBOBJS=exec.o translate-all.o cpu-exec.o\
138         translate.o host-utils.o
139 ifdef CONFIG_KQEMU
140 LIBOBJS+= kqemu.o
141 endif
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 microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
190 LIBOBJS+=microblaze-dis.o
191 ifndef CONFIG_USER_ONLY
192 LIBOBJS+= mmu.o
193 endif
194 endif
195 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
196 LIBOBJS+=mips-dis.o
197 endif
198 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
199 LIBOBJS+=sparc-dis.o
200 endif
201 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
202 LIBOBJS+=arm-dis.o
203 endif
204 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
205 LIBOBJS+=m68k-dis.o
206 endif
207 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
208 LIBOBJS+=sh4-dis.o
209 endif
210 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
211 LIBOBJS+=hppa-dis.o
212 endif
213 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
214 LIBOBJS+=s390-dis.o
215 endif
217 # libqemu
219 libqemu.a: $(LIBOBJS)
221 translate.o: translate.c cpu.h
223 translate-all.o: translate-all.c cpu.h
225 tcg/tcg.o: cpu.h
227 # HELPER_CFLAGS is used for all the code compiled with static register
228 # variables
229 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
231 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
233 #########################################################
234 # Linux user emulator target
236 ifdef CONFIG_LINUX_USER
238 ifndef TARGET_ABI_DIR
239   TARGET_ABI_DIR=$(TARGET_ARCH)
240 endif
241 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
242 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
244 ifdef CONFIG_STATIC
245 LDFLAGS+=-static
246 endif
248 ifeq ($(ARCH),i386)
249 ifdef TARGET_GPROF
250 USE_I386_LD=y
251 endif
252 ifdef CONFIG_STATIC
253 USE_I386_LD=y
254 endif
255 ifdef USE_I386_LD
256 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
257 else
258 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
259 # that the kernel ELF loader considers as an executable. I think this
260 # is the simplest way to make it self virtualizable!
261 LDFLAGS+=-Wl,-shared
262 endif
263 endif
265 ifeq ($(ARCH),x86_64)
266 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
267 endif
269 ifeq ($(ARCH),ppc)
270 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
271 endif
273 ifeq ($(ARCH),ppc64)
274 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
275 endif
277 ifeq ($(ARCH),s390)
278 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
279 endif
281 ifeq ($(ARCH),sparc)
282 # -static is used to avoid g1/g3 usage by the dynamic linker    
283 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
284 endif
286 ifeq ($(ARCH),sparc64)
287 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
288 endif
290 ifeq ($(ARCH),alpha)
291 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
292 endif
294 ifeq ($(ARCH),ia64)
295 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
296 endif
298 ifeq ($(ARCH),arm)
299 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
300 endif
302 ifeq ($(ARCH),m68k)
303 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
304 endif
306 ifeq ($(ARCH),mips)
307 ifeq ($(WORDS_BIGENDIAN),yes)
308 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
309 else
310 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
311 endif
312 endif
314 ifeq ($(ARCH),mips64)
315 ifeq ($(WORDS_BIGENDIAN),yes)
316 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
317 else
318 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
319 endif
320 endif
322 # profiling code
323 ifdef TARGET_GPROF
324 LDFLAGS+=-p
325 CFLAGS+=-p
326 endif
328 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
329       elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
330 LIBS+= $(PTHREADLIBS)
331 LIBS+= $(CLOCKLIBS)
332 ifdef TARGET_HAS_BFLT
333 OBJS+= flatload.o
334 endif
335 ifdef TARGET_HAS_ELFLOAD32
336 OBJS+= elfload32.o
337 elfload32.o: elfload.c
338 endif
340 ifeq ($(TARGET_ARCH), i386)
341 OBJS+= vm86.o
342 endif
343 ifeq ($(TARGET_ARCH), arm)
344 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
345 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
346  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
347 endif
348 ifeq ($(TARGET_ARCH), m68k)
349 OBJS+= m68k-sim.o m68k-semi.o
350 endif
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): ARLIBS=../libqemu_user.a libqemu.a
357 $(QEMU_PROG): $(OBJS) ../libqemu_user.a libqemu.a
358         $(call LINK,$(OBJS))
359 ifeq ($(ARCH),alpha)
360 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
361 # the address space (31 bit so sign extending doesn't matter)
362         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
363 endif
365 endif #CONFIG_LINUX_USER
367 #########################################################
368 # Darwin user emulator target
370 ifdef CONFIG_DARWIN_USER
372 VPATH+=:$(SRC_PATH)/darwin-user
373 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
375 # Leave some space for the regular program loading zone
376 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
378 LIBS+=-lmx
380 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
381       gdbstub.o gdbstub-xml.o
383 # Note: this is a workaround. The real fix is to avoid compiling
384 # cpu_signal_handler() in cpu-exec.c.
385 signal.o: CFLAGS += $(HELPER_CFLAGS)
387 $(QEMU_PROG): ARLIBS=libqemu.a
388 $(QEMU_PROG): $(OBJS) libqemu.a
389         $(call LINK,$(OBJS))
391 endif #CONFIG_DARWIN_USER
393 #########################################################
394 # BSD user emulator target
396 ifdef CONFIG_BSD_USER
398 VPATH+=:$(SRC_PATH)/bsd-user
399 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
401 ifdef CONFIG_STATIC
402 LDFLAGS+=-static
403 endif
405 ifeq ($(ARCH),i386)
406 ifdef TARGET_GPROF
407 USE_I386_LD=y
408 endif
409 ifdef CONFIG_STATIC
410 USE_I386_LD=y
411 endif
412 ifdef USE_I386_LD
413 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
414 else
415 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
416 # that the kernel ELF loader considers as an executable. I think this
417 # is the simplest way to make it self virtualizable!
418 LDFLAGS+=-Wl,-shared
419 endif
420 endif
422 ifeq ($(ARCH),x86_64)
423 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
424 endif
426 ifeq ($(ARCH),ppc)
427 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
428 endif
430 ifeq ($(ARCH),ppc64)
431 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
432 endif
434 ifeq ($(ARCH),s390)
435 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
436 endif
438 ifeq ($(ARCH),sparc)
439 # -static is used to avoid g1/g3 usage by the dynamic linker
440 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
441 endif
443 ifeq ($(ARCH),sparc64)
444 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
445 endif
447 ifeq ($(ARCH),alpha)
448 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
449 endif
451 ifeq ($(ARCH),ia64)
452 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
453 endif
455 ifeq ($(ARCH),arm)
456 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
457 endif
459 ifeq ($(ARCH),m68k)
460 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
461 endif
463 ifeq ($(ARCH),mips)
464 ifeq ($(WORDS_BIGENDIAN),yes)
465 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
466 else
467 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
468 endif
469 endif
471 ifeq ($(ARCH),mips64)
472 ifeq ($(WORDS_BIGENDIAN),yes)
473 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
474 else
475 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
476 endif
477 endif
479 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
480       gdbstub.o gdbstub-xml.o
481 OBJS+= uaccess.o
483 # Note: this is a workaround. The real fix is to avoid compiling
484 # cpu_signal_handler() in cpu-exec.c.
485 signal.o: CFLAGS += $(HELPER_CFLAGS)
487 $(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
488 $(QEMU_PROG): $(OBJS) libqemu.a ../libqemu_user.a
489         $(call LINK,$(OBJS))
491 endif #CONFIG_BSD_USER
493 #########################################################
494 # System emulator target
495 ifndef CONFIG_USER_ONLY
497 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
498      gdbstub.o gdbstub-xml.o
499 # virtio has to be here due to weird dependency between PCI and virtio-net.
500 # need to fix this properly
501 OBJS+=virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
502 ifdef CONFIG_KVM
503 OBJS+=kvm.o kvm-all.o
504 endif
506 LIBS+=-lz
507 ifdef CONFIG_ALSA
508 LIBS += -lasound
509 endif
510 ifdef CONFIG_ESD
511 LIBS += -lesd
512 endif
513 ifdef CONFIG_PA
514 LIBS += -lpulse-simple
515 endif
516 ifdef CONFIG_DSOUND
517 LIBS += -lole32 -ldxguid
518 endif
519 ifdef CONFIG_FMOD
520 LIBS += $(CONFIG_FMOD_LIB)
521 endif
522 ifdef CONFIG_OSS
523 LIBS += $(CONFIG_OSS_LIB)
524 endif
526 SOUND_HW = sb16.o es1370.o ac97.o
527 ifdef CONFIG_ADLIB
528 SOUND_HW += fmopl.o adlib.o
529 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
530 endif
531 ifdef CONFIG_GUS
532 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
533 endif
534 ifdef CONFIG_CS4231A
535 SOUND_HW += cs4231a.o
536 endif
538 ifdef CONFIG_VNC_TLS
539 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
540 LIBS += $(CONFIG_VNC_TLS_LIBS)
541 endif
543 ifdef CONFIG_VNC_SASL
544 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
545 LIBS += $(CONFIG_VNC_SASL_LIBS)
546 endif
548 ifdef CONFIG_BLUEZ
549 LIBS += $(CONFIG_BLUEZ_LIBS)
550 endif
552 # xen backend driver support
553 XEN_OBJS := xen_machine_pv.o xen_domainbuild.o
554 ifeq ($(CONFIG_XEN), yes)
555   OBJS += $(XEN_OBJS)
556   LIBS += $(XEN_LIBS)
557 endif
559 # USB layer
560 OBJS+= usb-ohci.o
562 # PCI network cards
563 OBJS += eepro100.o
564 OBJS += ne2000.o
565 OBJS += pcnet.o
566 OBJS += rtl8139.o
567 OBJS += e1000.o
569 # Generic watchdog support and some watchdog devices
570 OBJS += wdt_ib700.o wdt_i6300esb.o
572 ifeq ($(TARGET_BASE_ARCH), i386)
573 # Hardware support
574 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
575 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
576 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
577 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
578 OBJS += device-hotplug.o pci-hotplug.o smbios.o
579 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
580 endif
581 ifeq ($(TARGET_BASE_ARCH), ppc)
582 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
583 # shared objects
584 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
585 # PREP target
586 OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
587 OBJS+= prep_pci.o ppc_prep.o
588 # Mac shared devices
589 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
590 # OldWorld PowerMac
591 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
592 # NewWorld PowerMac
593 OBJS+= unin_pci.o ppc_newworld.o
594 # PowerPC 4xx boards
595 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
596 OBJS+= ppc440.o ppc440_bamboo.o
597 # PowerPC E500 boards
598 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
599 ifdef FDT_LIBS
600 OBJS+= device_tree.o
601 LIBS+= $(FDT_LIBS)
602 endif
603 ifdef CONFIG_KVM
604 OBJS+= kvm_ppc.o
605 endif
606 endif
607 ifeq ($(TARGET_BASE_ARCH), mips)
608 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
609 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
610 OBJS+= g364fb.o jazz_led.o dp8393x.o
611 OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
612 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
613 OBJS+= mipsnet.o
614 OBJS+= pflash_cfi01.o
615 OBJS+= vmware_vga.o
616 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
617 endif
618 ifeq ($(TARGET_BASE_ARCH), microblaze)
619 OBJS+= petalogix_s3adsp1800_mmu.o
621 OBJS+= microblaze_pic_cpu.o
622 OBJS+= xilinx_intc.o
623 OBJS+= xilinx_timer.o
624 OBJS+= xilinx_uartlite.o
625 OBJS+= xilinx_ethlite.o
627 OBJS+= pflash_cfi02.o
628 ifdef FDT_LIBS
629 OBJS+= device_tree.o
630 LIBS+= $(FDT_LIBS)
631 endif
632 endif
633 ifeq ($(TARGET_BASE_ARCH), cris)
634 # Boards
635 OBJS+= cris_pic_cpu.o etraxfs.o axis_dev88.o
637 # IO blocks
638 OBJS+= etraxfs_dma.o
639 OBJS+= etraxfs_pic.o
640 OBJS+= etraxfs_eth.o
641 OBJS+= etraxfs_timer.o
642 OBJS+= etraxfs_ser.o
644 OBJS+= pflash_cfi02.o
645 endif
646 ifeq ($(TARGET_BASE_ARCH), sparc)
647 ifeq ($(TARGET_ARCH), sparc64)
648 OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
649 OBJS+= fdc.o mc146818rtc.o serial.o
650 OBJS+= cirrus_vga.o parallel.o
651 else
652 OBJS+= sun4m.o tcx.o iommu.o slavio_intctl.o
653 OBJS+= slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
654 OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
655 endif
656 endif
657 ifeq ($(TARGET_BASE_ARCH), arm)
658 OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
659 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
660 OBJS+= versatile_pci.o
661 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
662 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
663 OBJS+= pl061.o
664 OBJS+= arm-semi.o
665 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
666 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
667 OBJS+= pflash_cfi01.o gumstix.o
668 OBJS+= zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
669 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
670 OBJS+= omap2.o omap_dss.o soc_dma.o
671 OBJS+= omap_sx1.o palm.o tsc210x.o
672 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
673 OBJS+= mst_fpga.o mainstone.o
674 OBJS+= musicpal.o pflash_cfi02.o
675 OBJS+= framebuffer.o
676 OBJS+= syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
677 OBJS+= syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
678 OBJS+= syborg_virtio.o
679 CPPFLAGS += -DHAS_AUDIO
680 endif
681 ifeq ($(TARGET_BASE_ARCH), sh4)
682 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
683 OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
684 OBJS+= ide.o
685 endif
686 ifeq ($(TARGET_BASE_ARCH), m68k)
687 OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
688 OBJS+= m68k-semi.o dummy_m68k.o
689 endif
690 ifdef CONFIG_COCOA
691 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
692 ifdef CONFIG_COREAUDIO
693 COCOA_LIBS+=-framework CoreAudio
694 endif
695 endif
696 ifdef CONFIG_SLIRP
697 CPPFLAGS+=-I$(SRC_PATH)/slirp
698 endif
700 LIBS+=$(PTHREADLIBS)
701 LIBS+=$(CLOCKLIBS)
702 # specific flags are needed for non soft mmu emulator
703 ifdef CONFIG_STATIC
704 LDFLAGS+=-static
705 endif
706 ifndef CONFIG_DARWIN
707 ifndef CONFIG_WIN32
708 ifndef CONFIG_SOLARIS
709 ifndef CONFIG_AIX
710 LIBS+=-lutil
711 endif
712 endif
713 endif
714 endif
715 ifdef TARGET_GPROF
716 vl.o: CFLAGS+=-p
717 LDFLAGS+=-p
718 endif
720 ifeq ($(ARCH),ia64)
721 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
722 endif
724 ifdef CONFIG_WIN32
725 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
726 endif
728 # profiling code
729 ifdef TARGET_GPROF
730 LDFLAGS+=-p
731 main.o: CFLAGS+=-p
732 endif
734 vl.o: CFLAGS+=$(SDL_CFLAGS)
736 vl.o: qemu-options.h
738 monitor.o: qemu-monitor.h
740 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
741 $(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
742 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB)
743         $(call LINK,$(OBJS))
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 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
758         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
760 clean:
761         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
762         rm -f *.d */*.d tcg/*.o
763         rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
765 install: all
766 ifneq ($(PROGS),)
767         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
768 endif
770 # Include automatically generated dependency files
771 -include $(wildcard *.d */*.d)