kvm: bios: read UUID from firmware interface
[qemu-kvm/fedora.git] / Makefile.target
blobd9bdecac1fcb3ebb39416a4735bdcce3bc669a48
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 := -O2 -g -fno-strict-aliasing
84 OP_CFLAGS += -Wall -Wundef -Wendif-labels -Wwrite-strings
86 # cc-option
87 # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
89 cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
90               > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
92 OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
93 OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
94 OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
95 OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
96 OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
97 OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
98 OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
99 OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
100 OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
102 HELPER_CFLAGS=
104 ifeq ($(ARCH),i386)
105 HELPER_CFLAGS+=-fomit-frame-pointer
106 OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
107 # op.c and helper.c need this on 32-bit x86 system to avoid
108 # a compiler spill error. This can probably go away
109 # once the SSE ops have been converted to TCG
110 ifeq ($(HAVE_GT_GCC_3_3), true)
111 I386_CFLAGS=-march=i586 -mtune=i686
112 endif
113 endif
115 ifeq ($(ARCH),ppc)
116 CPPFLAGS+= -D__powerpc__
117 OP_CFLAGS+= -mlongcall
118 endif
120 ifeq ($(ARCH),sparc)
121   CFLAGS+=-ffixed-g2 -ffixed-g3
122   OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
123   ifeq ($(CONFIG_SOLARIS),yes)
124     OP_CFLAGS+=-fno-omit-frame-pointer
125   else
126     CFLAGS+=-ffixed-g1 -ffixed-g6
127     HELPER_CFLAGS+=-ffixed-i0
128   endif
129 endif
131 ifeq ($(ARCH),sparc64)
132   OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
133   ifneq ($(CONFIG_SOLARIS),yes)
134     CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
135     OP_CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
136   else
137     CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
138   endif
139 endif
141 ifeq ($(ARCH),alpha)
142 # -msmall-data is not used for OP_CFLAGS because we want two-instruction
143 # relocations for the constant constructions
144 # Ensure there's only a single GP
145 CFLAGS+=-msmall-data
146 endif
148 ifeq ($(ARCH),hppa)
149 OP_CFLAGS=-O1 -fno-delayed-branch
150 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
151 endif
153 ifeq ($(ARCH),ia64)
154 CFLAGS+=-mno-sdata
155 OP_CFLAGS+=-mno-sdata
156 endif
158 ifeq ($(ARCH),arm)
159 OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
160 endif
162 ifeq ($(ARCH),m68k)
163 OP_CFLAGS+=-fomit-frame-pointer
164 endif
166 ifeq ($(ARCH),mips)
167 OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
168 endif
170 ifeq ($(ARCH),mips64)
171 OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
172 endif
174 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
175 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
176 OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
178 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__user=
179 LIBS+=-lm
180 ifdef CONFIG_WIN32
181 LIBS+=-lwinmm -lws2_32 -liphlpapi
182 endif
183 ifdef CONFIG_SOLARIS
184 LIBS+=-lsocket -lnsl -lresolv
185 ifdef NEEDS_LIBSUNMATH
186 LIBS+=-lsunmath
187 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
188 OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
189 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
190 endif
191 endif
193 all: $(PROGS)
195 #########################################################
196 # cpu emulator library
197 LIBOBJS=exec.o kqemu.o cpu-exec.o host-utils.o
199 ifeq ($(NO_CPU_EMULATION), 1)
200 LIBOBJS+=fake-exec.o
201 else
202 LIBOBJS+= translate-all.o translate.o
203 endif
204 ifdef CONFIG_DYNGEN_OP
205 LIBOBJS+=op.o
206 endif
207 # TCG code generator
208 ifneq ($(TARGET_ARCH), ia64)
209 LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
210 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
211 endif
212 ifeq ($(ARCH),sparc64)
213 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
214 endif
216 ifeq ($(USE_KVM), 1)
217 LIBOBJS+=qemu-kvm.o
218 endif
219 ifdef CONFIG_SOFTFLOAT
220 LIBOBJS+=fpu/softfloat.o
221 else
222 LIBOBJS+=fpu/softfloat-native.o
223 endif
224 CPPFLAGS+=-I$(SRC_PATH)/fpu
226 ifeq ($(TARGET_ARCH), i386)
227 LIBOBJS+=helper.o
228 ifeq ($(USE_KVM), 1)
229 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
230 LIBOBJS+=qemu-kvm-helper.o
231 endif
232 endif
234 ifeq ($(TARGET_ARCH), x86_64)
235 LIBOBJS+=helper.o
236 ifeq ($(USE_KVM), 1)
237 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
238 LIBOBJS+=qemu-kvm-helper.o
239 endif
240 endif
242 ifeq ($(TARGET_BASE_ARCH), ppc)
243 ifeq ($(USE_KVM), 1)
244 LIBOBJS+= qemu-kvm-powerpc.o
245 endif
246 endif
248 LIBOBJS+= op_helper.o
250 ifneq ($(TARGET_ARCH), ia64)
251 LIBOBJS+= helper.o
252 endif
254 ifeq ($(TARGET_BASE_ARCH), arm)
255 LIBOBJS+= neon_helper.o iwmmxt_helper.o
256 endif
258 ifeq ($(TARGET_BASE_ARCH), alpha)
259 LIBOBJS+= alpha_palcode.o
260 endif
262 ifeq ($(TARGET_BASE_ARCH), ia64)
263 LIBOBJS+=op_helper.o firmware.o
264 ifeq ($(USE_KVM), 1)
265 LIBOBJS+=qemu-kvm-ia64.o
266 endif
267 endif
269 ifeq ($(TARGET_BASE_ARCH), cris)
270 LIBOBJS+= cris-dis.o
272 ifndef CONFIG_USER_ONLY
273 LIBOBJS+= mmu.o
274 endif
275 endif
278 # NOTE: the disassembler code is only needed for debugging
279 LIBOBJS+=disas.o
280 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
281 USE_I386_DIS=y
282 endif
283 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
284 USE_I386_DIS=y
285 endif
286 ifdef USE_I386_DIS
287 LIBOBJS+=i386-dis.o
288 endif
289 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
290 LIBOBJS+=alpha-dis.o
291 endif
292 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
293 LIBOBJS+=ppc-dis.o
294 endif
295 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
296 LIBOBJS+=mips-dis.o
297 endif
298 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
299 LIBOBJS+=sparc-dis.o
300 endif
301 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
302 LIBOBJS+=arm-dis.o
303 endif
304 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
305 LIBOBJS+=m68k-dis.o
306 endif
307 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
308 LIBOBJS+=sh4-dis.o
309 endif
310 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
311 LIBOBJS+=hppa-dis.o
312 endif
313 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
314 LIBOBJS+=s390-dis.o
315 endif
317 # libqemu
319 ifdef CONFIG_DYNGEN_OP
320 OPC_H = gen-op.h dyngen-opc.h op.h
321 endif
323 libqemu.a: $(LIBOBJS)
324         rm -f $@
325         $(AR) rcs $@ $(LIBOBJS)
327 translate.o: translate.c cpu.h $(OPC_H)
329 translate-all.o: translate-all.c cpu.h $(OPC_H)
331 tcg/tcg.o: cpu.h $(OPC_H)
333 tcg/tcg-dyngen.o: $(OPC_H)
335 tcg/tcg-runtime.o: $(OPC_H)
337 op.h: op.o $(DYNGEN)
338         $(DYNGEN) -o $@ $<
340 dyngen-opc.h: op.o $(DYNGEN)
341         $(DYNGEN) -c -o $@ $<
343 gen-op.h: op.o $(DYNGEN)
344         $(DYNGEN) -g -o $@ $<
346 op.o: op.c
347         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $<
349 machine.o: machine.c
350         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
352 # HELPER_CFLAGS is used for all the code compiled with static register
353 # variables
354 op_helper.o: op_helper.c
355         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $<
357 cpu-exec.o: cpu-exec.c $(OPC_H)
358         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
360 qemu-kvm-helper.o: qemu-kvm-helper.c
361         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
363 #########################################################
364 # Linux user emulator target
366 ifdef CONFIG_LINUX_USER
368 ifndef TARGET_ABI_DIR
369   TARGET_ABI_DIR=$(TARGET_ARCH)
370 endif
371 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
372 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
374 ifdef CONFIG_STATIC
375 LDFLAGS+=-static
376 endif
378 ifeq ($(ARCH),i386)
379 ifdef TARGET_GPROF
380 USE_I386_LD=y
381 endif
382 ifdef CONFIG_STATIC
383 USE_I386_LD=y
384 endif
385 ifdef USE_I386_LD
386 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
387 else
388 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
389 # that the kernel ELF loader considers as an executable. I think this
390 # is the simplest way to make it self virtualizable!
391 LDFLAGS+=-Wl,-shared
392 endif
393 endif
395 ifeq ($(ARCH),x86_64)
396 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
397 endif
399 ifeq ($(ARCH),ppc)
400 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
401 endif
403 ifeq ($(ARCH),ppc64)
404 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
405 endif
407 ifeq ($(ARCH),s390)
408 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
409 endif
411 ifeq ($(ARCH),sparc)
412 # -static is used to avoid g1/g3 usage by the dynamic linker    
413 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
414 endif
416 ifeq ($(ARCH),sparc64)
417 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
418 endif
420 ifeq ($(ARCH),alpha)
421 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
422 endif
424 ifeq ($(ARCH),ia64)
425 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
426 endif
428 ifeq ($(ARCH),arm)
429 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
430 endif
432 ifeq ($(ARCH),m68k)
433 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
434 endif
436 ifeq ($(ARCH),mips)
437 ifeq ($(WORDS_BIGENDIAN),yes)
438 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
439 else
440 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
441 endif
442 endif
444 ifeq ($(ARCH),mips64)
445 ifeq ($(WORDS_BIGENDIAN),yes)
446 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
447 else
448 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
449 endif
450 endif
452 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
453       elfload.o linuxload.o uaccess.o
454 LIBS+= $(AIOLIBS)
455 ifdef TARGET_HAS_BFLT
456 OBJS+= flatload.o
457 endif
458 ifdef TARGET_HAS_ELFLOAD32
459 OBJS+= elfload32.o
460 elfload32.o: elfload.c
461 endif
463 ifeq ($(TARGET_ARCH), i386)
464 OBJS+= vm86.o
465 endif
466 ifeq ($(TARGET_ARCH), arm)
467 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
468 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
469  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
470 endif
471 ifeq ($(TARGET_ARCH), m68k)
472 OBJS+= m68k-sim.o m68k-semi.o
473 endif
475 ifdef CONFIG_GDBSTUB
476 OBJS+=gdbstub.o gdbstub-xml.o
477 endif
479 OBJS+= libqemu.a
481 # Note: this is a workaround. The real fix is to avoid compiling
482 # cpu_signal_handler() in cpu-exec.c.
483 signal.o: signal.c
484         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
486 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
487         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
488 ifeq ($(ARCH),alpha)
489 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
490 # the address space (31 bit so sign extending doesn't matter)
491         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
492 endif
494 endif #CONFIG_LINUX_USER
496 #########################################################
497 # Darwin user emulator target
499 ifdef CONFIG_DARWIN_USER
501 VPATH+=:$(SRC_PATH)/darwin-user
502 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
504 # Leave some space for the regular program loading zone
505 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
507 LIBS+=-lmx
509 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
511 OBJS+= libqemu.a
513 ifdef CONFIG_GDBSTUB
514 OBJS+=gdbstub.o gdbstub-xml.o
515 endif
517 # Note: this is a workaround. The real fix is to avoid compiling
518 # cpu_signal_handler() in cpu-exec.c.
519 signal.o: signal.c
520         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
522 $(QEMU_PROG): $(OBJS)
523         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
525 endif #CONFIG_DARWIN_USER
527 #########################################################
528 # System emulator target
529 ifndef CONFIG_USER_ONLY
531 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o net-checksum.o
532 OBJS+=fw_cfg.o aio.o buffered_file.o migration.o migration-tcp.o
533 ifdef CONFIG_WIN32
534 OBJS+=block-raw-win32.o
535 else
536 OBJS+=block-raw-posix.o
537 endif
539 ifdef CONFIG_AIO
540 OBJS+=compatfd.o
541 endif
543 LIBS+=-lz
544 ifdef CONFIG_ALSA
545 LIBS += -lasound
546 endif
547 ifdef CONFIG_ESD
548 LIBS += -lesd
549 endif
550 ifdef CONFIG_PA
551 LIBS += -lpulse-simple
552 endif
553 ifdef CONFIG_DSOUND
554 LIBS += -lole32 -ldxguid
555 endif
556 ifdef CONFIG_FMOD
557 LIBS += $(CONFIG_FMOD_LIB)
558 endif
559 ifdef CONFIG_OSS
560 LIBS += $(CONFIG_OSS_LIB)
561 endif
563 SOUND_HW = sb16.o es1370.o
564 ifdef CONFIG_AC97
565 SOUND_HW += ac97.o
566 endif
567 ifdef CONFIG_ADLIB
568 SOUND_HW += fmopl.o adlib.o
569 endif
570 ifdef CONFIG_GUS
571 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
572 endif
573 ifdef CONFIG_CS4231A
574 SOUND_HW += cs4231a.o
575 endif
577 ifdef CONFIG_KVM_KERNEL_INC
578 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
579 LIBS += -lkvm
580 DEPLIBS += ../libkvm/libkvm.a
581 endif
583 ifdef CONFIG_VNC_TLS
584 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
585 LIBS += $(CONFIG_VNC_TLS_LIBS)
586 endif
588 ifdef CONFIG_BLUEZ
589 LIBS += $(CONFIG_BLUEZ_LIBS)
590 endif
592 ifdef CONFIG_LIBFDT
593 LIBS += -lfdt
594 DEPLIBS += ../libfdt/libfdt.a
595 endif
597 # SCSI layer
598 OBJS+= lsi53c895a.o esp.o
600 # USB layer
601 OBJS+= usb-ohci.o
603 # EEPROM emulation
604 OBJS += eeprom93xx.o
606 # PCI network cards
607 OBJS += eepro100.o
608 OBJS += ne2000.o
609 OBJS += pcnet.o
610 OBJS += rtl8139.o
611 OBJS += e1000.o
613 # virtio devices
614 OBJS += virtio.o virtio-net.o virtio-blk.o virtio-balloon.o
616 OBJS += device-hotplug.o
618 ifeq ($(TARGET_BASE_ARCH), i386)
619 # Hardware support
620 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
621 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
622 OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
623 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o extboot.o
624 ifeq ($(USE_KVM_PIT), 1)
625 OBJS+= i8254-kvm.o
626 endif
627 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
628 endif
629 ifeq ($(TARGET_BASE_ARCH), ia64)
630 # Hardware support
631 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
632 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
633 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
634 OBJS+= usb-uhci.o smbus_eeprom.o
635 endif
636 ifeq ($(TARGET_BASE_ARCH), ppc)
637 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
638 # shared objects
639 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
640 OBJS+= cirrus_vga.o
641 # PREP target
642 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
643 OBJS+= prep_pci.o ppc_prep.o
644 # Mac shared devices
645 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
646 # OldWorld PowerMac
647 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
648 # NewWorld PowerMac
649 OBJS+= unin_pci.o ppc_chrp.o
650 # PowerPC 4xx boards
651 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
652 OBJS+= ppc440.o ppc440_bamboo.o device_tree.o
653 endif
654 ifeq ($(TARGET_BASE_ARCH), mips)
655 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
656 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
657 OBJS+= g364fb.o jazz_led.o
658 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
659 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
660 OBJS+= mipsnet.o
661 OBJS+= pflash_cfi01.o
662 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
663 endif
664 ifeq ($(TARGET_BASE_ARCH), cris)
665 OBJS+= etraxfs.o
666 OBJS+= etraxfs_dma.o
667 OBJS+= etraxfs_pic.o
668 OBJS+= etraxfs_eth.o
669 OBJS+= etraxfs_timer.o
670 OBJS+= etraxfs_ser.o
672 OBJS+= ptimer.o
673 OBJS+= pflash_cfi02.o
674 endif
675 ifeq ($(TARGET_BASE_ARCH), sparc)
676 ifeq ($(TARGET_ARCH), sparc64)
677 OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
678 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
679 OBJS+= cirrus_vga.o parallel.o ptimer.o
680 else
681 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
682 OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
683 OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
684 endif
685 endif
686 ifeq ($(TARGET_BASE_ARCH), arm)
687 OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
688 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
689 OBJS+= versatile_pci.o ptimer.o
690 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
691 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
692 OBJS+= pl061.o
693 OBJS+= arm-semi.o
694 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
695 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
696 OBJS+= pflash_cfi01.o gumstix.o
697 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
698 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
699 OBJS+= omap2.o omap_dss.o soc_dma.o
700 OBJS+= palm.o tsc210x.o
701 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
702 OBJS+= tsc2005.o bt-hci-csr.o
703 OBJS+= mst_fpga.o mainstone.o
704 OBJS+= musicpal.o pflash_cfi02.o
705 CPPFLAGS += -DHAS_AUDIO
706 endif
707 ifeq ($(TARGET_BASE_ARCH), sh4)
708 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
709 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
710 endif
711 ifeq ($(TARGET_BASE_ARCH), m68k)
712 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
713 OBJS+= m68k-semi.o dummy_m68k.o
714 endif
715 ifdef CONFIG_GDBSTUB
716 OBJS+=gdbstub.o gdbstub-xml.o
717 endif
718 ifdef CONFIG_COCOA
719 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
720 ifdef CONFIG_COREAUDIO
721 COCOA_LIBS+=-framework CoreAudio
722 endif
723 endif
724 ifdef CONFIG_SLIRP
725 CPPFLAGS+=-I$(SRC_PATH)/slirp
726 endif
728 LIBS+=$(AIOLIBS)
729 # specific flags are needed for non soft mmu emulator
730 ifdef CONFIG_STATIC
731 LDFLAGS+=-static
732 endif
733 ifndef CONFIG_DARWIN
734 ifndef CONFIG_WIN32
735 ifndef CONFIG_SOLARIS
736 LIBS+=-lutil
737 endif
738 endif
739 endif
740 ifdef TARGET_GPROF
741 vl.o: CFLAGS+=-p
742 LDFLAGS+=-p
743 endif
745 ifeq ($(ARCH),ia64)
746 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
747 endif
749 ifdef CONFIG_WIN32
750 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
751 endif
753 # profiling code
754 ifdef TARGET_GPROF
755 LDFLAGS+=-p
756 main.o: CFLAGS+=-p
757 endif
758 ifeq ($(TARGET_ARCH), ia64)
759 firmware.o: firmware.c
760         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
761 endif
763 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(DEPLIBS)
764         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
766 endif # !CONFIG_USER_ONLY
768 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
769         rm -f $@
770 ifeq ($(TARGET_XML_FILES),)
771         echo > $@
772 else
773         $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
774 endif
776 %.o: %.c
777         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
779 %.o: %.S
780         $(CC) $(CPPFLAGS) -c -o $@ $<
782 clean:
783         rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
784         rm -f *.d */*.d tcg/*.o
786 install: all
787 ifneq ($(PROGS),)
788         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
789 endif
791 # Include automatically generated dependency files
792 -include $(wildcard *.d */*.d)