Merge branch 'master' of /home/nchip/public_html/qemu into garage-push
[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 # Dummy command so that make thinks it has done something
132         @true
133
134 #########################################################
135 # cpu emulator library
136 LIBOBJS=exec.o translate-all.o cpu-exec.o\
137         translate.o host-utils.o
138 ifdef CONFIG_KQEMU
139 LIBOBJS+= kqemu.o
140 endif
141 # TCG code generator
142 LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
143 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
144 ifeq ($(ARCH),sparc64)
145 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
146 endif
147 ifdef CONFIG_SOFTFLOAT
148 LIBOBJS+=fpu/softfloat.o
149 else
150 LIBOBJS+=fpu/softfloat-native.o
151 endif
152 CPPFLAGS+=-I$(SRC_PATH)/fpu
153 LIBOBJS+= op_helper.o helper.o
154
155 ifeq ($(TARGET_BASE_ARCH), arm)
156 LIBOBJS+= neon_helper.o iwmmxt_helper.o
157 endif
158
159 ifeq ($(TARGET_BASE_ARCH), alpha)
160 LIBOBJS+= alpha_palcode.o
161 endif
162
163 ifeq ($(TARGET_BASE_ARCH), cris)
164 LIBOBJS+= cris-dis.o
165
166 ifndef CONFIG_USER_ONLY
167 LIBOBJS+= mmu.o
168 endif
169 endif
170
171 # NOTE: the disassembler code is only needed for debugging
172 LIBOBJS+=disas.o
173 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
174 USE_I386_DIS=y
175 endif
176 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
177 USE_I386_DIS=y
178 endif
179 ifdef USE_I386_DIS
180 LIBOBJS+=i386-dis.o
181 endif
182 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
183 LIBOBJS+=alpha-dis.o
184 endif
185 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
186 LIBOBJS+=ppc-dis.o
187 endif
188 ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
189 LIBOBJS+=microblaze-dis.o
190 ifndef CONFIG_USER_ONLY
191 LIBOBJS+= mmu.o
192 endif
193 endif
194 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
195 LIBOBJS+=mips-dis.o
196 endif
197 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
198 LIBOBJS+=sparc-dis.o
199 endif
200 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
201 LIBOBJS+=arm-dis.o
202 endif
203 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
204 LIBOBJS+=m68k-dis.o
205 endif
206 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
207 LIBOBJS+=sh4-dis.o
208 endif
209 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
210 LIBOBJS+=hppa-dis.o
211 endif
212 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
213 LIBOBJS+=s390-dis.o
214 endif
215
216 # libqemu
217
218 libqemu.a: $(LIBOBJS)
219
220 translate.o: translate.c cpu.h
221
222 translate-all.o: translate-all.c cpu.h
223
224 tcg/tcg.o: cpu.h
225
226 # HELPER_CFLAGS is used for all the code compiled with static register
227 # variables
228 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
229
230 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
231
232 #########################################################
233 # Linux user emulator target
234
235 ifdef CONFIG_LINUX_USER
236
237 ifndef TARGET_ABI_DIR
238   TARGET_ABI_DIR=$(TARGET_ARCH)
239 endif
240 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
241 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
242
243 #sbox hack
244 ifdef CONFIG_STATIC
245 LDFLAGS+=-static -L/scratchbox/tools/lib
246 LIBS+=-lsb -ldl
247 endif
248
249 ifeq ($(ARCH),i386)
250 ifdef TARGET_GPROF
251 USE_I386_LD=y
252 endif
253 ifdef CONFIG_STATIC
254 USE_I386_LD=y
255 endif
256 ifdef USE_I386_LD
257 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
258 else
259 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
260 # that the kernel ELF loader considers as an executable. I think this
261 # is the simplest way to make it self virtualizable!
262 LDFLAGS+=-Wl,-shared
263 endif
264 endif
265
266 ifeq ($(ARCH),x86_64)
267 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
268 endif
269
270 ifeq ($(ARCH),ppc)
271 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
272 endif
273
274 ifeq ($(ARCH),ppc64)
275 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
276 endif
277
278 ifeq ($(ARCH),s390)
279 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
280 endif
281
282 ifeq ($(ARCH),sparc)
283 # -static is used to avoid g1/g3 usage by the dynamic linker    
284 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
285 endif
286
287 ifeq ($(ARCH),sparc64)
288 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
289 endif
290
291 ifeq ($(ARCH),alpha)
292 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
293 endif
294
295 ifeq ($(ARCH),ia64)
296 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
297 endif
298
299 ifeq ($(ARCH),arm)
300 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
301 endif
302
303 ifeq ($(ARCH),m68k)
304 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
305 endif
306
307 ifeq ($(ARCH),mips)
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 ifeq ($(ARCH),mips64)
316 ifeq ($(WORDS_BIGENDIAN),yes)
317 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
318 else
319 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
320 endif
321 endif
322
323 # profiling code
324 ifdef TARGET_GPROF
325 LDFLAGS+=-p
326 CFLAGS+=-p
327 endif
328
329 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
330       elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
331 LIBS+= $(PTHREADLIBS)
332 LIBS+= $(CLOCKLIBS)
333 ifdef TARGET_HAS_BFLT
334 OBJS+= flatload.o
335 endif
336 ifdef TARGET_HAS_ELFLOAD32
337 OBJS+= elfload32.o
338 elfload32.o: elfload.c
339 endif
340
341 ifeq ($(TARGET_ARCH), i386)
342 OBJS+= vm86.o
343 endif
344 ifeq ($(TARGET_ARCH), arm)
345 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
346 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
347  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
348 endif
349 ifeq ($(TARGET_ARCH), m68k)
350 OBJS+= m68k-sim.o m68k-semi.o
351 endif
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): ARLIBS=../libqemu_user.a libqemu.a
358 $(QEMU_PROG): $(OBJS) ../libqemu_user.a libqemu.a
359         $(call LINK,$(OBJS))
360 ifeq ($(ARCH),alpha)
361 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
362 # the address space (31 bit so sign extending doesn't matter)
363         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
364 endif
365
366 endif #CONFIG_LINUX_USER
367
368 #########################################################
369 # Darwin user emulator target
370
371 ifdef CONFIG_DARWIN_USER
372
373 VPATH+=:$(SRC_PATH)/darwin-user
374 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
375
376 # Leave some space for the regular program loading zone
377 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
378
379 LIBS+=-lmx
380
381 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
382       gdbstub.o gdbstub-xml.o
383
384 # Note: this is a workaround. The real fix is to avoid compiling
385 # cpu_signal_handler() in cpu-exec.c.
386 signal.o: CFLAGS += $(HELPER_CFLAGS)
387
388 $(QEMU_PROG): ARLIBS=libqemu.a
389 $(QEMU_PROG): $(OBJS) libqemu.a
390         $(call LINK,$(OBJS))
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       gdbstub.o gdbstub-xml.o
482 OBJS+= uaccess.o
483
484 # Note: this is a workaround. The real fix is to avoid compiling
485 # cpu_signal_handler() in cpu-exec.c.
486 signal.o: CFLAGS += $(HELPER_CFLAGS)
487
488 $(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
489 $(QEMU_PROG): $(OBJS) libqemu.a ../libqemu_user.a
490         $(call LINK,$(OBJS))
491
492 endif #CONFIG_BSD_USER
493
494 #########################################################
495 # System emulator target
496 ifndef CONFIG_USER_ONLY
497
498 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
499      gdbstub.o gdbstub-xml.o
500 # virtio has to be here due to weird dependency between PCI and virtio-net.
501 # need to fix this properly
502 OBJS+=virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
503 ifdef CONFIG_KVM
504 OBJS+=kvm.o kvm-all.o
505 endif
506
507 LIBS+=-lz
508 ifdef CONFIG_ALSA
509 LIBS += -lasound
510 endif
511 ifdef CONFIG_ESD
512 LIBS += -lesd
513 endif
514 ifdef CONFIG_PA
515 LIBS += -lpulse-simple
516 endif
517 ifdef CONFIG_DSOUND
518 LIBS += -lole32 -ldxguid
519 endif
520 ifdef CONFIG_FMOD
521 LIBS += $(CONFIG_FMOD_LIB)
522 endif
523 ifdef CONFIG_OSS
524 LIBS += $(CONFIG_OSS_LIB)
525 endif
526
527 SOUND_HW = sb16.o es1370.o ac97.o
528 ifdef CONFIG_ADLIB
529 SOUND_HW += fmopl.o adlib.o
530 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
531 endif
532 ifdef CONFIG_GUS
533 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
534 endif
535 ifdef CONFIG_CS4231A
536 SOUND_HW += cs4231a.o
537 endif
538
539 ifdef CONFIG_VNC_TLS
540 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
541 LIBS += $(CONFIG_VNC_TLS_LIBS)
542 endif
543
544 ifdef CONFIG_VNC_SASL
545 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
546 LIBS += $(CONFIG_VNC_SASL_LIBS)
547 endif
548
549 ifdef CONFIG_BLUEZ
550 LIBS += $(CONFIG_BLUEZ_LIBS)
551 endif
552
553 # xen backend driver support
554 XEN_OBJS := xen_machine_pv.o xen_domainbuild.o
555 ifeq ($(CONFIG_XEN), yes)
556   OBJS += $(XEN_OBJS)
557   LIBS += $(XEN_LIBS)
558 endif
559
560 # USB layer
561 OBJS+= usb-ohci.o
562
563 # PCI network cards
564 OBJS += eepro100.o
565 OBJS += ne2000.o
566 OBJS += pcnet.o
567 OBJS += rtl8139.o
568 OBJS += e1000.o
569
570 # Generic watchdog support and some watchdog devices
571 OBJS += wdt_ib700.o wdt_i6300esb.o
572
573 ifeq ($(TARGET_BASE_ARCH), i386)
574 # Hardware support
575 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
576 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
577 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
578 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
579 OBJS += device-hotplug.o pci-hotplug.o smbios.o
580 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
581 endif
582 ifeq ($(TARGET_BASE_ARCH), ppc)
583 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
584 # shared objects
585 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
586 # PREP target
587 OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
588 OBJS+= prep_pci.o ppc_prep.o
589 # Mac shared devices
590 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
591 # OldWorld PowerMac
592 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
593 # NewWorld PowerMac
594 OBJS+= unin_pci.o ppc_newworld.o
595 # PowerPC 4xx boards
596 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
597 OBJS+= ppc440.o ppc440_bamboo.o
598 # PowerPC E500 boards
599 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
600 ifdef FDT_LIBS
601 OBJS+= device_tree.o
602 LIBS+= $(FDT_LIBS)
603 endif
604 ifdef CONFIG_KVM
605 OBJS+= kvm_ppc.o
606 endif
607 endif
608 ifeq ($(TARGET_BASE_ARCH), mips)
609 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
610 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
611 OBJS+= g364fb.o jazz_led.o dp8393x.o
612 OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
613 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
614 OBJS+= mipsnet.o
615 OBJS+= pflash_cfi01.o
616 OBJS+= vmware_vga.o
617 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
618 endif
619 ifeq ($(TARGET_BASE_ARCH), microblaze)
620 OBJS+= petalogix_s3adsp1800_mmu.o
621
622 OBJS+= microblaze_pic_cpu.o
623 OBJS+= xilinx_intc.o
624 OBJS+= xilinx_timer.o
625 OBJS+= xilinx_uartlite.o
626 OBJS+= xilinx_ethlite.o
627
628 OBJS+= pflash_cfi02.o
629 ifdef FDT_LIBS
630 OBJS+= device_tree.o
631 LIBS+= $(FDT_LIBS)
632 endif
633 endif
634 ifeq ($(TARGET_BASE_ARCH), cris)
635 # Boards
636 OBJS+= cris_pic_cpu.o etraxfs.o axis_dev88.o
637
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
644
645 OBJS+= pflash_cfi02.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
651 OBJS+= cirrus_vga.o parallel.o
652 else
653 OBJS+= sun4m.o tcx.o iommu.o slavio_intctl.o
654 OBJS+= slavio_timer.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 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+= 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 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+=$(PTHREADLIBS)
703 LIBS+=$(CLOCKLIBS)
704 # specific flags are needed for non soft mmu emulator
705 ifdef CONFIG_STATIC
706 LDFLAGS+=-static
707 endif
708 ifndef CONFIG_DARWIN
709 ifndef CONFIG_WIN32
710 ifndef CONFIG_SOLARIS
711 ifndef CONFIG_AIX
712 LIBS+=-lutil
713 endif
714 endif
715 endif
716 endif
717 ifdef TARGET_GPROF
718 vl.o: CFLAGS+=-p
719 LDFLAGS+=-p
720 endif
721
722 ifeq ($(ARCH),ia64)
723 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
724 endif
725
726 ifdef CONFIG_WIN32
727 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
728 endif
729
730 # profiling code
731 ifdef TARGET_GPROF
732 LDFLAGS+=-p
733 main.o: CFLAGS+=-p
734 endif
735
736 vl.o: qemu-options.h
737
738 monitor.o: qemu-monitor.h
739
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))
744
745 endif # !CONFIG_USER_ONLY
746
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
753
754 qemu-options.h: $(SRC_PATH)/qemu-options.hx
755         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
756
757 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
758         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
759
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
764
765 install: all
766 ifneq ($(PROGS),)
767         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
768 endif
769
770 # Include automatically generated dependency files
771 -include $(wildcard *.d */*.d)