net: drop packet from tap device if all NICs are down
[qemu-kvm/fedora.git] / Makefile.target
blob0041a4695f2017b874950bdc1f408d87b7a9c031
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 all: $(PROGS)
139 #########################################################
140 # cpu emulator library
141 ifeq ($(NO_CPU_EMULATION), 1)
142 LIBOBJS=exec.o fake-exec.o cpu-exec.o host-utils.o
143 else
144 LIBOBJS=exec.o translate-all.o cpu-exec.o\
145         translate.o host-utils.o
146 endif
148 ifdef CONFIG_KQEMU
149 LIBOBJS+= kqemu.o
150 endif
151 # TCG code generator
152 ifneq ($(NO_CPU_EMULATION), 1)
153 LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
154 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
155 endif
156 ifeq ($(ARCH),sparc64)
157 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
158 endif
160 ifeq ($(USE_KVM), 1)
161 LIBOBJS+=qemu-kvm.o
162 endif
163 ifdef CONFIG_SOFTFLOAT
164 LIBOBJS+=fpu/softfloat.o
165 else
166 LIBOBJS+=fpu/softfloat-native.o
167 endif
168 CPPFLAGS+=-I$(SRC_PATH)/fpu
169 LIBOBJS+= op_helper.o helper.o
171 ifeq ($(TARGET_ARCH), i386)
172 LIBOBJS+=helper.o
173 ifeq ($(USE_KVM), 1)
174 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
175 LIBOBJS+=qemu-kvm-helper.o
176 endif
177 endif
179 ifeq ($(TARGET_ARCH), x86_64)
180 LIBOBJS+=helper.o
181 ifeq ($(USE_KVM), 1)
182 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
183 LIBOBJS+=qemu-kvm-helper.o
184 endif
185 endif
187 LIBOBJS+= op_helper.o
189 ifneq ($(TARGET_ARCH), ia64)
190 LIBOBJS+= helper.o
191 endif
193 ifeq ($(TARGET_BASE_ARCH), arm)
194 LIBOBJS+= neon_helper.o iwmmxt_helper.o
195 endif
197 ifeq ($(TARGET_BASE_ARCH), alpha)
198 LIBOBJS+= alpha_palcode.o
199 endif
201 ifeq ($(TARGET_BASE_ARCH), ia64)
202 LIBOBJS+=op_helper.o firmware.o
203 ifeq ($(USE_KVM), 1)
204 LIBOBJS+=qemu-kvm-ia64.o
205 endif
206 endif
208 ifeq ($(TARGET_BASE_ARCH), cris)
209 LIBOBJS+= cris-dis.o
211 ifndef CONFIG_USER_ONLY
212 LIBOBJS+= mmu.o
213 endif
214 endif
217 # NOTE: the disassembler code is only needed for debugging
218 LIBOBJS+=disas.o
219 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
220 USE_I386_DIS=y
221 endif
222 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
223 USE_I386_DIS=y
224 endif
225 ifdef USE_I386_DIS
226 LIBOBJS+=i386-dis.o
227 endif
228 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
229 LIBOBJS+=alpha-dis.o
230 endif
231 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
232 LIBOBJS+=ppc-dis.o
233 endif
234 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
235 LIBOBJS+=mips-dis.o
236 endif
237 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
238 LIBOBJS+=sparc-dis.o
239 endif
240 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
241 LIBOBJS+=arm-dis.o
242 endif
243 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
244 LIBOBJS+=m68k-dis.o
245 endif
246 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
247 LIBOBJS+=sh4-dis.o
248 endif
249 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
250 LIBOBJS+=hppa-dis.o
251 endif
252 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
253 LIBOBJS+=s390-dis.o
254 endif
256 # libqemu
258 libqemu.a: $(LIBOBJS)
260 translate.o: translate.c cpu.h
262 translate-all.o: translate-all.c cpu.h
264 tcg/tcg.o: cpu.h
266 # HELPER_CFLAGS is used for all the code compiled with static register
267 # variables
268 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
270 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
272 qemu-kvm-helper.o: qemu-kvm-helper.c
273         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
275 #########################################################
276 # Linux user emulator target
278 ifdef CONFIG_LINUX_USER
280 ifndef TARGET_ABI_DIR
281   TARGET_ABI_DIR=$(TARGET_ARCH)
282 endif
283 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
284 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
286 ifdef CONFIG_STATIC
287 LDFLAGS+=-static
288 endif
290 ifeq ($(ARCH),i386)
291 ifdef TARGET_GPROF
292 USE_I386_LD=y
293 endif
294 ifdef CONFIG_STATIC
295 USE_I386_LD=y
296 endif
297 ifdef USE_I386_LD
298 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
299 else
300 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
301 # that the kernel ELF loader considers as an executable. I think this
302 # is the simplest way to make it self virtualizable!
303 LDFLAGS+=-Wl,-shared
304 endif
305 endif
307 ifeq ($(ARCH),x86_64)
308 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
309 endif
311 ifeq ($(ARCH),ppc)
312 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
313 endif
315 ifeq ($(ARCH),ppc64)
316 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
317 endif
319 ifeq ($(ARCH),s390)
320 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
321 endif
323 ifeq ($(ARCH),sparc)
324 # -static is used to avoid g1/g3 usage by the dynamic linker    
325 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
326 endif
328 ifeq ($(ARCH),sparc64)
329 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
330 endif
332 ifeq ($(ARCH),alpha)
333 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
334 endif
336 ifeq ($(ARCH),ia64)
337 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
338 endif
340 ifeq ($(ARCH),arm)
341 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
342 endif
344 ifeq ($(ARCH),m68k)
345 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
346 endif
348 ifeq ($(ARCH),mips)
349 ifeq ($(WORDS_BIGENDIAN),yes)
350 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
351 else
352 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
353 endif
354 endif
356 ifeq ($(ARCH),mips64)
357 ifeq ($(WORDS_BIGENDIAN),yes)
358 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
359 else
360 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
361 endif
362 endif
364 # profiling code
365 ifdef TARGET_GPROF
366 LDFLAGS+=-p
367 CFLAGS+=-p
368 endif
370 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
371       elfload.o linuxload.o uaccess.o envlist.o
372 LIBS+= $(AIOLIBS)
373 ifdef TARGET_HAS_BFLT
374 OBJS+= flatload.o
375 endif
376 ifdef TARGET_HAS_ELFLOAD32
377 OBJS+= elfload32.o
378 elfload32.o: elfload.c
379 endif
381 ifeq ($(TARGET_ARCH), i386)
382 OBJS+= vm86.o
383 endif
384 ifeq ($(TARGET_ARCH), arm)
385 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
386 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
387  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
388 endif
389 ifeq ($(TARGET_ARCH), m68k)
390 OBJS+= m68k-sim.o m68k-semi.o
391 endif
393 ifdef CONFIG_GDBSTUB
394 OBJS+=gdbstub.o gdbstub-xml.o
395 endif
397 OBJS+= libqemu.a
399 # Note: this is a workaround. The real fix is to avoid compiling
400 # cpu_signal_handler() in cpu-exec.c.
401 signal.o: CFLAGS += $(HELPER_CFLAGS)
403 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
404         $(LINK)
405 ifeq ($(ARCH),alpha)
406 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
407 # the address space (31 bit so sign extending doesn't matter)
408         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
409 endif
411 endif #CONFIG_LINUX_USER
413 #########################################################
414 # Darwin user emulator target
416 ifdef CONFIG_DARWIN_USER
418 VPATH+=:$(SRC_PATH)/darwin-user
419 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
421 # Leave some space for the regular program loading zone
422 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
424 LIBS+=-lmx
426 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
428 OBJS+= libqemu.a
430 ifdef CONFIG_GDBSTUB
431 OBJS+=gdbstub.o gdbstub-xml.o
432 endif
434 # Note: this is a workaround. The real fix is to avoid compiling
435 # cpu_signal_handler() in cpu-exec.c.
436 signal.o: CFLAGS += $(HELPER_CFLAGS)
438 $(QEMU_PROG): $(OBJS)
439         $(LINK)
441 endif #CONFIG_DARWIN_USER
443 #########################################################
444 # BSD user emulator target
446 ifdef CONFIG_BSD_USER
448 VPATH+=:$(SRC_PATH)/bsd-user
449 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
451 ifdef CONFIG_STATIC
452 LDFLAGS+=-static
453 endif
455 ifeq ($(ARCH),i386)
456 ifdef TARGET_GPROF
457 USE_I386_LD=y
458 endif
459 ifdef CONFIG_STATIC
460 USE_I386_LD=y
461 endif
462 ifdef USE_I386_LD
463 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
464 else
465 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
466 # that the kernel ELF loader considers as an executable. I think this
467 # is the simplest way to make it self virtualizable!
468 LDFLAGS+=-Wl,-shared
469 endif
470 endif
472 ifeq ($(ARCH),x86_64)
473 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
474 endif
476 ifeq ($(ARCH),ppc)
477 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
478 endif
480 ifeq ($(ARCH),ppc64)
481 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
482 endif
484 ifeq ($(ARCH),s390)
485 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
486 endif
488 ifeq ($(ARCH),sparc)
489 # -static is used to avoid g1/g3 usage by the dynamic linker
490 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
491 endif
493 ifeq ($(ARCH),sparc64)
494 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
495 endif
497 ifeq ($(ARCH),alpha)
498 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
499 endif
501 ifeq ($(ARCH),ia64)
502 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
503 endif
505 ifeq ($(ARCH),arm)
506 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
507 endif
509 ifeq ($(ARCH),m68k)
510 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
511 endif
513 ifeq ($(ARCH),mips)
514 ifeq ($(WORDS_BIGENDIAN),yes)
515 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
516 else
517 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
518 endif
519 endif
521 ifeq ($(ARCH),mips64)
522 ifeq ($(WORDS_BIGENDIAN),yes)
523 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
524 else
525 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
526 endif
527 endif
529 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
530 OBJS+= uaccess.o
532 OBJS+= libqemu.a
534 ifdef CONFIG_GDBSTUB
535 OBJS+=gdbstub.o
536 endif
538 # Note: this is a workaround. The real fix is to avoid compiling
539 # cpu_signal_handler() in cpu-exec.c.
540 signal.o: CFLAGS += $(HELPER_CFLAGS)
542 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
543         $(LINK)
545 endif #CONFIG_BSD_USER
547 #########################################################
548 # System emulator target
549 ifndef CONFIG_USER_ONLY
551 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
552 # virtio has to be here due to weird dependency between PCI and virtio-net.
553 # need to fix this properly
554 OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
555 OBJS+=fw_cfg.o
556 ifdef CONFIG_KVM
557 OBJS+=kvm.o kvm-all.o
558 endif
559 ifdef CONFIG_WIN32
560 OBJS+=block-raw-win32.o
561 else
562 ifdef CONFIG_AIO
563 OBJS+=posix-aio-compat.o
564 endif
565 OBJS+=block-raw-posix.o
566 endif
568 ifdef CONFIG_AIO
569 OBJS+=compatfd.o
570 endif
572 LIBS+=-lz
573 ifdef CONFIG_ALSA
574 LIBS += -lasound
575 endif
576 ifdef CONFIG_ESD
577 LIBS += -lesd
578 endif
579 ifdef CONFIG_PA
580 LIBS += -lpulse-simple
581 endif
582 ifdef CONFIG_DSOUND
583 LIBS += -lole32 -ldxguid
584 endif
585 ifdef CONFIG_FMOD
586 LIBS += $(CONFIG_FMOD_LIB)
587 endif
588 ifdef CONFIG_OSS
589 LIBS += $(CONFIG_OSS_LIB)
590 endif
592 SOUND_HW = sb16.o es1370.o ac97.o
593 ifdef CONFIG_ADLIB
594 SOUND_HW += fmopl.o adlib.o
595 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
596 endif
597 ifdef CONFIG_GUS
598 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
599 endif
600 ifdef CONFIG_CS4231A
601 SOUND_HW += cs4231a.o
602 endif
604 ifdef CONFIG_KVM_KERNEL_INC
605 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
606 DEPLIBS += libkvm.a
607 endif
609 ifdef CONFIG_VNC_TLS
610 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
611 LIBS += $(CONFIG_VNC_TLS_LIBS)
612 endif
614 ifdef CONFIG_VNC_SASL
615 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
616 LIBS += $(CONFIG_VNC_SASL_LIBS)
617 endif
619 ifdef CONFIG_BLUEZ
620 LIBS += $(CONFIG_BLUEZ_LIBS)
621 endif
623 # xen backend driver support
624 XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o
625 XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
626 ifeq ($(CONFIG_XEN), yes)
627   OBJS += $(XEN_OBJS)
628   LIBS += $(XEN_LIBS)
629 endif
631 # SCSI layer
632 OBJS+= lsi53c895a.o esp.o
634 # USB layer
635 OBJS+= usb-ohci.o
637 # PCI network cards
638 OBJS += eepro100.o
639 OBJS += ne2000.o
640 OBJS += pcnet.o
641 OBJS += rtl8139.o
642 OBJS += e1000.o
644 # Serial mouse
645 OBJS += msmouse.o
647 # Serial mouse
648 OBJS += msmouse.o
650 ifeq ($(USE_KVM_DEVICE_ASSIGNMENT), 1)
651 OBJS+= device-assignment.o
652 LIBS+=-lpci
653 endif
655 ifeq ($(TARGET_BASE_ARCH), i386)
656 # Hardware support
657 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
658 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
659 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
660 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
661 OBJS += device-hotplug.o pci-hotplug.o smbios.o
662 OBJS+= extboot.o
663 ifeq ($(USE_KVM_PIT), 1)
664 OBJS+= i8254-kvm.o
665 endif
666 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
667 endif
668 ifeq ($(TARGET_BASE_ARCH), ia64)
669 # Hardware support
670 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
671 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
672 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
673 OBJS+= usb-uhci.o smbus_eeprom.o
674 # virtio support
675 OBJS+= virtio.o virtio-blk.o virtio-balloon.o
676 OBJS+= virtio-net.o
677 endif
678 ifeq ($(TARGET_BASE_ARCH), ppc)
679 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
680 # shared objects
681 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
682 OBJS+= cirrus_vga.o
683 # PREP target
684 OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
685 OBJS+= prep_pci.o ppc_prep.o
686 # Mac shared devices
687 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o escc.o
688 # OldWorld PowerMac
689 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
690 # NewWorld PowerMac
691 OBJS+= unin_pci.o ppc_newworld.o
692 # PowerPC 4xx boards
693 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
694 OBJS+= ppc440.o ppc440_bamboo.o
695 # PowerPC E500 boards
696 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
697 ifdef FDT_LIBS
698 OBJS+= device_tree.o
699 LIBS+= $(FDT_LIBS)
700 endif
701 ifdef CONFIG_KVM
702 OBJS+= kvm_ppc.o
703 endif
704 endif
705 ifeq ($(TARGET_BASE_ARCH), mips)
706 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
707 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
708 OBJS+= g364fb.o jazz_led.o dp8393x.o
709 OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
710 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
711 OBJS+= mipsnet.o
712 OBJS+= pflash_cfi01.o
713 OBJS+= vmware_vga.o
714 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
715 endif
716 ifeq ($(TARGET_BASE_ARCH), cris)
717 # Boards
718 OBJS+= etraxfs.o axis_dev88.o
720 # IO blocks
721 OBJS+= etraxfs_dma.o
722 OBJS+= etraxfs_pic.o
723 OBJS+= etraxfs_eth.o
724 OBJS+= etraxfs_timer.o
725 OBJS+= etraxfs_ser.o
727 OBJS+= pflash_cfi02.o nand.o
728 endif
729 ifeq ($(TARGET_BASE_ARCH), sparc)
730 ifeq ($(TARGET_ARCH), sparc64)
731 OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
732 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
733 OBJS+= cirrus_vga.o parallel.o
734 else
735 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
736 OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
737 OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
738 endif
739 endif
740 ifeq ($(TARGET_BASE_ARCH), arm)
741 OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
742 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
743 OBJS+= versatile_pci.o
744 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
745 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
746 OBJS+= pl061.o
747 OBJS+= arm-semi.o
748 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
749 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
750 OBJS+= pflash_cfi01.o gumstix.o
751 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
752 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
753 OBJS+= omap2.o omap_dss.o soc_dma.o
754 OBJS+= omap_sx1.o palm.o tsc210x.o
755 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
756 OBJS+= mst_fpga.o mainstone.o
757 OBJS+= musicpal.o pflash_cfi02.o
758 OBJS+= framebuffer.o
759 CPPFLAGS += -DHAS_AUDIO
760 endif
761 ifeq ($(TARGET_BASE_ARCH), sh4)
762 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
763 OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
764 OBJS+= ide.o
765 endif
766 ifeq ($(TARGET_BASE_ARCH), m68k)
767 OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
768 OBJS+= m68k-semi.o dummy_m68k.o
769 endif
770 ifdef CONFIG_GDBSTUB
771 OBJS+=gdbstub.o gdbstub-xml.o
772 endif
773 ifdef CONFIG_COCOA
774 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
775 ifdef CONFIG_COREAUDIO
776 COCOA_LIBS+=-framework CoreAudio
777 endif
778 endif
779 ifdef CONFIG_SLIRP
780 CPPFLAGS+=-I$(SRC_PATH)/slirp
781 endif
783 LIBS+=$(AIOLIBS)
784 # specific flags are needed for non soft mmu emulator
785 ifdef CONFIG_STATIC
786 LDFLAGS+=-static
787 endif
788 ifndef CONFIG_DARWIN
789 ifndef CONFIG_WIN32
790 ifndef CONFIG_SOLARIS
791 ifndef CONFIG_AIX
792 LIBS+=-lutil
793 endif
794 endif
795 endif
796 endif
797 ifdef TARGET_GPROF
798 vl.o: CFLAGS+=-p
799 LDFLAGS+=-p
800 endif
802 ifeq ($(ARCH),ia64)
803 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
804 endif
806 ifdef CONFIG_WIN32
807 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
808 endif
810 # profiling code
811 ifdef TARGET_GPROF
812 LDFLAGS+=-p
813 main.o: CFLAGS+=-p
814 endif
815 ifeq ($(TARGET_ARCH), ia64)
816 firmware.o: firmware.c
817         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
818 endif
820 vl.o: qemu-options.h
822 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
824 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(DEPLIBS)
825         $(LINK)
827 FORCE:
829 libkvm.a: FORCE
830         $(MAKE) -C ../kvm/libkvm
831         if ! cmp -s libkvm.a ../kvm/libkvm/libkvm.a; then \
832            cp ../kvm/libkvm/libkvm.a . ; \
833         fi
835 endif # !CONFIG_USER_ONLY
837 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
838 ifeq ($(TARGET_XML_FILES),)
839         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
840 else
841         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
842 endif
844 qemu-options.h: $(SRC_PATH)/qemu-options.hx
845         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
847 clean:
848         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c
849         rm -f *.d */*.d tcg/*.o
851 install: all
852 ifneq ($(PROGS),)
853         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
854 endif
856 # Include automatically generated dependency files
857 -include $(wildcard *.d */*.d)