Fix initialization of I/O regions
[qemu-kvm/fedora.git] / Makefile.target
blobcec2b80b26529d2558a4ffc60286a49afb5b1389
1 CFLAGS=
2 LDFLAGS=
4 include config.mak
6 LDFLAGS_BASE:=$(LDFLAGS)
7 TARGET_BASE_ARCH:=$(TARGET_ARCH)
8 ifeq ($(TARGET_ARCH), x86_64)
9 TARGET_BASE_ARCH:=i386
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 ifeq ($(TARGET_ARCH), ia64)
30 TARGET_BASE_ARCH:=ia64
31 endif
32 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
33 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
34 CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MP -DNEED_CPU_H
35 #CFLAGS+=-Werror
36 LIBS=
37 DYNGEN=../dyngen$(EXESUF)
38 # user emulator name
39 ifndef TARGET_ARCH2
40 TARGET_ARCH2=$(TARGET_ARCH)
41 endif
42 ifeq ($(TARGET_ARCH),arm)
43   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
44     TARGET_ARCH2=armeb
45   endif
46 endif
47 ifeq ($(TARGET_ARCH),sh4)
48   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
49     TARGET_ARCH2=sh4eb
50   endif
51 endif
52 ifeq ($(TARGET_ARCH),mips)
53   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
54     TARGET_ARCH2=mipsel
55   endif
56 endif
57 ifeq ($(TARGET_ARCH),mipsn32)
58   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
59     TARGET_ARCH2=mipsn32el
60   endif
61 endif
62 ifeq ($(TARGET_ARCH),mips64)
63   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
64     TARGET_ARCH2=mips64el
65   endif
66 endif
68 ifdef CONFIG_USER_ONLY
69 # user emulator name
70 QEMU_PROG=qemu-$(TARGET_ARCH2)
71 else
72 # system emulator name
73 ifeq ($(TARGET_ARCH), i386)
74 QEMU_PROG=qemu$(EXESUF)
75 else
76 QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
77 endif
78 endif
80 PROGS=$(QEMU_PROG)
82 # We require -O2 to avoid the stack setup prologue in EXIT_TB
83 OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing
85 # cc-option
86 # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
88 cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
89               > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
91 OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
92 OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
93 OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
94 OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
95 OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
96 OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
97 OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
98 OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
99 OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
101 HELPER_CFLAGS=
103 ifeq ($(ARCH),i386)
104 HELPER_CFLAGS+=-fomit-frame-pointer
105 OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
106 endif
108 ifeq ($(ARCH),ppc)
109 CPPFLAGS+= -D__powerpc__
110 endif
112 ifeq ($(ARCH),sparc)
113   CFLAGS+=-ffixed-g2 -ffixed-g3
114   OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
115   ifeq ($(CONFIG_SOLARIS),yes)
116     OP_CFLAGS+=-fno-omit-frame-pointer
117   else
118     CFLAGS+=-ffixed-g1 -ffixed-g6
119     HELPER_CFLAGS+=-ffixed-i0
120   endif
121 endif
123 ifeq ($(ARCH),sparc64)
124   CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
125   OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
126   ifneq ($(CONFIG_SOLARIS),yes)
127     OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
128   endif
129 endif
131 ifeq ($(ARCH),alpha)
132 # -msmall-data is not used for OP_CFLAGS because we want two-instruction
133 # relocations for the constant constructions
134 # Ensure there's only a single GP
135 CFLAGS+=-msmall-data
136 endif
138 ifeq ($(ARCH),ia64)
139 CFLAGS+=-mno-sdata
140 OP_CFLAGS+=-mno-sdata
141 endif
143 ifeq ($(ARCH),arm)
144 OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
145 endif
147 ifeq ($(ARCH),m68k)
148 OP_CFLAGS+=-fomit-frame-pointer
149 endif
151 ifeq ($(ARCH),mips)
152 OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
153 endif
155 ifeq ($(ARCH),mips64)
156 OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
157 endif
159 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
160 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
161 OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
163 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__user=
164 LIBS+=-lm
165 ifdef CONFIG_WIN32
166 LIBS+=-lwinmm -lws2_32 -liphlpapi
167 endif
168 ifdef CONFIG_SOLARIS
169 LIBS+=-lsocket -lnsl -lresolv
170 ifdef NEEDS_LIBSUNMATH
171 LIBS+=-lsunmath
172 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
173 OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
174 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
175 endif
176 endif
178 all: $(PROGS)
180 #########################################################
181 # cpu emulator library
182 LIBOBJS=exec.o kqemu.o cpu-exec.o host-utils.o
184 ifeq ($(NO_CPU_EMULATION), 1)
185 LIBOBJS+=fake-exec.o
186 else
187 LIBOBJS+= translate-all.o translate.o op.o
188 # TCG code generator
189 LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
190 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
191 endif
192 ifeq ($(ARCH),sparc64)
193 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
194 endif
196 ifeq ($(USE_KVM), 1)
197 LIBOBJS+=qemu-kvm.o
198 endif
199 ifdef CONFIG_SOFTFLOAT
200 LIBOBJS+=fpu/softfloat.o
201 else
202 LIBOBJS+=fpu/softfloat-native.o
203 endif
204 CPPFLAGS+=-I$(SRC_PATH)/fpu
206 ifeq ($(TARGET_ARCH), i386)
207 LIBOBJS+=helper.o helper2.o
208 ifeq ($(USE_KVM), 1)
209 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
210 LIBOBJS+=qemu-kvm-helper.o
211 endif
212 endif
214 ifeq ($(TARGET_ARCH), x86_64)
215 LIBOBJS+=helper.o helper2.o
216 ifeq ($(USE_KVM), 1)
217 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
218 LIBOBJS+=qemu-kvm-helper.o
219 endif
220 endif
222 ifeq ($(TARGET_BASE_ARCH), ppc)
223 LIBOBJS+= op_helper.o helper.o
224 ifeq ($(USE_KVM), 1)
225 LIBOBJS+= qemu-kvm-powerpc.o
226 endif
227 endif
229 ifeq ($(TARGET_BASE_ARCH), mips)
230 LIBOBJS+= op_helper.o helper.o
231 endif
233 ifeq ($(TARGET_BASE_ARCH), sparc)
234 LIBOBJS+= op_helper.o helper.o
235 endif
237 ifeq ($(TARGET_BASE_ARCH), arm)
238 LIBOBJS+= op_helper.o helper.o
239 endif
241 ifeq ($(TARGET_BASE_ARCH), sh4)
242 LIBOBJS+= op_helper.o helper.o
243 endif
245 ifeq ($(TARGET_BASE_ARCH), m68k)
246 LIBOBJS+= op_helper.o helper.o
247 endif
249 ifeq ($(TARGET_BASE_ARCH), alpha)
250 LIBOBJS+= op_helper.o helper.o alpha_palcode.o
251 endif
253 ifeq ($(TARGET_BASE_ARCH), ia64)
254 LIBOBJS+=op_helper.o firmware.o
255 ifeq ($(USE_KVM), 1)
256 LIBOBJS+=qemu-kvm-ia64.o
257 endif
258 endif
260 ifeq ($(TARGET_BASE_ARCH), cris)
261 LIBOBJS+= op_helper.o helper.o
262 LIBOBJS+= cris-dis.o
264 ifndef CONFIG_USER_ONLY
265 LIBOBJS+= mmu.o
266 endif
267 endif
270 # NOTE: the disassembler code is only needed for debugging
271 LIBOBJS+=disas.o
272 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
273 USE_I386_DIS=y
274 endif
275 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
276 USE_I386_DIS=y
277 endif
278 ifdef USE_I386_DIS
279 LIBOBJS+=i386-dis.o
280 endif
281 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
282 LIBOBJS+=alpha-dis.o
283 endif
284 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
285 LIBOBJS+=ppc-dis.o
286 endif
287 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
288 LIBOBJS+=mips-dis.o
289 endif
290 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
291 LIBOBJS+=sparc-dis.o
292 endif
293 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
294 LIBOBJS+=arm-dis.o
295 endif
296 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
297 LIBOBJS+=m68k-dis.o
298 endif
299 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
300 LIBOBJS+=sh4-dis.o
301 endif
302 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
303 LIBOBJS+=s390-dis.o
304 endif
306 # libqemu
308 OPC_H = gen-op.h dyngen-opc.h op.h
310 libqemu.a: $(LIBOBJS)
311         rm -f $@
312         $(AR) rcs $@ $(LIBOBJS)
314 translate.o: translate.c cpu.h $(OPC_H)
316 translate-all.o: translate-all.c cpu.h $(OPC_H)
318 tcg/tcg.o: cpu.h $(OPC_H)
320 tcg/tcg-dyngen.o: $(OPC_H)
322 tcg/tcg-runtime.o: $(OPC_H)
324 op.h: op.o $(DYNGEN)
325         $(DYNGEN) -o $@ $<
327 dyngen-opc.h: op.o $(DYNGEN)
328         $(DYNGEN) -c -o $@ $<
330 gen-op.h: op.o $(DYNGEN)
331         $(DYNGEN) -g -o $@ $<
333 op.o: op.c
334         $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
336 # HELPER_CFLAGS is used for all the code compiled with static register
337 # variables
338 ifeq ($(TARGET_BASE_ARCH), i386)
339 # XXX: rename helper.c to op_helper.c
340 helper.o: helper.c
341         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
342 else
343 op_helper.o: op_helper.c
344         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
345 endif
347 cpu-exec.o: cpu-exec.c
348         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
350 qemu-kvm-helper.o: qemu-kvm-helper.c
351         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
353 #########################################################
354 # Linux user emulator target
356 ifdef CONFIG_LINUX_USER
358 VPATH+=:$(SRC_PATH)/linux-user
359 ifndef TARGET_ABI_DIR
360   TARGET_ABI_DIR=$(TARGET_ARCH)
361 endif
362 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
364 ifdef CONFIG_STATIC
365 LDFLAGS+=-static
366 endif
368 ifeq ($(ARCH),i386)
369 ifdef TARGET_GPROF
370 USE_I386_LD=y
371 endif
372 ifdef CONFIG_STATIC
373 USE_I386_LD=y
374 endif
375 ifdef USE_I386_LD
376 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
377 else
378 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
379 # that the kernel ELF loader considers as an executable. I think this
380 # is the simplest way to make it self virtualizable!
381 LDFLAGS+=-Wl,-shared
382 endif
383 endif
385 ifeq ($(ARCH),x86_64)
386 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
387 endif
389 ifeq ($(ARCH),ppc)
390 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
391 endif
393 ifeq ($(ARCH),s390)
394 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
395 endif
397 ifeq ($(ARCH),sparc)
398 # -static is used to avoid g1/g3 usage by the dynamic linker    
399 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
400 endif
402 ifeq ($(ARCH),sparc64)
403 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
404 endif
406 ifeq ($(ARCH),alpha)
407 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
408 endif
410 ifeq ($(ARCH),ia64)
411 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
412 endif
414 ifeq ($(ARCH),arm)
415 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
416 endif
418 ifeq ($(ARCH),m68k)
419 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
420 endif
422 ifeq ($(ARCH),mips)
423 ifeq ($(WORDS_BIGENDIAN),yes)
424 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
425 else
426 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
427 endif
428 endif
430 ifeq ($(ARCH),mips64)
431 ifeq ($(WORDS_BIGENDIAN),yes)
432 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
433 else
434 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
435 endif
436 endif
438 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
439       elfload.o linuxload.o uaccess.o
440 LIBS+= $(AIOLIBS)
441 ifdef TARGET_HAS_BFLT
442 OBJS+= flatload.o
443 endif
444 ifdef TARGET_HAS_ELFLOAD32
445 OBJS+= elfload32.o
446 elfload32.o: elfload.c
447 endif
449 ifeq ($(TARGET_ARCH), i386)
450 OBJS+= vm86.o
451 endif
452 ifeq ($(TARGET_ARCH), arm)
453 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
454 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
455  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
456 endif
457 ifeq ($(TARGET_ARCH), m68k)
458 OBJS+= m68k-sim.o m68k-semi.o
459 endif
461 ifdef CONFIG_GDBSTUB
462 OBJS+=gdbstub.o
463 endif
465 OBJS+= libqemu.a
467 # Note: this is a workaround. The real fix is to avoid compiling
468 # cpu_signal_handler() in cpu-exec.c.
469 signal.o: signal.c
470         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
472 $(QEMU_PROG): $(OBJS)
473         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
474 ifeq ($(ARCH),alpha)
475 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
476 # the address space (31 bit so sign extending doesn't matter)
477         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
478 endif
480 endif #CONFIG_LINUX_USER
482 #########################################################
483 # Darwin user emulator target
485 ifdef CONFIG_DARWIN_USER
487 VPATH+=:$(SRC_PATH)/darwin-user
488 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
490 # Leave some space for the regular program loading zone
491 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
493 LIBS+=-lmx
495 OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
497 OBJS+= libqemu.a
499 ifdef CONFIG_GDBSTUB
500 OBJS+=gdbstub.o
501 endif
503 # Note: this is a workaround. The real fix is to avoid compiling
504 # cpu_signal_handler() in cpu-exec.c.
505 signal.o: signal.c
506         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
508 $(QEMU_PROG): $(OBJS)
509         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
511 endif #CONFIG_DARWIN_USER
513 #########################################################
514 # System emulator target
515 ifndef CONFIG_USER_ONLY
517 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o migration.o
518 ifdef CONFIG_WIN32
519 OBJS+=block-raw-win32.o
520 else
521 OBJS+=block-raw-posix.o
522 endif
524 LIBS+=-lz
525 ifdef CONFIG_ALSA
526 LIBS += -lasound
527 endif
528 ifdef CONFIG_ESD
529 LIBS += -lesd
530 endif
531 ifdef CONFIG_DSOUND
532 LIBS += -lole32 -ldxguid
533 endif
534 ifdef CONFIG_FMOD
535 LIBS += $(CONFIG_FMOD_LIB)
536 endif
538 SOUND_HW = sb16.o es1370.o
539 ifdef CONFIG_AC97
540 SOUND_HW += ac97.o
541 endif
542 ifdef CONFIG_ADLIB
543 SOUND_HW += fmopl.o adlib.o
544 endif
545 ifdef CONFIG_GUS
546 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
547 endif
549 ifdef CONFIG_KVM_KERNEL_INC
550 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
551 LIBS += -lkvm
552 DEPLIBS += ../libkvm/libkvm.a
553 endif
555 ifdef CONFIG_VNC_TLS
556 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
557 LIBS += $(CONFIG_VNC_TLS_LIBS)
558 endif
560 # SCSI layer
561 OBJS+= lsi53c895a.o esp.o
563 # USB layer
564 OBJS+= usb-ohci.o
566 # EEPROM emulation
567 OBJS += eeprom93xx.o
569 # PCI network cards
570 OBJS += eepro100.o
571 OBJS += ne2000.o
572 OBJS += pcnet.o
573 OBJS += rtl8139.o
574 OBJS += e1000.o
576 # PCI Hypercall
577 OBJS+= hypercall.o
579 # virtio devices
580 OBJS += virtio.o virtio-net.o virtio-blk.o
582 OBJS += device-hotplug.o
584 ifeq ($(TARGET_BASE_ARCH), i386)
585 # Hardware support
586 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
587 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
588 OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
589 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o extboot.o
590 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
591 endif
592 ifeq ($(TARGET_BASE_ARCH), ia64)
593 # Hardware support
594 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
595 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
596 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
597 OBJS+= usb-uhci.o smbus_eeprom.o
598 endif
599 ifeq ($(TARGET_BASE_ARCH), ppc)
600 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
601 # shared objects
602 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
603 OBJS+= cirrus_vga.o
604 # PREP target
605 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
606 OBJS+= prep_pci.o ppc_prep.o
607 # Mac shared devices
608 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
609 # OldWorld PowerMac
610 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
611 # NewWorld PowerMac
612 OBJS+= unin_pci.o ppc_chrp.o
613 # PowerPC 4xx boards
614 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
615 OBJS+= ppc440.o ppc440_bamboo.o
616 endif
617 ifeq ($(TARGET_BASE_ARCH), mips)
618 OBJS+= mips_r4k.o mips_malta.o mips_pica61.o mips_mipssim.o
619 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o
620 OBJS+= jazz_led.o
621 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
622 OBJS+= piix_pci.o parallel.o cirrus_vga.o $(SOUND_HW)
623 OBJS+= mipsnet.o
624 OBJS+= pflash_cfi01.o
625 CPPFLAGS += -DHAS_AUDIO
626 endif
627 ifeq ($(TARGET_BASE_ARCH), cris)
628 OBJS+= etraxfs.o
629 OBJS+= ptimer.o
630 OBJS+= etraxfs_timer.o
631 OBJS+= etraxfs_ser.o
632 endif
633 ifeq ($(TARGET_BASE_ARCH), sparc)
634 ifeq ($(TARGET_ARCH), sparc64)
635 OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
636 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
637 OBJS+= cirrus_vga.o parallel.o ptimer.o
638 else
639 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
640 OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
641 OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
642 endif
643 endif
644 ifeq ($(TARGET_BASE_ARCH), arm)
645 OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
646 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
647 OBJS+= versatile_pci.o ptimer.o
648 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
649 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
650 OBJS+= pl061.o
651 OBJS+= arm-semi.o
652 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
653 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
654 OBJS+= pflash_cfi01.o gumstix.o
655 OBJS+= spitz.o ide.o serial.o nand.o ecc.o
656 OBJS+= omap.o omap_lcdc.o omap1_clk.o omap_mmc.o omap_i2c.o
657 OBJS+= palm.o tsc210x.o
658 OBJS+= mst_fpga.o mainstone.o
659 CPPFLAGS += -DHAS_AUDIO
660 endif
661 ifeq ($(TARGET_BASE_ARCH), sh4)
662 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
663 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
664 endif
665 ifeq ($(TARGET_BASE_ARCH), m68k)
666 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
667 OBJS+= m68k-semi.o dummy_m68k.o
668 endif
669 ifdef CONFIG_GDBSTUB
670 OBJS+=gdbstub.o
671 endif
672 ifdef CONFIG_COCOA
673 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
674 ifdef CONFIG_COREAUDIO
675 COCOA_LIBS+=-framework CoreAudio
676 endif
677 endif
678 ifdef CONFIG_SLIRP
679 CPPFLAGS+=-I$(SRC_PATH)/slirp
680 endif
682 LIBS+=$(AIOLIBS)
683 # specific flags are needed for non soft mmu emulator
684 ifdef CONFIG_STATIC
685 LDFLAGS+=-static
686 endif
687 ifndef CONFIG_DARWIN
688 ifndef CONFIG_WIN32
689 ifndef CONFIG_SOLARIS
690 LIBS+=-lutil
691 endif
692 endif
693 endif
694 ifdef TARGET_GPROF
695 vl.o: CFLAGS+=-p
696 LDFLAGS+=-p
697 endif
699 ifeq ($(ARCH),ia64)
700 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
701 endif
703 ifdef CONFIG_WIN32
704 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
705 endif
707 # profiling code
708 ifdef TARGET_GPROF
709 LDFLAGS+=-p
710 main.o: CFLAGS+=-p
711 endif
712 ifeq ($(TARGET_ARCH), ia64)
713 firmware.o: firmware.c
714         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
715 endif
717 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
718         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS)
720 endif # !CONFIG_USER_ONLY
722 %.o: %.c
723         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
725 %.o: %.S
726         $(CC) $(CPPFLAGS) -c -o $@ $<
728 clean:
729         rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
730         rm -f *.d */*.d tcg/*.o
732 install: all
733 ifneq ($(PROGS),)
734         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
735 endif
737 # Include automatically generated dependency files
738 -include $(wildcard *.d */*.d)