Increment virtio-net savevm version to avoid conflict with upstream QEMU.
[qemu-kvm/fedora.git] / Makefile.target
blobf90b714c687e0f55a8e1dae0e7c0b430d20a67af
1 CFLAGS=
2 LDFLAGS=
4 include config.mak
5 include $(SRC_PATH)/rules.mak
7 LDFLAGS_BASE:=$(LDFLAGS)
8 TARGET_BASE_ARCH:=$(TARGET_ARCH)
9 ifeq ($(TARGET_ARCH), x86_64)
10 TARGET_BASE_ARCH:=i386
11 endif
12 ifeq ($(TARGET_ARCH), mipsn32)
13 TARGET_BASE_ARCH:=mips
14 endif
15 ifeq ($(TARGET_ARCH), mips64)
16 TARGET_BASE_ARCH:=mips
17 endif
18 ifeq ($(TARGET_ARCH), ppc64)
19 TARGET_BASE_ARCH:=ppc
20 endif
21 ifeq ($(TARGET_ARCH), ppc64h)
22 TARGET_BASE_ARCH:=ppc
23 endif
24 ifeq ($(TARGET_ARCH), ppcemb)
25 TARGET_BASE_ARCH:=ppc
26 endif
27 ifeq ($(TARGET_ARCH), sparc64)
28 TARGET_BASE_ARCH:=sparc
29 endif
30 ifeq ($(TARGET_ARCH), ia64)
31 TARGET_BASE_ARCH:=ia64
32 endif
33 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
34 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
35 CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
36 #CFLAGS+=-Werror
37 LIBS=
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 # cc-option
83 # Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0)
85 cc-option = $(shell if $(CC) $(1) $(2) -S -o /dev/null -xc /dev/null \
86               > /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi ;)
88 HELPER_CFLAGS=
90 ifeq ($(ARCH),i386)
91 HELPER_CFLAGS+=-fomit-frame-pointer
92 endif
94 ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
95 translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-time,)
96 endif
98 ifeq ($(ARCH),sparc)
99   ifneq ($(CONFIG_SOLARIS),yes)
100     HELPER_CFLAGS+=-ffixed-i0
101   endif
102 endif
104 ifeq ($(ARCH),alpha)
105 # Ensure there's only a single GP
106 CFLAGS+=-msmall-data
107 endif
109 ifeq ($(ARCH),hppa)
110 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
111 endif
113 ifeq ($(ARCH),ia64)
114 CFLAGS+=-mno-sdata
115 endif
117 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
118 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
120 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__user=
121 LIBS+=-lm
122 ifdef CONFIG_WIN32
123 LIBS+=-lwinmm -lws2_32 -liphlpapi
124 endif
125 ifdef CONFIG_SOLARIS
126 LIBS+=-lsocket -lnsl -lresolv
127 ifdef NEEDS_LIBSUNMATH
128 LIBS+=-lsunmath
129 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
130 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
131 endif
132 endif
134 kvm.o: CFLAGS+=$(KVM_CFLAGS)
135 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
137 CFLAGS += $(KVM_CFLAGS)
139 all: $(PROGS)
141 #########################################################
142 # cpu emulator library
143 ifeq ($(NO_CPU_EMULATION), 1)
144 LIBOBJS=exec.o fake-exec.o cpu-exec.o host-utils.o
145 else
146 LIBOBJS=exec.o translate-all.o cpu-exec.o\
147         translate.o host-utils.o
148 endif
150 ifdef CONFIG_KQEMU
151 LIBOBJS+= kqemu.o
152 endif
153 # TCG code generator
154 ifneq ($(NO_CPU_EMULATION), 1)
155 LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
156 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
157 endif
158 ifeq ($(ARCH),sparc64)
159 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
160 endif
162 ifeq ($(USE_KVM), 1)
163 LIBOBJS+=qemu-kvm.o
164 endif
165 ifdef CONFIG_SOFTFLOAT
166 LIBOBJS+=fpu/softfloat.o
167 else
168 LIBOBJS+=fpu/softfloat-native.o
169 endif
170 CPPFLAGS+=-I$(SRC_PATH)/fpu
171 LIBOBJS+= op_helper.o helper.o
173 ifeq ($(TARGET_ARCH), i386)
174 LIBOBJS+=helper.o
175 ifeq ($(USE_KVM), 1)
176 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
177 LIBOBJS+=qemu-kvm-helper.o
178 endif
179 endif
181 ifeq ($(TARGET_ARCH), x86_64)
182 LIBOBJS+=helper.o
183 ifeq ($(USE_KVM), 1)
184 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
185 LIBOBJS+=qemu-kvm-helper.o
186 endif
187 endif
189 LIBOBJS+= op_helper.o
191 ifneq ($(TARGET_ARCH), ia64)
192 LIBOBJS+= helper.o
193 endif
195 ifeq ($(TARGET_BASE_ARCH), arm)
196 LIBOBJS+= neon_helper.o iwmmxt_helper.o
197 endif
199 ifeq ($(TARGET_BASE_ARCH), alpha)
200 LIBOBJS+= alpha_palcode.o
201 endif
203 ifeq ($(TARGET_BASE_ARCH), ia64)
204 LIBOBJS+=op_helper.o firmware.o
205 ifeq ($(USE_KVM), 1)
206 LIBOBJS+=qemu-kvm-ia64.o
207 endif
208 endif
210 ifeq ($(TARGET_BASE_ARCH), cris)
211 LIBOBJS+= cris-dis.o
213 ifndef CONFIG_USER_ONLY
214 LIBOBJS+= mmu.o
215 endif
216 endif
219 # NOTE: the disassembler code is only needed for debugging
220 LIBOBJS+=disas.o
221 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
222 USE_I386_DIS=y
223 endif
224 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
225 USE_I386_DIS=y
226 endif
227 ifdef USE_I386_DIS
228 LIBOBJS+=i386-dis.o
229 endif
230 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
231 LIBOBJS+=alpha-dis.o
232 endif
233 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
234 LIBOBJS+=ppc-dis.o
235 endif
236 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
237 LIBOBJS+=mips-dis.o
238 endif
239 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
240 LIBOBJS+=sparc-dis.o
241 endif
242 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
243 LIBOBJS+=arm-dis.o
244 endif
245 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
246 LIBOBJS+=m68k-dis.o
247 endif
248 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
249 LIBOBJS+=sh4-dis.o
250 endif
251 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
252 LIBOBJS+=hppa-dis.o
253 endif
254 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
255 LIBOBJS+=s390-dis.o
256 endif
258 # libqemu
260 libqemu.a: $(LIBOBJS)
262 translate.o: translate.c cpu.h
264 translate-all.o: translate-all.c cpu.h
266 tcg/tcg.o: cpu.h
268 # HELPER_CFLAGS is used for all the code compiled with static register
269 # variables
270 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
272 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
274 qemu-kvm-helper.o: qemu-kvm-helper.c
275         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
277 #########################################################
278 # Linux user emulator target
280 ifdef CONFIG_LINUX_USER
282 ifndef TARGET_ABI_DIR
283   TARGET_ABI_DIR=$(TARGET_ARCH)
284 endif
285 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
286 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
288 ifdef CONFIG_STATIC
289 LDFLAGS+=-static
290 endif
292 ifeq ($(ARCH),i386)
293 ifdef TARGET_GPROF
294 USE_I386_LD=y
295 endif
296 ifdef CONFIG_STATIC
297 USE_I386_LD=y
298 endif
299 ifdef USE_I386_LD
300 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
301 else
302 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
303 # that the kernel ELF loader considers as an executable. I think this
304 # is the simplest way to make it self virtualizable!
305 LDFLAGS+=-Wl,-shared
306 endif
307 endif
309 ifeq ($(ARCH),x86_64)
310 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
311 endif
313 ifeq ($(ARCH),ppc)
314 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
315 endif
317 ifeq ($(ARCH),ppc64)
318 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
319 endif
321 ifeq ($(ARCH),s390)
322 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
323 endif
325 ifeq ($(ARCH),sparc)
326 # -static is used to avoid g1/g3 usage by the dynamic linker    
327 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
328 endif
330 ifeq ($(ARCH),sparc64)
331 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
332 endif
334 ifeq ($(ARCH),alpha)
335 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
336 endif
338 ifeq ($(ARCH),ia64)
339 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
340 endif
342 ifeq ($(ARCH),arm)
343 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
344 endif
346 ifeq ($(ARCH),m68k)
347 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
348 endif
350 ifeq ($(ARCH),mips)
351 ifeq ($(WORDS_BIGENDIAN),yes)
352 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
353 else
354 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
355 endif
356 endif
358 ifeq ($(ARCH),mips64)
359 ifeq ($(WORDS_BIGENDIAN),yes)
360 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
361 else
362 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
363 endif
364 endif
366 # profiling code
367 ifdef TARGET_GPROF
368 LDFLAGS+=-p
369 CFLAGS+=-p
370 endif
372 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
373       elfload.o linuxload.o uaccess.o envlist.o
374 LIBS+= $(AIOLIBS)
375 ifdef TARGET_HAS_BFLT
376 OBJS+= flatload.o
377 endif
378 ifdef TARGET_HAS_ELFLOAD32
379 OBJS+= elfload32.o
380 elfload32.o: elfload.c
381 endif
383 ifeq ($(TARGET_ARCH), i386)
384 OBJS+= vm86.o
385 endif
386 ifeq ($(TARGET_ARCH), arm)
387 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
388 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
389  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
390 endif
391 ifeq ($(TARGET_ARCH), m68k)
392 OBJS+= m68k-sim.o m68k-semi.o
393 endif
395 ifdef CONFIG_GDBSTUB
396 OBJS+=gdbstub.o gdbstub-xml.o
397 endif
399 OBJS+= libqemu.a
401 # Note: this is a workaround. The real fix is to avoid compiling
402 # cpu_signal_handler() in cpu-exec.c.
403 signal.o: CFLAGS += $(HELPER_CFLAGS)
405 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
406         $(LINK)
407 ifeq ($(ARCH),alpha)
408 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
409 # the address space (31 bit so sign extending doesn't matter)
410         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
411 endif
413 endif #CONFIG_LINUX_USER
415 #########################################################
416 # Darwin user emulator target
418 ifdef CONFIG_DARWIN_USER
420 VPATH+=:$(SRC_PATH)/darwin-user
421 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
423 # Leave some space for the regular program loading zone
424 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
426 LIBS+=-lmx
428 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
430 OBJS+= libqemu.a
432 ifdef CONFIG_GDBSTUB
433 OBJS+=gdbstub.o gdbstub-xml.o
434 endif
436 # Note: this is a workaround. The real fix is to avoid compiling
437 # cpu_signal_handler() in cpu-exec.c.
438 signal.o: CFLAGS += $(HELPER_CFLAGS)
440 $(QEMU_PROG): $(OBJS)
441         $(LINK)
443 endif #CONFIG_DARWIN_USER
445 #########################################################
446 # BSD user emulator target
448 ifdef CONFIG_BSD_USER
450 VPATH+=:$(SRC_PATH)/bsd-user
451 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
453 ifdef CONFIG_STATIC
454 LDFLAGS+=-static
455 endif
457 ifeq ($(ARCH),i386)
458 ifdef TARGET_GPROF
459 USE_I386_LD=y
460 endif
461 ifdef CONFIG_STATIC
462 USE_I386_LD=y
463 endif
464 ifdef USE_I386_LD
465 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
466 else
467 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
468 # that the kernel ELF loader considers as an executable. I think this
469 # is the simplest way to make it self virtualizable!
470 LDFLAGS+=-Wl,-shared
471 endif
472 endif
474 ifeq ($(ARCH),x86_64)
475 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
476 endif
478 ifeq ($(ARCH),ppc)
479 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
480 endif
482 ifeq ($(ARCH),ppc64)
483 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
484 endif
486 ifeq ($(ARCH),s390)
487 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
488 endif
490 ifeq ($(ARCH),sparc)
491 # -static is used to avoid g1/g3 usage by the dynamic linker
492 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
493 endif
495 ifeq ($(ARCH),sparc64)
496 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
497 endif
499 ifeq ($(ARCH),alpha)
500 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
501 endif
503 ifeq ($(ARCH),ia64)
504 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
505 endif
507 ifeq ($(ARCH),arm)
508 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
509 endif
511 ifeq ($(ARCH),m68k)
512 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
513 endif
515 ifeq ($(ARCH),mips)
516 ifeq ($(WORDS_BIGENDIAN),yes)
517 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
518 else
519 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
520 endif
521 endif
523 ifeq ($(ARCH),mips64)
524 ifeq ($(WORDS_BIGENDIAN),yes)
525 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
526 else
527 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
528 endif
529 endif
531 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
532 OBJS+= uaccess.o
534 OBJS+= libqemu.a
536 ifdef CONFIG_GDBSTUB
537 OBJS+=gdbstub.o
538 endif
540 # Note: this is a workaround. The real fix is to avoid compiling
541 # cpu_signal_handler() in cpu-exec.c.
542 signal.o: CFLAGS += $(HELPER_CFLAGS)
544 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
545         $(LINK)
547 endif #CONFIG_BSD_USER
549 #########################################################
550 # System emulator target
551 ifndef CONFIG_USER_ONLY
553 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
554 # virtio has to be here due to weird dependency between PCI and virtio-net.
555 # need to fix this properly
556 OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
557 OBJS+=fw_cfg.o
558 ifdef CONFIG_KVM
559 OBJS+=kvm.o kvm-all.o
560 endif
561 ifdef CONFIG_WIN32
562 OBJS+=block-raw-win32.o
563 else
564 ifdef CONFIG_AIO
565 OBJS+=posix-aio-compat.o
566 endif
567 OBJS+=block-raw-posix.o
568 endif
570 ifdef CONFIG_AIO
571 OBJS+=compatfd.o
572 endif
574 LIBS+=-lz
575 ifdef CONFIG_ALSA
576 LIBS += -lasound
577 endif
578 ifdef CONFIG_ESD
579 LIBS += -lesd
580 endif
581 ifdef CONFIG_PA
582 LIBS += -lpulse-simple
583 endif
584 ifdef CONFIG_DSOUND
585 LIBS += -lole32 -ldxguid
586 endif
587 ifdef CONFIG_FMOD
588 LIBS += $(CONFIG_FMOD_LIB)
589 endif
590 ifdef CONFIG_OSS
591 LIBS += $(CONFIG_OSS_LIB)
592 endif
594 SOUND_HW = sb16.o es1370.o ac97.o
595 ifdef CONFIG_ADLIB
596 SOUND_HW += fmopl.o adlib.o
597 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
598 endif
599 ifdef CONFIG_GUS
600 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
601 endif
602 ifdef CONFIG_CS4231A
603 SOUND_HW += cs4231a.o
604 endif
606 ifdef USE_KVM
607 DEPLIBS += libkvm.a
608 endif
610 ifdef CONFIG_VNC_TLS
611 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
612 LIBS += $(CONFIG_VNC_TLS_LIBS)
613 endif
615 ifdef CONFIG_VNC_SASL
616 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
617 LIBS += $(CONFIG_VNC_SASL_LIBS)
618 endif
620 ifdef CONFIG_BLUEZ
621 LIBS += $(CONFIG_BLUEZ_LIBS)
622 endif
624 # xen backend driver support
625 XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o
626 XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
627 ifeq ($(CONFIG_XEN), yes)
628   OBJS += $(XEN_OBJS)
629   LIBS += $(XEN_LIBS)
630 endif
632 # SCSI layer
633 OBJS+= lsi53c895a.o esp.o
635 # USB layer
636 OBJS+= usb-ohci.o
638 # PCI network cards
639 OBJS += eepro100.o
640 OBJS += ne2000.o
641 OBJS += pcnet.o
642 OBJS += rtl8139.o
643 OBJS += e1000.o
645 # Serial mouse
646 OBJS += msmouse.o
648 ifeq ($(USE_KVM_DEVICE_ASSIGNMENT), 1)
649 OBJS+= device-assignment.o
650 LIBS+=-lpci
651 endif
653 ifeq ($(TARGET_BASE_ARCH), i386)
654 # Hardware support
655 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
656 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
657 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
658 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
659 OBJS += device-hotplug.o pci-hotplug.o smbios.o
660 OBJS+= extboot.o
661 ifeq ($(USE_KVM_PIT), 1)
662 OBJS+= i8254-kvm.o
663 endif
664 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
665 endif
666 ifeq ($(TARGET_BASE_ARCH), ia64)
667 # Hardware support
668 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
669 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
670 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
671 OBJS+= usb-uhci.o smbus_eeprom.o
672 # virtio support
673 OBJS+= virtio.o virtio-blk.o virtio-balloon.o
674 OBJS+= virtio-net.o
675 endif
676 ifeq ($(TARGET_BASE_ARCH), ppc)
677 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
678 # shared objects
679 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
680 OBJS+= cirrus_vga.o
681 # PREP target
682 OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
683 OBJS+= prep_pci.o ppc_prep.o
684 # Mac shared devices
685 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o
686 # OldWorld PowerMac
687 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
688 # NewWorld PowerMac
689 OBJS+= unin_pci.o ppc_newworld.o
690 # PowerPC 4xx boards
691 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
692 OBJS+= ppc440.o ppc440_bamboo.o
693 # PowerPC E500 boards
694 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
695 ifdef FDT_LIBS
696 OBJS+= device_tree.o
697 LIBS+= $(FDT_LIBS)
698 endif
699 ifdef CONFIG_KVM
700 OBJS+= kvm_ppc.o
701 endif
702 endif
703 ifeq ($(TARGET_BASE_ARCH), mips)
704 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
705 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
706 OBJS+= g364fb.o jazz_led.o dp8393x.o
707 OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
708 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
709 OBJS+= mipsnet.o
710 OBJS+= pflash_cfi01.o
711 OBJS+= vmware_vga.o
712 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
713 endif
714 ifeq ($(TARGET_BASE_ARCH), cris)
715 # Boards
716 OBJS+= etraxfs.o axis_dev88.o
718 # IO blocks
719 OBJS+= etraxfs_dma.o
720 OBJS+= etraxfs_pic.o
721 OBJS+= etraxfs_eth.o
722 OBJS+= etraxfs_timer.o
723 OBJS+= etraxfs_ser.o
725 OBJS+= pflash_cfi02.o nand.o
726 endif
727 ifeq ($(TARGET_BASE_ARCH), sparc)
728 ifeq ($(TARGET_ARCH), sparc64)
729 OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
730 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
731 OBJS+= cirrus_vga.o parallel.o
732 else
733 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
734 OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
735 OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
736 endif
737 endif
738 ifeq ($(TARGET_BASE_ARCH), arm)
739 OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
740 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
741 OBJS+= versatile_pci.o
742 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
743 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
744 OBJS+= pl061.o
745 OBJS+= arm-semi.o
746 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
747 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
748 OBJS+= pflash_cfi01.o gumstix.o
749 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
750 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
751 OBJS+= omap2.o omap_dss.o soc_dma.o
752 OBJS+= omap_sx1.o palm.o tsc210x.o
753 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
754 OBJS+= mst_fpga.o mainstone.o
755 OBJS+= musicpal.o pflash_cfi02.o
756 OBJS+= framebuffer.o
757 CPPFLAGS += -DHAS_AUDIO
758 endif
759 ifeq ($(TARGET_BASE_ARCH), sh4)
760 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
761 OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
762 OBJS+= ide.o
763 endif
764 ifeq ($(TARGET_BASE_ARCH), m68k)
765 OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
766 OBJS+= m68k-semi.o dummy_m68k.o
767 endif
768 ifdef CONFIG_GDBSTUB
769 OBJS+=gdbstub.o gdbstub-xml.o
770 endif
771 ifdef CONFIG_COCOA
772 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
773 ifdef CONFIG_COREAUDIO
774 COCOA_LIBS+=-framework CoreAudio
775 endif
776 endif
777 ifdef CONFIG_SLIRP
778 CPPFLAGS+=-I$(SRC_PATH)/slirp
779 endif
781 LIBS+=$(AIOLIBS)
782 # specific flags are needed for non soft mmu emulator
783 ifdef CONFIG_STATIC
784 LDFLAGS+=-static
785 endif
786 ifndef CONFIG_DARWIN
787 ifndef CONFIG_WIN32
788 ifndef CONFIG_SOLARIS
789 ifndef CONFIG_AIX
790 LIBS+=-lutil
791 endif
792 endif
793 endif
794 endif
795 ifdef TARGET_GPROF
796 vl.o: CFLAGS+=-p
797 LDFLAGS+=-p
798 endif
800 ifeq ($(ARCH),ia64)
801 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
802 endif
804 ifdef CONFIG_WIN32
805 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
806 endif
808 # profiling code
809 ifdef TARGET_GPROF
810 LDFLAGS+=-p
811 main.o: CFLAGS+=-p
812 endif
813 ifeq ($(TARGET_ARCH), ia64)
814 firmware.o: firmware.c
815         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
816 endif
818 vl.o: qemu-options.h
820 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
822 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(DEPLIBS)
823         $(LINK)
825 FORCE:
827 libkvm.a: FORCE
828         $(MAKE) -C ../kvm/libkvm KVM_CFLAGS="$(KVM_CFLAGS)"
829         if ! cmp -s libkvm.a ../kvm/libkvm/libkvm.a; then \
830            cp ../kvm/libkvm/libkvm.a . ; \
831         fi
833 endif # !CONFIG_USER_ONLY
835 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
836 ifeq ($(TARGET_XML_FILES),)
837         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
838 else
839         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
840 endif
842 qemu-options.h: $(SRC_PATH)/qemu-options.hx
843         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
845 clean:
846         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c
847         rm -f *.d */*.d tcg/*.o
849 install: all
850 ifneq ($(PROGS),)
851         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
852 endif
854 # Include automatically generated dependency files
855 -include $(wildcard *.d */*.d)