Remove duplicated inclusion of signal.h in qemu-kvm.h
[qemu-kvm/fedora.git] / Makefile.target
blob54480e41996bdc7f60a6d13157979bee67f6f272
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 -MT $@ -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 # op.c and helper.c need this on 32-bit x86 system to avoid
107 # a compiler spill error. This can probably go away
108 # once the SSE ops have been converted to TCG
109 ifeq ($(HAVE_GT_GCC_3_3), true)
110 I386_CFLAGS=-march=i586 -mtune=i686
111 endif
112 endif
114 ifeq ($(ARCH),ppc)
115 CPPFLAGS+= -D__powerpc__
116 OP_CFLAGS+= -mlongcall
117 endif
119 ifeq ($(ARCH),sparc)
120   CFLAGS+=-ffixed-g2 -ffixed-g3
121   OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
122   ifeq ($(CONFIG_SOLARIS),yes)
123     OP_CFLAGS+=-fno-omit-frame-pointer
124   else
125     CFLAGS+=-ffixed-g1 -ffixed-g6
126     HELPER_CFLAGS+=-ffixed-i0
127   endif
128 endif
130 ifeq ($(ARCH),sparc64)
131   CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
132   OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
133   ifneq ($(CONFIG_SOLARIS),yes)
134     OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
135   endif
136 endif
138 ifeq ($(ARCH),alpha)
139 # -msmall-data is not used for OP_CFLAGS because we want two-instruction
140 # relocations for the constant constructions
141 # Ensure there's only a single GP
142 CFLAGS+=-msmall-data
143 endif
145 ifeq ($(ARCH),hppa)
146 OP_CFLAGS=-O1 -fno-delayed-branch
147 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
148 endif
150 ifeq ($(ARCH),ia64)
151 CFLAGS+=-mno-sdata
152 OP_CFLAGS+=-mno-sdata
153 endif
155 ifeq ($(ARCH),arm)
156 OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
157 endif
159 ifeq ($(ARCH),m68k)
160 OP_CFLAGS+=-fomit-frame-pointer
161 endif
163 ifeq ($(ARCH),mips)
164 OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
165 endif
167 ifeq ($(ARCH),mips64)
168 OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
169 endif
171 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
172 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
173 OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
175 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__user=
176 LIBS+=-lm
177 ifdef CONFIG_WIN32
178 LIBS+=-lwinmm -lws2_32 -liphlpapi
179 endif
180 ifdef CONFIG_SOLARIS
181 LIBS+=-lsocket -lnsl -lresolv
182 ifdef NEEDS_LIBSUNMATH
183 LIBS+=-lsunmath
184 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
185 OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
186 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
187 endif
188 endif
190 all: $(PROGS)
192 #########################################################
193 # cpu emulator library
194 LIBOBJS=exec.o kqemu.o cpu-exec.o host-utils.o
196 ifeq ($(NO_CPU_EMULATION), 1)
197 LIBOBJS+=fake-exec.o
198 else
199 LIBOBJS+= translate-all.o translate.o
200 endif
201 ifdef CONFIG_DYNGEN_OP
202 LIBOBJS+=op.o
203 endif
204 # TCG code generator
205 ifneq ($(TARGET_ARCH), ia64)
206 LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
207 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
208 endif
209 ifeq ($(ARCH),sparc64)
210 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
211 endif
213 ifeq ($(USE_KVM), 1)
214 LIBOBJS+=qemu-kvm.o kvm-compatfd.o
215 endif
216 ifdef CONFIG_SOFTFLOAT
217 LIBOBJS+=fpu/softfloat.o
218 else
219 LIBOBJS+=fpu/softfloat-native.o
220 endif
221 CPPFLAGS+=-I$(SRC_PATH)/fpu
223 ifeq ($(TARGET_ARCH), i386)
224 LIBOBJS+=helper.o
225 ifeq ($(USE_KVM), 1)
226 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
227 LIBOBJS+=qemu-kvm-helper.o
228 endif
229 endif
231 ifeq ($(TARGET_ARCH), x86_64)
232 LIBOBJS+=helper.o
233 ifeq ($(USE_KVM), 1)
234 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
235 LIBOBJS+=qemu-kvm-helper.o
236 endif
237 endif
239 ifeq ($(TARGET_BASE_ARCH), ppc)
240 ifeq ($(USE_KVM), 1)
241 LIBOBJS+= qemu-kvm-powerpc.o
242 endif
243 endif
245 LIBOBJS+= op_helper.o
247 ifneq ($(TARGET_ARCH), ia64)
248 LIBOBJS+= helper.o
249 endif
251 ifeq ($(TARGET_BASE_ARCH), arm)
252 LIBOBJS+= neon_helper.o iwmmxt_helper.o
253 endif
255 ifeq ($(TARGET_BASE_ARCH), alpha)
256 LIBOBJS+= alpha_palcode.o
257 endif
259 ifeq ($(TARGET_BASE_ARCH), ia64)
260 LIBOBJS+=op_helper.o firmware.o
261 ifeq ($(USE_KVM), 1)
262 LIBOBJS+=qemu-kvm-ia64.o
263 endif
264 endif
266 ifeq ($(TARGET_BASE_ARCH), cris)
267 LIBOBJS+= cris-dis.o
269 ifndef CONFIG_USER_ONLY
270 LIBOBJS+= mmu.o
271 endif
272 endif
275 # NOTE: the disassembler code is only needed for debugging
276 LIBOBJS+=disas.o
277 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
278 USE_I386_DIS=y
279 endif
280 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
281 USE_I386_DIS=y
282 endif
283 ifdef USE_I386_DIS
284 LIBOBJS+=i386-dis.o
285 endif
286 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
287 LIBOBJS+=alpha-dis.o
288 endif
289 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
290 LIBOBJS+=ppc-dis.o
291 endif
292 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
293 LIBOBJS+=mips-dis.o
294 endif
295 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
296 LIBOBJS+=sparc-dis.o
297 endif
298 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
299 LIBOBJS+=arm-dis.o
300 endif
301 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
302 LIBOBJS+=m68k-dis.o
303 endif
304 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
305 LIBOBJS+=sh4-dis.o
306 endif
307 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
308 LIBOBJS+=hppa-dis.o
309 endif
310 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
311 LIBOBJS+=s390-dis.o
312 endif
314 # libqemu
316 ifdef CONFIG_DYNGEN_OP
317 OPC_H = gen-op.h dyngen-opc.h op.h
318 endif
320 libqemu.a: $(LIBOBJS)
321         rm -f $@
322         $(AR) rcs $@ $(LIBOBJS)
324 translate.o: translate.c cpu.h $(OPC_H)
326 translate-all.o: translate-all.c cpu.h $(OPC_H)
328 tcg/tcg.o: cpu.h $(OPC_H)
330 tcg/tcg-dyngen.o: $(OPC_H)
332 tcg/tcg-runtime.o: $(OPC_H)
334 op.h: op.o $(DYNGEN)
335         $(DYNGEN) -o $@ $<
337 dyngen-opc.h: op.o $(DYNGEN)
338         $(DYNGEN) -c -o $@ $<
340 gen-op.h: op.o $(DYNGEN)
341         $(DYNGEN) -g -o $@ $<
343 op.o: op.c
344         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $<
346 machine.o: machine.c
347         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
349 # HELPER_CFLAGS is used for all the code compiled with static register
350 # variables
351 op_helper.o: op_helper.c
352         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $<
354 cpu-exec.o: cpu-exec.c $(OPC_H)
355         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
357 qemu-kvm-helper.o: qemu-kvm-helper.c
358         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
360 #########################################################
361 # Linux user emulator target
363 ifdef CONFIG_LINUX_USER
365 ifndef TARGET_ABI_DIR
366   TARGET_ABI_DIR=$(TARGET_ARCH)
367 endif
368 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
369 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
371 ifdef CONFIG_STATIC
372 LDFLAGS+=-static
373 endif
375 ifeq ($(ARCH),i386)
376 ifdef TARGET_GPROF
377 USE_I386_LD=y
378 endif
379 ifdef CONFIG_STATIC
380 USE_I386_LD=y
381 endif
382 ifdef USE_I386_LD
383 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
384 else
385 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
386 # that the kernel ELF loader considers as an executable. I think this
387 # is the simplest way to make it self virtualizable!
388 LDFLAGS+=-Wl,-shared
389 endif
390 endif
392 ifeq ($(ARCH),x86_64)
393 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
394 endif
396 ifeq ($(ARCH),ppc)
397 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
398 endif
400 ifeq ($(ARCH),s390)
401 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
402 endif
404 ifeq ($(ARCH),sparc)
405 # -static is used to avoid g1/g3 usage by the dynamic linker    
406 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
407 endif
409 ifeq ($(ARCH),sparc64)
410 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
411 endif
413 ifeq ($(ARCH),alpha)
414 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
415 endif
417 ifeq ($(ARCH),ia64)
418 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
419 endif
421 ifeq ($(ARCH),arm)
422 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
423 endif
425 ifeq ($(ARCH),m68k)
426 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
427 endif
429 ifeq ($(ARCH),mips)
430 ifeq ($(WORDS_BIGENDIAN),yes)
431 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
432 else
433 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
434 endif
435 endif
437 ifeq ($(ARCH),mips64)
438 ifeq ($(WORDS_BIGENDIAN),yes)
439 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
440 else
441 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
442 endif
443 endif
445 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
446       elfload.o linuxload.o uaccess.o
447 LIBS+= $(AIOLIBS)
448 ifdef TARGET_HAS_BFLT
449 OBJS+= flatload.o
450 endif
451 ifdef TARGET_HAS_ELFLOAD32
452 OBJS+= elfload32.o
453 elfload32.o: elfload.c
454 endif
456 ifeq ($(TARGET_ARCH), i386)
457 OBJS+= vm86.o
458 endif
459 ifeq ($(TARGET_ARCH), arm)
460 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
461 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
462  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
463 endif
464 ifeq ($(TARGET_ARCH), m68k)
465 OBJS+= m68k-sim.o m68k-semi.o
466 endif
468 ifdef CONFIG_GDBSTUB
469 OBJS+=gdbstub.o
470 endif
472 OBJS+= libqemu.a
474 # Note: this is a workaround. The real fix is to avoid compiling
475 # cpu_signal_handler() in cpu-exec.c.
476 signal.o: signal.c
477         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
479 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
480         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
481 ifeq ($(ARCH),alpha)
482 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
483 # the address space (31 bit so sign extending doesn't matter)
484         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
485 endif
487 endif #CONFIG_LINUX_USER
489 #########################################################
490 # Darwin user emulator target
492 ifdef CONFIG_DARWIN_USER
494 VPATH+=:$(SRC_PATH)/darwin-user
495 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
497 # Leave some space for the regular program loading zone
498 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
500 LIBS+=-lmx
502 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
504 OBJS+= libqemu.a
506 ifdef CONFIG_GDBSTUB
507 OBJS+=gdbstub.o
508 endif
510 # Note: this is a workaround. The real fix is to avoid compiling
511 # cpu_signal_handler() in cpu-exec.c.
512 signal.o: signal.c
513         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
515 $(QEMU_PROG): $(OBJS)
516         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
518 endif #CONFIG_DARWIN_USER
520 #########################################################
521 # System emulator target
522 ifndef CONFIG_USER_ONLY
524 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o migration.o
525 ifdef CONFIG_WIN32
526 OBJS+=block-raw-win32.o
527 else
528 OBJS+=block-raw-posix.o
529 endif
531 LIBS+=-lz
532 ifdef CONFIG_ALSA
533 LIBS += -lasound
534 endif
535 ifdef CONFIG_ESD
536 LIBS += -lesd
537 endif
538 ifdef CONFIG_PA
539 LIBS += -lpulse-simple
540 endif
541 ifdef CONFIG_DSOUND
542 LIBS += -lole32 -ldxguid
543 endif
544 ifdef CONFIG_FMOD
545 LIBS += $(CONFIG_FMOD_LIB)
546 endif
548 SOUND_HW = sb16.o es1370.o
549 ifdef CONFIG_AC97
550 SOUND_HW += ac97.o
551 endif
552 ifdef CONFIG_ADLIB
553 SOUND_HW += fmopl.o adlib.o
554 endif
555 ifdef CONFIG_GUS
556 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
557 endif
558 ifdef CONFIG_CS4231A
559 SOUND_HW += cs4231a.o
560 endif
562 ifdef CONFIG_KVM_KERNEL_INC
563 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
564 LIBS += -lkvm
565 DEPLIBS += ../libkvm/libkvm.a
566 endif
568 ifdef CONFIG_VNC_TLS
569 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
570 LIBS += $(CONFIG_VNC_TLS_LIBS)
571 endif
573 ifdef CONFIG_LIBFDT
574 LIBS += -lfdt
575 DEPLIBS += libfdt.a
576 endif
578 # SCSI layer
579 OBJS+= lsi53c895a.o esp.o
581 # USB layer
582 OBJS+= usb-ohci.o
584 # EEPROM emulation
585 OBJS += eeprom93xx.o
587 # PCI network cards
588 OBJS += eepro100.o
589 OBJS += ne2000.o
590 OBJS += pcnet.o
591 OBJS += rtl8139.o
592 OBJS += e1000.o
594 # virtio devices
595 OBJS += virtio.o virtio-net.o virtio-blk.o
597 OBJS += device-hotplug.o
599 ifeq ($(TARGET_BASE_ARCH), i386)
600 # Hardware support
601 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
602 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
603 OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
604 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o extboot.o
605 ifeq ($(USE_KVM_PIT), 1)
606 OBJS+= i8254-kvm.o
607 endif
608 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
609 endif
610 ifeq ($(TARGET_BASE_ARCH), ia64)
611 # Hardware support
612 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
613 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
614 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
615 OBJS+= usb-uhci.o smbus_eeprom.o
616 endif
617 ifeq ($(TARGET_BASE_ARCH), ppc)
618 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
619 # shared objects
620 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
621 OBJS+= cirrus_vga.o
622 # PREP target
623 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
624 OBJS+= prep_pci.o ppc_prep.o
625 # Mac shared devices
626 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
627 # OldWorld PowerMac
628 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
629 # NewWorld PowerMac
630 OBJS+= unin_pci.o ppc_chrp.o
631 # PowerPC 4xx boards
632 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
633 OBJS+= ppc440.o ppc440_bamboo.o device_tree.o
634 endif
635 ifeq ($(TARGET_BASE_ARCH), mips)
636 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
637 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
638 OBJS+= g364fb.o jazz_led.o
639 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
640 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
641 OBJS+= mipsnet.o
642 OBJS+= pflash_cfi01.o
643 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
644 endif
645 ifeq ($(TARGET_BASE_ARCH), cris)
646 OBJS+= etraxfs.o
647 OBJS+= etraxfs_dma.o
648 OBJS+= etraxfs_pic.o
649 OBJS+= etraxfs_eth.o
650 OBJS+= etraxfs_timer.o
651 OBJS+= etraxfs_ser.o
653 OBJS+= ptimer.o
654 OBJS+= pflash_cfi02.o
655 endif
656 ifeq ($(TARGET_BASE_ARCH), sparc)
657 ifeq ($(TARGET_ARCH), sparc64)
658 OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
659 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
660 OBJS+= cirrus_vga.o parallel.o ptimer.o
661 else
662 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
663 OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
664 OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
665 endif
666 endif
667 ifeq ($(TARGET_BASE_ARCH), arm)
668 OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
669 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
670 OBJS+= versatile_pci.o ptimer.o
671 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
672 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
673 OBJS+= pl061.o
674 OBJS+= arm-semi.o
675 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
676 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
677 OBJS+= pflash_cfi01.o gumstix.o
678 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
679 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
680 OBJS+= omap2.o omap_dss.o
681 OBJS+= palm.o tsc210x.o
682 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
683 OBJS+= tsc2005.o
684 OBJS+= mst_fpga.o mainstone.o
685 OBJS+= musicpal.o pflash_cfi02.o
686 CPPFLAGS += -DHAS_AUDIO
687 endif
688 ifeq ($(TARGET_BASE_ARCH), sh4)
689 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
690 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
691 endif
692 ifeq ($(TARGET_BASE_ARCH), m68k)
693 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
694 OBJS+= m68k-semi.o dummy_m68k.o
695 endif
696 ifdef CONFIG_GDBSTUB
697 OBJS+=gdbstub.o
698 endif
699 ifdef CONFIG_COCOA
700 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
701 ifdef CONFIG_COREAUDIO
702 COCOA_LIBS+=-framework CoreAudio
703 endif
704 endif
705 ifdef CONFIG_SLIRP
706 CPPFLAGS+=-I$(SRC_PATH)/slirp
707 endif
709 LIBS+=$(AIOLIBS)
710 # specific flags are needed for non soft mmu emulator
711 ifdef CONFIG_STATIC
712 LDFLAGS+=-static
713 endif
714 ifndef CONFIG_DARWIN
715 ifndef CONFIG_WIN32
716 ifndef CONFIG_SOLARIS
717 LIBS+=-lutil
718 endif
719 endif
720 endif
721 ifdef TARGET_GPROF
722 vl.o: CFLAGS+=-p
723 LDFLAGS+=-p
724 endif
726 ifeq ($(ARCH),ia64)
727 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
728 endif
730 ifdef CONFIG_WIN32
731 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
732 endif
734 # profiling code
735 ifdef TARGET_GPROF
736 LDFLAGS+=-p
737 main.o: CFLAGS+=-p
738 endif
739 ifeq ($(TARGET_ARCH), ia64)
740 firmware.o: firmware.c
741         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
742 endif
744 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
745         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS)
747 endif # !CONFIG_USER_ONLY
749 %.o: %.c
750         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
752 %.o: %.S
753         $(CC) $(CPPFLAGS) -c -o $@ $<
755 clean:
756         rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
757         rm -f *.d */*.d tcg/*.o
759 install: all
760 ifneq ($(PROGS),)
761         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
762 endif
764 # Include automatically generated dependency files
765 -include $(wildcard *.d */*.d)