merge fallout
[qemu] / Makefile.target
1 include config.mak
2 include $(SRC_PATH)/rules.mak
3
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
60
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
72
73 PROGS=$(QEMU_PROG)
74
75 # cc-option
76 # Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0)
77
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 ;)
80
81 HELPER_CFLAGS=
82
83 ifeq ($(ARCH),i386)
84 HELPER_CFLAGS+=-fomit-frame-pointer
85 endif
86
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
90
91 ifeq ($(ARCH),sparc)
92   ifneq ($(CONFIG_SOLARIS),yes)
93     HELPER_CFLAGS+=-ffixed-i0
94   endif
95 endif
96
97 ifeq ($(ARCH),alpha)
98 # Ensure there's only a single GP
99 CFLAGS+=-msmall-data
100 endif
101
102 ifeq ($(ARCH),hppa)
103 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
104 endif
105
106 ifeq ($(ARCH),ia64)
107 CFLAGS+=-mno-sdata
108 endif
109
110 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
111 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
112
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
126
127 kvm.o: CFLAGS+=$(KVM_CFLAGS)
128 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
129
130 all: $(PROGS)
131
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
152
153 ifeq ($(TARGET_BASE_ARCH), arm)
154 LIBOBJS+= neon_helper.o iwmmxt_helper.o
155 endif
156
157 ifeq ($(TARGET_BASE_ARCH), alpha)
158 LIBOBJS+= alpha_palcode.o
159 endif
160
161 ifeq ($(TARGET_BASE_ARCH), cris)
162 LIBOBJS+= cris-dis.o
163
164 ifndef CONFIG_USER_ONLY
165 LIBOBJS+= mmu.o
166 endif
167 endif
168
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 sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
190 LIBOBJS+=sparc-dis.o
191 endif
192 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
193 LIBOBJS+=arm-dis.o
194 endif
195 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
196 LIBOBJS+=m68k-dis.o
197 endif
198 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
199 LIBOBJS+=sh4-dis.o
200 endif
201 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
202 LIBOBJS+=hppa-dis.o
203 endif
204 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
205 LIBOBJS+=s390-dis.o
206 endif
207
208 # libqemu
209
210 libqemu.a: $(LIBOBJS)
211
212 translate.o: translate.c cpu.h
213
214 translate-all.o: translate-all.c cpu.h
215
216 tcg/tcg.o: cpu.h
217
218 # HELPER_CFLAGS is used for all the code compiled with static register
219 # variables
220 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
221
222 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
223
224 #########################################################
225 # Linux user emulator target
226
227 ifdef CONFIG_LINUX_USER
228
229 ifndef TARGET_ABI_DIR
230   TARGET_ABI_DIR=$(TARGET_ARCH)
231 endif
232 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
233 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
234
235 #sbox hack
236 ifdef CONFIG_STATIC
237 LDFLAGS+=-static -L/scratchbox/tools/lib
238 LIBS+=-lsb -ldl
239 endif
240
241 ifeq ($(ARCH),i386)
242 ifdef TARGET_GPROF
243 USE_I386_LD=y
244 endif
245 ifdef CONFIG_STATIC
246 USE_I386_LD=y
247 endif
248 ifdef USE_I386_LD
249 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
250 else
251 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
252 # that the kernel ELF loader considers as an executable. I think this
253 # is the simplest way to make it self virtualizable!
254 LDFLAGS+=-Wl,-shared
255 endif
256 endif
257
258 ifeq ($(ARCH),x86_64)
259 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
260 endif
261
262 ifeq ($(ARCH),ppc)
263 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
264 endif
265
266 ifeq ($(ARCH),ppc64)
267 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
268 endif
269
270 ifeq ($(ARCH),s390)
271 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
272 endif
273
274 ifeq ($(ARCH),sparc)
275 # -static is used to avoid g1/g3 usage by the dynamic linker    
276 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
277 endif
278
279 ifeq ($(ARCH),sparc64)
280 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
281 endif
282
283 ifeq ($(ARCH),alpha)
284 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
285 endif
286
287 ifeq ($(ARCH),ia64)
288 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
289 endif
290
291 ifeq ($(ARCH),arm)
292 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
293 endif
294
295 ifeq ($(ARCH),m68k)
296 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
297 endif
298
299 ifeq ($(ARCH),mips)
300 ifeq ($(WORDS_BIGENDIAN),yes)
301 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
302 else
303 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
304 endif
305 endif
306
307 ifeq ($(ARCH),mips64)
308 ifeq ($(WORDS_BIGENDIAN),yes)
309 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
310 else
311 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
312 endif
313 endif
314
315 # profiling code
316 ifdef TARGET_GPROF
317 LDFLAGS+=-p
318 CFLAGS+=-p
319 endif
320
321 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
322       elfload.o linuxload.o uaccess.o envlist.o
323 LIBS+= $(AIOLIBS)
324 ifdef TARGET_HAS_BFLT
325 OBJS+= flatload.o
326 endif
327 ifdef TARGET_HAS_ELFLOAD32
328 OBJS+= elfload32.o
329 elfload32.o: elfload.c
330 endif
331
332 ifeq ($(TARGET_ARCH), i386)
333 OBJS+= vm86.o
334 endif
335 ifeq ($(TARGET_ARCH), arm)
336 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
337 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
338  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
339 endif
340 ifeq ($(TARGET_ARCH), m68k)
341 OBJS+= m68k-sim.o m68k-semi.o
342 endif
343
344 ifdef CONFIG_GDBSTUB
345 OBJS+=gdbstub.o gdbstub-xml.o
346 endif
347
348 OBJS+= libqemu.a
349
350 # Note: this is a workaround. The real fix is to avoid compiling
351 # cpu_signal_handler() in cpu-exec.c.
352 signal.o: CFLAGS += $(HELPER_CFLAGS)
353
354 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
355         $(LINK)
356 ifeq ($(ARCH),alpha)
357 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
358 # the address space (31 bit so sign extending doesn't matter)
359         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
360 endif
361
362 endif #CONFIG_LINUX_USER
363
364 #########################################################
365 # Darwin user emulator target
366
367 ifdef CONFIG_DARWIN_USER
368
369 VPATH+=:$(SRC_PATH)/darwin-user
370 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
371
372 # Leave some space for the regular program loading zone
373 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
374
375 LIBS+=-lmx
376
377 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
378
379 OBJS+= libqemu.a
380
381 ifdef CONFIG_GDBSTUB
382 OBJS+=gdbstub.o gdbstub-xml.o
383 endif
384
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)
388
389 $(QEMU_PROG): $(OBJS)
390         $(LINK)
391
392 endif #CONFIG_DARWIN_USER
393
394 #########################################################
395 # BSD user emulator target
396
397 ifdef CONFIG_BSD_USER
398
399 VPATH+=:$(SRC_PATH)/bsd-user
400 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
401
402 ifdef CONFIG_STATIC
403 LDFLAGS+=-static
404 endif
405
406 ifeq ($(ARCH),i386)
407 ifdef TARGET_GPROF
408 USE_I386_LD=y
409 endif
410 ifdef CONFIG_STATIC
411 USE_I386_LD=y
412 endif
413 ifdef USE_I386_LD
414 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
415 else
416 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
417 # that the kernel ELF loader considers as an executable. I think this
418 # is the simplest way to make it self virtualizable!
419 LDFLAGS+=-Wl,-shared
420 endif
421 endif
422
423 ifeq ($(ARCH),x86_64)
424 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
425 endif
426
427 ifeq ($(ARCH),ppc)
428 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
429 endif
430
431 ifeq ($(ARCH),ppc64)
432 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
433 endif
434
435 ifeq ($(ARCH),s390)
436 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
437 endif
438
439 ifeq ($(ARCH),sparc)
440 # -static is used to avoid g1/g3 usage by the dynamic linker
441 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
442 endif
443
444 ifeq ($(ARCH),sparc64)
445 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
446 endif
447
448 ifeq ($(ARCH),alpha)
449 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
450 endif
451
452 ifeq ($(ARCH),ia64)
453 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
454 endif
455
456 ifeq ($(ARCH),arm)
457 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
458 endif
459
460 ifeq ($(ARCH),m68k)
461 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
462 endif
463
464 ifeq ($(ARCH),mips)
465 ifeq ($(WORDS_BIGENDIAN),yes)
466 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
467 else
468 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
469 endif
470 endif
471
472 ifeq ($(ARCH),mips64)
473 ifeq ($(WORDS_BIGENDIAN),yes)
474 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
475 else
476 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
477 endif
478 endif
479
480 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
481 OBJS+= uaccess.o
482
483 OBJS+= libqemu.a
484
485 ifdef CONFIG_GDBSTUB
486 OBJS+=gdbstub.o
487 endif
488
489 # Note: this is a workaround. The real fix is to avoid compiling
490 # cpu_signal_handler() in cpu-exec.c.
491 signal.o: CFLAGS += $(HELPER_CFLAGS)
492
493 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
494         $(LINK)
495
496 endif #CONFIG_BSD_USER
497
498 #########################################################
499 # System emulator target
500 ifndef CONFIG_USER_ONLY
501
502 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
503 # virtio has to be here due to weird dependency between PCI and virtio-net.
504 # need to fix this properly
505 OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
506 OBJS+=fw_cfg.o
507 ifdef CONFIG_KVM
508 OBJS+=kvm.o kvm-all.o
509 endif
510 ifdef CONFIG_WIN32
511 OBJS+=block-raw-win32.o
512 else
513 ifdef CONFIG_AIO
514 OBJS+=posix-aio-compat.o
515 endif
516 OBJS+=block-raw-posix.o
517 endif
518
519 LIBS+=-lz
520 ifdef CONFIG_ALSA
521 LIBS += -lasound
522 endif
523 ifdef CONFIG_ESD
524 LIBS += -lesd
525 endif
526 ifdef CONFIG_PA
527 LIBS += -lpulse-simple
528 endif
529 ifdef CONFIG_DSOUND
530 LIBS += -lole32 -ldxguid
531 endif
532 ifdef CONFIG_FMOD
533 LIBS += $(CONFIG_FMOD_LIB)
534 endif
535 ifdef CONFIG_OSS
536 LIBS += $(CONFIG_OSS_LIB)
537 endif
538
539 SOUND_HW = sb16.o es1370.o ac97.o
540 ifdef CONFIG_ADLIB
541 SOUND_HW += fmopl.o adlib.o
542 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
543 endif
544 ifdef CONFIG_GUS
545 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
546 endif
547 ifdef CONFIG_CS4231A
548 SOUND_HW += cs4231a.o
549 endif
550
551 ifdef CONFIG_VNC_TLS
552 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
553 LIBS += $(CONFIG_VNC_TLS_LIBS)
554 endif
555
556 ifdef CONFIG_VNC_SASL
557 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
558 LIBS += $(CONFIG_VNC_SASL_LIBS)
559 endif
560
561 ifdef CONFIG_BLUEZ
562 LIBS += $(CONFIG_BLUEZ_LIBS)
563 endif
564
565 # SCSI layer
566 OBJS+= lsi53c895a.o esp.o
567
568 # USB layer
569 OBJS+= usb-ohci.o
570
571 # PCI network cards
572 OBJS += eepro100.o
573 OBJS += ne2000.o
574 OBJS += pcnet.o
575 OBJS += rtl8139.o
576 OBJS += e1000.o
577
578 ifeq ($(TARGET_BASE_ARCH), i386)
579 # Hardware support
580 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
581 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
582 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
583 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
584 OBJS += device-hotplug.o pci-hotplug.o smbios.o
585 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
586 endif
587 ifeq ($(TARGET_BASE_ARCH), ppc)
588 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
589 # shared objects
590 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
591 # PREP target
592 OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
593 OBJS+= prep_pci.o ppc_prep.o
594 # Mac shared devices
595 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o
596 # OldWorld PowerMac
597 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
598 # NewWorld PowerMac
599 OBJS+= unin_pci.o ppc_newworld.o
600 # PowerPC 4xx boards
601 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
602 OBJS+= ppc440.o ppc440_bamboo.o
603 # PowerPC E500 boards
604 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
605 ifdef FDT_LIBS
606 OBJS+= device_tree.o
607 LIBS+= $(FDT_LIBS)
608 endif
609 ifdef CONFIG_KVM
610 OBJS+= kvm_ppc.o
611 endif
612 endif
613 ifeq ($(TARGET_BASE_ARCH), mips)
614 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
615 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
616 OBJS+= g364fb.o jazz_led.o dp8393x.o
617 OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
618 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
619 OBJS+= mipsnet.o
620 OBJS+= pflash_cfi01.o
621 OBJS+= vmware_vga.o
622 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
623 endif
624 ifeq ($(TARGET_BASE_ARCH), cris)
625 # Boards
626 OBJS+= etraxfs.o axis_dev88.o
627
628 # IO blocks
629 OBJS+= etraxfs_dma.o
630 OBJS+= etraxfs_pic.o
631 OBJS+= etraxfs_eth.o
632 OBJS+= etraxfs_timer.o
633 OBJS+= etraxfs_ser.o
634
635 OBJS+= pflash_cfi02.o nand.o
636 endif
637 ifeq ($(TARGET_BASE_ARCH), sparc)
638 ifeq ($(TARGET_ARCH), sparc64)
639 OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
640 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
641 OBJS+= cirrus_vga.o parallel.o
642 else
643 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
644 OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
645 OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
646 endif
647 endif
648 ifeq ($(TARGET_BASE_ARCH), arm)
649 OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
650 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
651 OBJS+= versatile_pci.o
652 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
653 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
654 OBJS+= pl061.o
655 OBJS+= arm-semi.o
656 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
657 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
658 OBJS+= pflash_cfi01.o gumstix.o
659 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
660 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
661 OBJS+= omap2.o omap_dss.o soc_dma.o omap_spi.o
662 OBJS+= omap3.o omap3_boot.o omap3_mmc.o omap3_usb.o beagle.o twl4030.o
663 OBJS+= omap_sx1.o palm.o tsc210x.o
664 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
665 OBJS+= mst_fpga.o mainstone.o
666 OBJS+= musicpal.o pflash_cfi02.o
667 OBJS+= framebuffer.o
668 CPPFLAGS += -DHAS_AUDIO
669 endif
670 ifeq ($(TARGET_BASE_ARCH), sh4)
671 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
672 OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
673 OBJS+= ide.o
674 endif
675 ifeq ($(TARGET_BASE_ARCH), m68k)
676 OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
677 OBJS+= m68k-semi.o dummy_m68k.o
678 endif
679 ifdef CONFIG_GDBSTUB
680 OBJS+=gdbstub.o gdbstub-xml.o
681 endif
682 ifdef CONFIG_COCOA
683 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
684 ifdef CONFIG_COREAUDIO
685 COCOA_LIBS+=-framework CoreAudio
686 endif
687 endif
688 ifdef CONFIG_SLIRP
689 CPPFLAGS+=-I$(SRC_PATH)/slirp
690 endif
691
692 LIBS+=$(AIOLIBS)
693 # specific flags are needed for non soft mmu emulator
694 ifdef CONFIG_STATIC
695 LDFLAGS+=-static
696 endif
697 ifndef CONFIG_DARWIN
698 ifndef CONFIG_WIN32
699 ifndef CONFIG_SOLARIS
700 ifndef CONFIG_AIX
701 LIBS+=-lutil
702 endif
703 endif
704 endif
705 endif
706 ifdef TARGET_GPROF
707 vl.o: CFLAGS+=-p
708 LDFLAGS+=-p
709 endif
710
711 ifeq ($(ARCH),ia64)
712 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
713 endif
714
715 ifdef CONFIG_WIN32
716 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
717 endif
718
719 # profiling code
720 ifdef TARGET_GPROF
721 LDFLAGS+=-p
722 main.o: CFLAGS+=-p
723 endif
724
725 vl.o: qemu-options.h
726
727 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
728
729 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
730         $(LINK)
731
732 endif # !CONFIG_USER_ONLY
733
734 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
735 ifeq ($(TARGET_XML_FILES),)
736         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
737 else
738         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
739 endif
740
741 qemu-options.h: $(SRC_PATH)/qemu-options.hx
742         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
743
744 clean:
745         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c
746         rm -f *.d */*.d tcg/*.o
747
748 install: all
749 ifneq ($(PROGS),)
750         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
751 endif
752
753 # Include automatically generated dependency files
754 -include $(wildcard *.d */*.d)