more dummy regs & clean-up for twl4030
[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 ($(ARCH),sparc)
88   CFLAGS+=-ffixed-g2 -ffixed-g3
89   ifneq ($(CONFIG_SOLARIS),yes)
90     CFLAGS+=-ffixed-g1 -ffixed-g6
91     HELPER_CFLAGS+=-ffixed-i0
92   endif
93 endif
94
95 ifeq ($(ARCH),sparc64)
96   ifneq ($(CONFIG_SOLARIS),yes)
97     CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
98   else
99     CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
100   endif
101 endif
102
103 ifeq ($(ARCH),alpha)
104 # Ensure there's only a single GP
105 CFLAGS+=-msmall-data
106 endif
107
108 ifeq ($(ARCH),hppa)
109 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
110 endif
111
112 ifeq ($(ARCH),ia64)
113 CFLAGS+=-mno-sdata
114 endif
115
116 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
117 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
118
119 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
120 LIBS+=-lm
121 ifdef CONFIG_WIN32
122 LIBS+=-lwinmm -lws2_32 -liphlpapi
123 endif
124 ifdef CONFIG_SOLARIS
125 LIBS+=-lsocket -lnsl -lresolv
126 ifdef NEEDS_LIBSUNMATH
127 LIBS+=-lsunmath
128 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
129 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
130 endif
131 endif
132
133 kvm.o: CFLAGS+=$(KVM_CFLAGS)
134 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
135
136 all: $(PROGS)
137
138 #########################################################
139 # cpu emulator library
140 LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
141         translate.o host-utils.o
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
155
156 ifeq ($(TARGET_BASE_ARCH), arm)
157 LIBOBJS+= neon_helper.o iwmmxt_helper.o
158 endif
159
160 ifeq ($(TARGET_BASE_ARCH), alpha)
161 LIBOBJS+= alpha_palcode.o
162 endif
163
164 ifeq ($(TARGET_BASE_ARCH), cris)
165 LIBOBJS+= cris-dis.o
166
167 ifndef CONFIG_USER_ONLY
168 LIBOBJS+= mmu.o
169 endif
170 endif
171
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 mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
190 LIBOBJS+=mips-dis.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
210
211 # libqemu
212
213 libqemu.a: $(LIBOBJS)
214
215 translate.o: translate.c cpu.h
216
217 translate-all.o: translate-all.c cpu.h
218
219 tcg/tcg.o: cpu.h
220
221 # HELPER_CFLAGS is used for all the code compiled with static register
222 # variables
223 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
224
225 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
226
227 #########################################################
228 # Linux user emulator target
229
230 ifdef CONFIG_LINUX_USER
231
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)
237
238 #sbox hack
239 ifdef CONFIG_STATIC
240 LDFLAGS+=-static -L/scratchbox/tools/lib
241 LIBS+=-lsb -ldl
242 endif
243
244 ifeq ($(ARCH),i386)
245 ifdef TARGET_GPROF
246 USE_I386_LD=y
247 endif
248 ifdef CONFIG_STATIC
249 USE_I386_LD=y
250 endif
251 ifdef USE_I386_LD
252 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
253 else
254 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
255 # that the kernel ELF loader considers as an executable. I think this
256 # is the simplest way to make it self virtualizable!
257 LDFLAGS+=-Wl,-shared
258 endif
259 endif
260
261 ifeq ($(ARCH),x86_64)
262 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
263 endif
264
265 ifeq ($(ARCH),ppc)
266 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
267 endif
268
269 ifeq ($(ARCH),ppc64)
270 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
271 endif
272
273 ifeq ($(ARCH),s390)
274 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
275 endif
276
277 ifeq ($(ARCH),sparc)
278 # -static is used to avoid g1/g3 usage by the dynamic linker    
279 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
280 endif
281
282 ifeq ($(ARCH),sparc64)
283 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
284 endif
285
286 ifeq ($(ARCH),alpha)
287 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
288 endif
289
290 ifeq ($(ARCH),ia64)
291 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
292 endif
293
294 ifeq ($(ARCH),arm)
295 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
296 endif
297
298 ifeq ($(ARCH),m68k)
299 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
300 endif
301
302 ifeq ($(ARCH),mips)
303 ifeq ($(WORDS_BIGENDIAN),yes)
304 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
305 else
306 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
307 endif
308 endif
309
310 ifeq ($(ARCH),mips64)
311 ifeq ($(WORDS_BIGENDIAN),yes)
312 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
313 else
314 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
315 endif
316 endif
317
318 # profiling code
319 ifdef TARGET_GPROF
320 LDFLAGS+=-p
321 CFLAGS+=-p
322 endif
323
324 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
325       elfload.o linuxload.o uaccess.o envlist.o
326 LIBS+= $(AIOLIBS)
327 ifdef TARGET_HAS_BFLT
328 OBJS+= flatload.o
329 endif
330 ifdef TARGET_HAS_ELFLOAD32
331 OBJS+= elfload32.o
332 elfload32.o: elfload.c
333 endif
334
335 ifeq ($(TARGET_ARCH), i386)
336 OBJS+= vm86.o
337 endif
338 ifeq ($(TARGET_ARCH), arm)
339 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
340 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
341  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
342 endif
343 ifeq ($(TARGET_ARCH), m68k)
344 OBJS+= m68k-sim.o m68k-semi.o
345 endif
346
347 ifdef CONFIG_GDBSTUB
348 OBJS+=gdbstub.o gdbstub-xml.o
349 endif
350
351 OBJS+= libqemu.a
352
353 # Note: this is a workaround. The real fix is to avoid compiling
354 # cpu_signal_handler() in cpu-exec.c.
355 signal.o: CFLAGS += $(HELPER_CFLAGS)
356
357 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
358         $(LINK)
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
364
365 endif #CONFIG_LINUX_USER
366
367 #########################################################
368 # Darwin user emulator target
369
370 ifdef CONFIG_DARWIN_USER
371
372 VPATH+=:$(SRC_PATH)/darwin-user
373 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
374
375 # Leave some space for the regular program loading zone
376 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
377
378 LIBS+=-lmx
379
380 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
381
382 OBJS+= libqemu.a
383
384 ifdef CONFIG_GDBSTUB
385 OBJS+=gdbstub.o gdbstub-xml.o
386 endif
387
388 # Note: this is a workaround. The real fix is to avoid compiling
389 # cpu_signal_handler() in cpu-exec.c.
390 signal.o: CFLAGS += $(HELPER_CFLAGS)
391
392 $(QEMU_PROG): $(OBJS)
393         $(LINK)
394
395 endif #CONFIG_DARWIN_USER
396
397 #########################################################
398 # BSD user emulator target
399
400 ifdef CONFIG_BSD_USER
401
402 VPATH+=:$(SRC_PATH)/bsd-user
403 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
404
405 ifdef CONFIG_STATIC
406 LDFLAGS+=-static
407 endif
408
409 ifeq ($(ARCH),i386)
410 ifdef TARGET_GPROF
411 USE_I386_LD=y
412 endif
413 ifdef CONFIG_STATIC
414 USE_I386_LD=y
415 endif
416 ifdef USE_I386_LD
417 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
418 else
419 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
420 # that the kernel ELF loader considers as an executable. I think this
421 # is the simplest way to make it self virtualizable!
422 LDFLAGS+=-Wl,-shared
423 endif
424 endif
425
426 ifeq ($(ARCH),x86_64)
427 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
428 endif
429
430 ifeq ($(ARCH),ppc)
431 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
432 endif
433
434 ifeq ($(ARCH),ppc64)
435 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
436 endif
437
438 ifeq ($(ARCH),s390)
439 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
440 endif
441
442 ifeq ($(ARCH),sparc)
443 # -static is used to avoid g1/g3 usage by the dynamic linker
444 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
445 endif
446
447 ifeq ($(ARCH),sparc64)
448 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
449 endif
450
451 ifeq ($(ARCH),alpha)
452 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
453 endif
454
455 ifeq ($(ARCH),ia64)
456 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
457 endif
458
459 ifeq ($(ARCH),arm)
460 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
461 endif
462
463 ifeq ($(ARCH),m68k)
464 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
465 endif
466
467 ifeq ($(ARCH),mips)
468 ifeq ($(WORDS_BIGENDIAN),yes)
469 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
470 else
471 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
472 endif
473 endif
474
475 ifeq ($(ARCH),mips64)
476 ifeq ($(WORDS_BIGENDIAN),yes)
477 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
478 else
479 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
480 endif
481 endif
482
483 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
484 OBJS+= uaccess.o
485
486 OBJS+= libqemu.a
487
488 ifdef CONFIG_GDBSTUB
489 OBJS+=gdbstub.o
490 endif
491
492 # Note: this is a workaround. The real fix is to avoid compiling
493 # cpu_signal_handler() in cpu-exec.c.
494 signal.o: CFLAGS += $(HELPER_CFLAGS)
495
496 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
497         $(LINK)
498
499 endif #CONFIG_BSD_USER
500
501 #########################################################
502 # System emulator target
503 ifndef CONFIG_USER_ONLY
504
505 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
506 # virtio has to be here due to weird dependency between PCI and virtio-net.
507 # need to fix this properly
508 OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
509 OBJS+=fw_cfg.o
510 ifdef CONFIG_KVM
511 OBJS+=kvm.o kvm-all.o
512 endif
513 ifdef CONFIG_WIN32
514 OBJS+=block-raw-win32.o
515 else
516 ifdef CONFIG_AIO
517 OBJS+=posix-aio-compat.o
518 endif
519 OBJS+=block-raw-posix.o
520 endif
521
522 LIBS+=-lz
523 ifdef CONFIG_ALSA
524 LIBS += -lasound
525 endif
526 ifdef CONFIG_ESD
527 LIBS += -lesd
528 endif
529 ifdef CONFIG_PA
530 LIBS += -lpulse-simple
531 endif
532 ifdef CONFIG_DSOUND
533 LIBS += -lole32 -ldxguid
534 endif
535 ifdef CONFIG_FMOD
536 LIBS += $(CONFIG_FMOD_LIB)
537 endif
538 ifdef CONFIG_OSS
539 LIBS += $(CONFIG_OSS_LIB)
540 endif
541
542 SOUND_HW = sb16.o es1370.o ac97.o
543 ifdef CONFIG_ADLIB
544 SOUND_HW += fmopl.o adlib.o
545 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
546 endif
547 ifdef CONFIG_GUS
548 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
549 endif
550 ifdef CONFIG_CS4231A
551 SOUND_HW += cs4231a.o
552 endif
553
554 ifdef CONFIG_VNC_TLS
555 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
556 LIBS += $(CONFIG_VNC_TLS_LIBS)
557 endif
558
559 ifdef CONFIG_VNC_SASL
560 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
561 LIBS += $(CONFIG_VNC_SASL_LIBS)
562 endif
563
564 ifdef CONFIG_BLUEZ
565 LIBS += $(CONFIG_BLUEZ_LIBS)
566 endif
567
568 # SCSI layer
569 OBJS+= lsi53c895a.o esp.o
570
571 # USB layer
572 OBJS+= usb-ohci.o
573
574 # EEPROM emulation
575 OBJS += eeprom93xx.o
576
577 # PCI network cards
578 OBJS += eepro100.o
579 OBJS += ne2000.o
580 OBJS += pcnet.o
581 OBJS += rtl8139.o
582 OBJS += e1000.o
583
584 # Serial mouse
585 OBJS += msmouse.o
586
587 ifeq ($(TARGET_BASE_ARCH), i386)
588 # Hardware support
589 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
590 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
591 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
592 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
593 OBJS += device-hotplug.o pci-hotplug.o
594 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
595 endif
596 ifeq ($(TARGET_BASE_ARCH), ppc)
597 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
598 # shared objects
599 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
600 # PREP target
601 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
602 OBJS+= prep_pci.o ppc_prep.o
603 # Mac shared devices
604 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o
605 # OldWorld PowerMac
606 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
607 # NewWorld PowerMac
608 OBJS+= unin_pci.o ppc_newworld.o
609 # PowerPC 4xx boards
610 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
611 OBJS+= ppc440.o ppc440_bamboo.o
612 # PowerPC E500 boards
613 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
614 ifdef FDT_LIBS
615 OBJS+= device_tree.o
616 LIBS+= $(FDT_LIBS)
617 endif
618 ifdef CONFIG_KVM
619 OBJS+= kvm_ppc.o
620 endif
621 endif
622 ifeq ($(TARGET_BASE_ARCH), mips)
623 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
624 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
625 OBJS+= g364fb.o jazz_led.o
626 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
627 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
628 OBJS+= mipsnet.o
629 OBJS+= pflash_cfi01.o
630 OBJS+= vmware_vga.o
631 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
632 endif
633 ifeq ($(TARGET_BASE_ARCH), cris)
634 # Boards
635 OBJS+= etraxfs.o axis_dev88.o
636
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
643
644 OBJS+= ptimer.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 ps2.o vga.o apb_pci.o
650 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
651 OBJS+= cirrus_vga.o parallel.o ptimer.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 ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
656 endif
657 endif
658 ifeq ($(TARGET_BASE_ARCH), arm)
659 OBJS+= integratorcp.o versatilepb.o ps2.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 ptimer.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 omap_spi.o
672 OBJS+= omap3.o omap3_boot.o omap3_mmc.o omap3_usb.o beagle.o twl4030.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+= tsc2005.o bt-hci-csr.o
676 OBJS+= mst_fpga.o mainstone.o
677 OBJS+= musicpal.o pflash_cfi02.o
678 CPPFLAGS += -DHAS_AUDIO
679 endif
680 ifeq ($(TARGET_BASE_ARCH), sh4)
681 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
682 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
683 OBJS+= ide.o
684 endif
685 ifeq ($(TARGET_BASE_ARCH), m68k)
686 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
687 OBJS+= m68k-semi.o dummy_m68k.o
688 endif
689 ifdef CONFIG_GDBSTUB
690 OBJS+=gdbstub.o gdbstub-xml.o
691 endif
692 ifdef CONFIG_COCOA
693 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
694 ifdef CONFIG_COREAUDIO
695 COCOA_LIBS+=-framework CoreAudio
696 endif
697 endif
698 ifdef CONFIG_SLIRP
699 CPPFLAGS+=-I$(SRC_PATH)/slirp
700 endif
701
702 LIBS+=$(AIOLIBS)
703 # specific flags are needed for non soft mmu emulator
704 ifdef CONFIG_STATIC
705 LDFLAGS+=-static
706 endif
707 ifndef CONFIG_DARWIN
708 ifndef CONFIG_WIN32
709 ifndef CONFIG_SOLARIS
710 ifndef CONFIG_AIX
711 LIBS+=-lutil
712 endif
713 endif
714 endif
715 endif
716 ifdef TARGET_GPROF
717 vl.o: CFLAGS+=-p
718 LDFLAGS+=-p
719 endif
720
721 ifeq ($(ARCH),ia64)
722 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
723 endif
724
725 ifdef CONFIG_WIN32
726 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
727 endif
728
729 # profiling code
730 ifdef TARGET_GPROF
731 LDFLAGS+=-p
732 main.o: CFLAGS+=-p
733 endif
734
735 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
736
737 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
738         $(LINK)
739
740 endif # !CONFIG_USER_ONLY
741
742 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
743         rm -f $@
744 ifeq ($(TARGET_XML_FILES),)
745         echo > $@
746 else
747         $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
748 endif
749
750 clean:
751         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
752         rm -f *.d */*.d tcg/*.o
753
754 install: all
755 ifneq ($(PROGS),)
756         $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
757 endif
758
759 # Include automatically generated dependency files
760 -include $(wildcard *.d */*.d)