hppa: specify target_phys_bits in configure script
[qemu/hppa.git] / Makefile.target
blob2a0f43156a6e96a58ca2b2f7aebf7a3a5fba2d42
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), hppa64)
9 TARGET_BASE_ARCH:=hppa
10 endif
11 ifeq ($(TARGET_ARCH), mipsn32)
12 TARGET_BASE_ARCH:=mips
13 endif
14 ifeq ($(TARGET_ARCH), mips64)
15 TARGET_BASE_ARCH:=mips
16 endif
17 ifeq ($(TARGET_ARCH), ppc64)
18 TARGET_BASE_ARCH:=ppc
19 endif
20 ifeq ($(TARGET_ARCH), ppc64h)
21 TARGET_BASE_ARCH:=ppc
22 endif
23 ifeq ($(TARGET_ARCH), ppcemb)
24 TARGET_BASE_ARCH:=ppc
25 endif
26 ifeq ($(TARGET_ARCH), sparc64)
27 TARGET_BASE_ARCH:=sparc
28 endif
29 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
30 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
31 CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
32 #CFLAGS+=-Werror
33 LIBS=
34 # user emulator name
35 ifndef TARGET_ARCH2
36 TARGET_ARCH2=$(TARGET_ARCH)
37 endif
38 ifeq ($(TARGET_ARCH),arm)
39   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
40     TARGET_ARCH2=armeb
41   endif
42 endif
43 ifeq ($(TARGET_ARCH),sh4)
44   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
45     TARGET_ARCH2=sh4eb
46   endif
47 endif
48 ifeq ($(TARGET_ARCH),mips)
49   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
50     TARGET_ARCH2=mipsel
51   endif
52 endif
53 ifeq ($(TARGET_ARCH),mipsn32)
54   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
55     TARGET_ARCH2=mipsn32el
56   endif
57 endif
58 ifeq ($(TARGET_ARCH),mips64)
59   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
60     TARGET_ARCH2=mips64el
61   endif
62 endif
64 ifdef CONFIG_USER_ONLY
65 # user emulator name
66 QEMU_PROG=qemu-$(TARGET_ARCH2)
67 else
68 # system emulator name
69 ifeq ($(TARGET_ARCH), i386)
70 QEMU_PROG=qemu$(EXESUF)
71 else
72 QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
73 endif
74 endif
76 PROGS=$(QEMU_PROG)
78 # cc-option
79 # Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0)
81 cc-option = $(shell if $(CC) $(1) $(2) -S -o /dev/null -xc /dev/null \
82               > /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi ;)
84 HELPER_CFLAGS=
86 ifeq ($(ARCH),i386)
87 HELPER_CFLAGS+=-fomit-frame-pointer
88 endif
90 ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
91 translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-time,)
92 endif
94 ifeq ($(ARCH),sparc)
95   ifneq ($(CONFIG_SOLARIS),yes)
96     HELPER_CFLAGS+=-ffixed-i0
97   endif
98 endif
100 ifeq ($(ARCH),alpha)
101 # Ensure there's only a single GP
102 CFLAGS+=-msmall-data
103 endif
105 ifeq ($(ARCH),hppa)
106 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
107 endif
109 ifeq ($(ARCH),ia64)
110 CFLAGS+=-mno-sdata
111 endif
113 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
114 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
116 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
117 LIBS+=-lm
118 ifdef CONFIG_WIN32
119 LIBS+=-lwinmm -lws2_32 -liphlpapi
120 endif
121 ifdef CONFIG_SOLARIS
122 LIBS+=-lsocket -lnsl -lresolv
123 ifdef NEEDS_LIBSUNMATH
124 LIBS+=-lsunmath
125 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
126 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
127 endif
128 endif
130 kvm.o: CFLAGS+=$(KVM_CFLAGS)
131 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
133 all: $(PROGS)
134 # Dummy command so that make thinks it has done something
135         @true
137 #########################################################
138 # cpu emulator library
139 LIBOBJS=exec.o translate-all.o cpu-exec.o\
140         translate.o host-utils.o
141 ifdef CONFIG_KQEMU
142 LIBOBJS+= kqemu.o
143 endif
144 # TCG code generator
145 LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
146 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
147 ifeq ($(ARCH),sparc64)
148 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
149 endif
150 ifdef CONFIG_SOFTFLOAT
151 LIBOBJS+=fpu/softfloat.o
152 else
153 LIBOBJS+=fpu/softfloat-native.o
154 endif
155 CPPFLAGS+=-I$(SRC_PATH)/fpu
156 LIBOBJS+= op_helper.o helper.o
158 ifeq ($(TARGET_BASE_ARCH), arm)
159 LIBOBJS+= neon_helper.o iwmmxt_helper.o
160 endif
162 ifeq ($(TARGET_BASE_ARCH), alpha)
163 LIBOBJS+= alpha_palcode.o
164 endif
166 ifeq ($(TARGET_BASE_ARCH), cris)
167 LIBOBJS+= cris-dis.o
169 ifndef CONFIG_USER_ONLY
170 LIBOBJS+= mmu.o
171 endif
172 endif
174 # NOTE: the disassembler code is only needed for debugging
175 LIBOBJS+=disas.o
176 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
177 USE_I386_DIS=y
178 endif
179 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
180 USE_I386_DIS=y
181 endif
182 ifdef USE_I386_DIS
183 LIBOBJS+=i386-dis.o
184 endif
185 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
186 LIBOBJS+=alpha-dis.o
187 endif
188 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
189 LIBOBJS+=ppc-dis.o
190 endif
191 ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
192 LIBOBJS+=microblaze-dis.o
193 ifndef CONFIG_USER_ONLY
194 LIBOBJS+= mmu.o
195 endif
196 endif
197 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
198 LIBOBJS+=mips-dis.o
199 endif
200 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
201 LIBOBJS+=sparc-dis.o
202 endif
203 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
204 LIBOBJS+=arm-dis.o
205 endif
206 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
207 LIBOBJS+=m68k-dis.o
208 endif
209 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
210 LIBOBJS+=sh4-dis.o
211 endif
212 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
213 LIBOBJS+=hppa-dis.o
214 endif
215 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
216 LIBOBJS+=s390-dis.o
217 endif
219 # libqemu
221 libqemu.a: $(LIBOBJS)
223 translate.o: translate.c cpu.h
225 translate-all.o: translate-all.c cpu.h
227 tcg/tcg.o: cpu.h
229 # HELPER_CFLAGS is used for all the code compiled with static register
230 # variables
231 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
233 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
235 #########################################################
236 # Linux user emulator target
238 ifdef CONFIG_LINUX_USER
240 ifndef TARGET_ABI_DIR
241   TARGET_ABI_DIR=$(TARGET_ARCH)
242 endif
243 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
244 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
246 ifdef CONFIG_STATIC
247 LDFLAGS+=-static
248 endif
250 ifeq ($(ARCH),i386)
251 ifdef TARGET_GPROF
252 USE_I386_LD=y
253 endif
254 ifdef CONFIG_STATIC
255 USE_I386_LD=y
256 endif
257 ifdef USE_I386_LD
258 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
259 else
260 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
261 # that the kernel ELF loader considers as an executable. I think this
262 # is the simplest way to make it self virtualizable!
263 LDFLAGS+=-Wl,-shared
264 endif
265 endif
267 ifeq ($(ARCH),x86_64)
268 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
269 endif
271 ifeq ($(ARCH),ppc)
272 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
273 endif
275 ifeq ($(ARCH),ppc64)
276 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
277 endif
279 ifeq ($(ARCH),s390)
280 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
281 endif
283 ifeq ($(ARCH),sparc)
284 # -static is used to avoid g1/g3 usage by the dynamic linker    
285 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
286 endif
288 ifeq ($(ARCH),sparc64)
289 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
290 endif
292 ifeq ($(ARCH),alpha)
293 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
294 endif
296 ifeq ($(ARCH),ia64)
297 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
298 endif
300 ifeq ($(ARCH),arm)
301 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
302 endif
304 ifeq ($(ARCH),m68k)
305 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
306 endif
308 ifeq ($(ARCH),mips)
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 ifeq ($(ARCH),mips64)
317 ifeq ($(WORDS_BIGENDIAN),yes)
318 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
319 else
320 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
321 endif
322 endif
324 # profiling code
325 ifdef TARGET_GPROF
326 LDFLAGS+=-p
327 CFLAGS+=-p
328 endif
330 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
331       elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
332 LIBS+= $(PTHREADLIBS)
333 LIBS+= $(CLOCKLIBS)
334 ifdef TARGET_HAS_BFLT
335 OBJS+= flatload.o
336 endif
337 ifdef TARGET_HAS_ELFLOAD32
338 OBJS+= elfload32.o
339 elfload32.o: elfload.c
340 endif
342 ifeq ($(TARGET_ARCH), i386)
343 OBJS+= vm86.o
344 endif
345 ifeq ($(TARGET_ARCH), arm)
346 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
347 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
348  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
349 endif
350 ifeq ($(TARGET_ARCH), m68k)
351 OBJS+= m68k-sim.o m68k-semi.o
352 endif
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): ARLIBS=../libqemu_user.a libqemu.a
359 $(QEMU_PROG): $(OBJS) ../libqemu_user.a libqemu.a
360         $(call LINK,$(OBJS))
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 \
383       gdbstub.o gdbstub-xml.o
385 # Note: this is a workaround. The real fix is to avoid compiling
386 # cpu_signal_handler() in cpu-exec.c.
387 signal.o: CFLAGS += $(HELPER_CFLAGS)
389 $(QEMU_PROG): ARLIBS=libqemu.a
390 $(QEMU_PROG): $(OBJS) libqemu.a
391         $(call LINK,$(OBJS))
393 endif #CONFIG_DARWIN_USER
395 #########################################################
396 # BSD user emulator target
398 ifdef CONFIG_BSD_USER
400 VPATH+=:$(SRC_PATH)/bsd-user
401 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
403 ifdef CONFIG_STATIC
404 LDFLAGS+=-static
405 endif
407 ifeq ($(ARCH),i386)
408 ifdef TARGET_GPROF
409 USE_I386_LD=y
410 endif
411 ifdef CONFIG_STATIC
412 USE_I386_LD=y
413 endif
414 ifdef USE_I386_LD
415 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
416 else
417 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
418 # that the kernel ELF loader considers as an executable. I think this
419 # is the simplest way to make it self virtualizable!
420 LDFLAGS+=-Wl,-shared
421 endif
422 endif
424 ifeq ($(ARCH),x86_64)
425 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
426 endif
428 ifeq ($(ARCH),ppc)
429 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
430 endif
432 ifeq ($(ARCH),ppc64)
433 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
434 endif
436 ifeq ($(ARCH),s390)
437 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
438 endif
440 ifeq ($(ARCH),sparc)
441 # -static is used to avoid g1/g3 usage by the dynamic linker
442 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
443 endif
445 ifeq ($(ARCH),sparc64)
446 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
447 endif
449 ifeq ($(ARCH),alpha)
450 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
451 endif
453 ifeq ($(ARCH),ia64)
454 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
455 endif
457 ifeq ($(ARCH),arm)
458 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
459 endif
461 ifeq ($(ARCH),m68k)
462 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
463 endif
465 ifeq ($(ARCH),mips)
466 ifeq ($(WORDS_BIGENDIAN),yes)
467 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
468 else
469 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
470 endif
471 endif
473 ifeq ($(ARCH),mips64)
474 ifeq ($(WORDS_BIGENDIAN),yes)
475 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
476 else
477 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
478 endif
479 endif
481 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
482       gdbstub.o gdbstub-xml.o
483 OBJS+= uaccess.o
485 # Note: this is a workaround. The real fix is to avoid compiling
486 # cpu_signal_handler() in cpu-exec.c.
487 signal.o: CFLAGS += $(HELPER_CFLAGS)
489 $(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
490 $(QEMU_PROG): $(OBJS) libqemu.a ../libqemu_user.a
491         $(call LINK,$(OBJS))
493 endif #CONFIG_BSD_USER
495 #########################################################
496 # System emulator target
497 ifndef CONFIG_USER_ONLY
499 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
500      gdbstub.o gdbstub-xml.o
501 # virtio has to be here due to weird dependency between PCI and virtio-net.
502 # need to fix this properly
503 OBJS+=virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
504 ifdef CONFIG_KVM
505 OBJS+=kvm.o kvm-all.o
506 endif
508 LIBS+=-lz
509 ifdef CONFIG_ALSA
510 LIBS += -lasound
511 endif
512 ifdef CONFIG_ESD
513 LIBS += -lesd
514 endif
515 ifdef CONFIG_PA
516 LIBS += -lpulse-simple
517 endif
518 ifdef CONFIG_DSOUND
519 LIBS += -lole32 -ldxguid
520 endif
521 ifdef CONFIG_FMOD
522 LIBS += $(CONFIG_FMOD_LIB)
523 endif
524 ifdef CONFIG_OSS
525 LIBS += $(CONFIG_OSS_LIB)
526 endif
528 SOUND_HW = sb16.o es1370.o ac97.o
529 ifdef CONFIG_ADLIB
530 SOUND_HW += fmopl.o adlib.o
531 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
532 endif
533 ifdef CONFIG_GUS
534 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
535 endif
536 ifdef CONFIG_CS4231A
537 SOUND_HW += cs4231a.o
538 endif
540 ifdef CONFIG_VNC_TLS
541 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
542 LIBS += $(CONFIG_VNC_TLS_LIBS)
543 endif
545 ifdef CONFIG_VNC_SASL
546 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
547 LIBS += $(CONFIG_VNC_SASL_LIBS)
548 endif
550 ifdef CONFIG_BLUEZ
551 LIBS += $(CONFIG_BLUEZ_LIBS)
552 endif
554 # xen backend driver support
555 XEN_OBJS := xen_machine_pv.o xen_domainbuild.o
556 ifeq ($(CONFIG_XEN), yes)
557   OBJS += $(XEN_OBJS)
558   LIBS += $(XEN_LIBS)
559 endif
561 # USB layer
562 OBJS+= usb-ohci.o
564 # PCI network cards
565 OBJS += eepro100.o
566 OBJS += ne2000.o
567 OBJS += pcnet.o
568 OBJS += rtl8139.o
569 OBJS += e1000.o
571 # Generic watchdog support and some watchdog devices
572 OBJS += wdt_ib700.o wdt_i6300esb.o
574 ifeq ($(TARGET_BASE_ARCH), i386)
575 # Hardware support
576 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
577 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
578 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
579 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
580 OBJS += device-hotplug.o pci-hotplug.o smbios.o
581 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
582 endif
583 ifeq ($(TARGET_BASE_ARCH), ppc)
584 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
585 # shared objects
586 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
587 # PREP target
588 OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
589 OBJS+= prep_pci.o ppc_prep.o
590 # Mac shared devices
591 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
592 # OldWorld PowerMac
593 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
594 # NewWorld PowerMac
595 OBJS+= unin_pci.o ppc_newworld.o
596 # PowerPC 4xx boards
597 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
598 OBJS+= ppc440.o ppc440_bamboo.o
599 # PowerPC E500 boards
600 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
601 ifdef FDT_LIBS
602 OBJS+= device_tree.o
603 LIBS+= $(FDT_LIBS)
604 endif
605 ifdef CONFIG_KVM
606 OBJS+= kvm_ppc.o
607 endif
608 endif
609 ifeq ($(TARGET_BASE_ARCH), mips)
610 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
611 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
612 OBJS+= g364fb.o jazz_led.o dp8393x.o
613 OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
614 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
615 OBJS+= mipsnet.o
616 OBJS+= pflash_cfi01.o
617 OBJS+= vmware_vga.o
618 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
619 endif
620 ifeq ($(TARGET_BASE_ARCH), microblaze)
621 OBJS+= petalogix_s3adsp1800_mmu.o
623 OBJS+= microblaze_pic_cpu.o
624 OBJS+= xilinx_intc.o
625 OBJS+= xilinx_timer.o
626 OBJS+= xilinx_uartlite.o
627 OBJS+= xilinx_ethlite.o
629 OBJS+= pflash_cfi02.o
630 ifdef FDT_LIBS
631 OBJS+= device_tree.o
632 LIBS+= $(FDT_LIBS)
633 endif
634 endif
635 ifeq ($(TARGET_BASE_ARCH), cris)
636 # Boards
637 OBJS+= cris_pic_cpu.o 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+= pflash_cfi02.o
647 endif
648 ifeq ($(TARGET_BASE_ARCH), sparc)
649 ifeq ($(TARGET_ARCH), sparc64)
650 OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
651 OBJS+= fdc.o mc146818rtc.o serial.o
652 OBJS+= cirrus_vga.o parallel.o
653 else
654 OBJS+= sun4m.o tcx.o iommu.o slavio_intctl.o
655 OBJS+= slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
656 OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
657 endif
658 endif
659 ifeq ($(TARGET_BASE_ARCH), arm)
660 OBJS+= integratorcp.o versatilepb.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
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 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+= mst_fpga.o mainstone.o
676 OBJS+= musicpal.o pflash_cfi02.o
677 OBJS+= framebuffer.o
678 OBJS+= syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
679 OBJS+= syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
680 OBJS+= syborg_virtio.o
681 CPPFLAGS += -DHAS_AUDIO
682 endif
683 ifeq ($(TARGET_BASE_ARCH), sh4)
684 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
685 OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
686 OBJS+= ide.o
687 endif
688 ifeq ($(TARGET_BASE_ARCH), m68k)
689 OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
690 OBJS+= m68k-semi.o dummy_m68k.o
691 endif
692 ifeq ($(TARGET_BASE_ARCH), hppa)
693 OBJS+= dummy_hppa.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+=$(PTHREADLIBS)
706 LIBS+=$(CLOCKLIBS)
707 # specific flags are needed for non soft mmu emulator
708 ifdef CONFIG_STATIC
709 LDFLAGS+=-static
710 endif
711 ifndef CONFIG_DARWIN
712 ifndef CONFIG_WIN32
713 ifndef CONFIG_SOLARIS
714 ifndef CONFIG_AIX
715 LIBS+=-lutil
716 endif
717 endif
718 endif
719 endif
720 ifdef TARGET_GPROF
721 vl.o: CFLAGS+=-p
722 LDFLAGS+=-p
723 endif
725 ifeq ($(ARCH),ia64)
726 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
727 endif
729 ifdef CONFIG_WIN32
730 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
731 endif
733 # profiling code
734 ifdef TARGET_GPROF
735 LDFLAGS+=-p
736 main.o: CFLAGS+=-p
737 endif
739 vl.o: qemu-options.h
741 monitor.o: qemu-monitor.h
743 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
744 $(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
745 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB)
746         $(call LINK,$(OBJS))
748 endif # !CONFIG_USER_ONLY
750 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
751 ifeq ($(TARGET_XML_FILES),)
752         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
753 else
754         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
755 endif
757 qemu-options.h: $(SRC_PATH)/qemu-options.hx
758         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
760 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
761         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
763 clean:
764         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
765         rm -f *.d */*.d tcg/*.o
766         rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
768 install: all
769 ifneq ($(PROGS),)
770         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
771 endif
773 # Include automatically generated dependency files
774 -include $(wildcard *.d */*.d)