remove kvm types from handle unhandled
[qemu-kvm/fedora.git] / Makefile.target
blobdf1f32b0f88e218da460d0294b9a67deef0bc652
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
121 CPPFLAGS+=-U_FORTIFY_SOURCE
122 CPPFLAGS+=-D__user=
123 LIBS+=-lm
124 ifdef CONFIG_WIN32
125 LIBS+=-lwinmm -lws2_32 -liphlpapi
126 endif
127 ifdef CONFIG_SOLARIS
128 LIBS+=-lsocket -lnsl -lresolv
129 ifdef NEEDS_LIBSUNMATH
130 LIBS+=-lsunmath
131 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
132 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
133 endif
134 endif
136 kvm.o: CFLAGS+=$(KVM_CFLAGS)
137 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
139 CFLAGS += $(KVM_CFLAGS)
141 all: $(PROGS)
142 # Dummy command so that make thinks it has done something
143         @true
145 #########################################################
146 # cpu emulator library
147 libobj-y = exec.o cpu-exec.o host-utils.o
148 ifeq ($(NO_CPU_EMULATION), 1)
149 libobj-y += fack-exec.o
150 else
151 libobj-y += translate-all.o translate.o 
152 endif
153 libobj-$(CONFIG_KQEMU) += kqemu.o
154 # TCG code generator
155 ifneq ($(NO_CPU_EMULATION), 1)
156 libobj-y += tcg/tcg.o tcg/tcg-runtime.o
157 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
158 endif
159 ifeq ($(ARCH),sparc64)
160 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
161 endif
163 ifdef CONFIG_SOFTFLOAT
164 libobj-y += fpu/softfloat.o
165 else
166 libobj-y += fpu/softfloat-native.o
167 endif
168 CPPFLAGS+=-I$(SRC_PATH)/fpu
169 libobj-y += op_helper.o helper.o
171 ifeq ($(TARGET_ARCH), i386)
172 libobj-y += helper.o
173 libobj-$(CONFIG_KVM) += kvm-tpr-opt.o
174 libobj-$(CONFIG_KVM) += qemu-kvm-helper.o
175 endif
177 ifeq ($(TARGET_ARCH), x86_64)
178 libobj-y += helper.o
179 libobj-$(CONFIG_KVM) += kvm-tpr-opt.o
180 libobj-$(CONFIG_KVM) += qemu-kvm-helper.o
181 endif
183 libobj-y += op_helper.o
185 ifneq ($(TARGET_ARCH), ia64)
186 libobj-y += helper.o
187 endif
189 ifeq ($(TARGET_BASE_ARCH), arm)
190 libobj-y += neon_helper.o iwmmxt_helper.o
191 endif
193 ifeq ($(TARGET_BASE_ARCH), alpha)
194 libobj-y += alpha_palcode.o
195 endif
197 ifeq ($(TARGET_BASE_ARCH), ia64)
198 libobj-y += op_helper.o firmware.o
199 libobj-$(CONFIG_KVM) += qemu-kvm-ia64.o
200 endif
202 ifeq ($(TARGET_BASE_ARCH), cris)
203 libobj-y += cris-dis.o
205 ifndef CONFIG_USER_ONLY
206 libobj-y += mmu.o
207 endif
208 endif
211 # NOTE: the disassembler code is only needed for debugging
212 libobj-y += disas.o
213 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
214 USE_I386_DIS=y
215 endif
216 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
217 USE_I386_DIS=y
218 endif
219 libobj-$(USE_I386_DIS) += i386-dis.o
220 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
221 libobj-y += alpha-dis.o
222 endif
223 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
224 libobj-y += ppc-dis.o
225 endif
226 ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
227 libobj-y += microblaze-dis.o
228 ifndef CONFIG_USER_ONLY
229 libobj-y += mmu.o
230 endif
231 endif
232 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
233 libobj-y += mips-dis.o
234 endif
235 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
236 libobj-y += sparc-dis.o
237 endif
238 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
239 libobj-y += arm-dis.o
240 endif
241 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
242 libobj-y += m68k-dis.o
243 endif
244 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
245 libobj-y += sh4-dis.o
246 endif
247 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
248 libobj-y += hppa-dis.o
249 endif
250 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
251 libobj-y += s390-dis.o
252 endif
254 # libqemu
256 libqemu.a: $(libobj-y)
258 translate.o: translate.c cpu.h
260 translate-all.o: translate-all.c cpu.h
262 tcg/tcg.o: cpu.h
264 # HELPER_CFLAGS is used for all the code compiled with static register
265 # variables
266 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
268 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
270 qemu-kvm-helper.o: qemu-kvm-helper.c
271         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
273 #########################################################
274 # Linux user emulator target
276 ifdef CONFIG_LINUX_USER
278 ifndef TARGET_ABI_DIR
279   TARGET_ABI_DIR=$(TARGET_ARCH)
280 endif
281 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
282 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
284 ifdef CONFIG_STATIC
285 LDFLAGS+=-static
286 endif
288 ifeq ($(ARCH),i386)
289 ifdef TARGET_GPROF
290 USE_I386_LD=y
291 endif
292 ifdef CONFIG_STATIC
293 USE_I386_LD=y
294 endif
295 ifdef USE_I386_LD
296 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
297 else
298 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
299 # that the kernel ELF loader considers as an executable. I think this
300 # is the simplest way to make it self virtualizable!
301 LDFLAGS+=-Wl,-shared
302 endif
303 endif
305 ifeq ($(ARCH),x86_64)
306 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
307 endif
309 ifeq ($(ARCH),ppc)
310 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
311 endif
313 ifeq ($(ARCH),ppc64)
314 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
315 endif
317 ifeq ($(ARCH),s390)
318 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
319 endif
321 ifeq ($(ARCH),sparc)
322 # -static is used to avoid g1/g3 usage by the dynamic linker    
323 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
324 endif
326 ifeq ($(ARCH),sparc64)
327 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
328 endif
330 ifeq ($(ARCH),alpha)
331 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
332 endif
334 ifeq ($(ARCH),ia64)
335 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
336 endif
338 ifeq ($(ARCH),arm)
339 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
340 endif
342 ifeq ($(ARCH),m68k)
343 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
344 endif
346 ifeq ($(ARCH),mips)
347 ifeq ($(WORDS_BIGENDIAN),yes)
348 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
349 else
350 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
351 endif
352 endif
354 ifeq ($(ARCH),mips64)
355 ifeq ($(WORDS_BIGENDIAN),yes)
356 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
357 else
358 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
359 endif
360 endif
362 # profiling code
363 ifdef TARGET_GPROF
364 LDFLAGS+=-p
365 CFLAGS+=-p
366 endif
368 obj-y = main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
369       elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o \
370       ioport-user.o
371 LIBS+= $(PTHREADLIBS)
372 LIBS+= $(CLOCKLIBS)
373 obj-$(TARGET_HAS_BFLT) += flatload.o
375 ifdef TARGET_HAS_ELFLOAD32
376 elfload32.o: elfload.c
377 endif
378 obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
380 ifeq ($(TARGET_ARCH), i386)
381 obj-y += vm86.o
382 endif
383 ifeq ($(TARGET_ARCH), arm)
384 obj-y += nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
385 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
386  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
387 endif
388 ifeq ($(TARGET_ARCH), m68k)
389 obj-y += m68k-sim.o m68k-semi.o
390 endif
392 # Note: this is a workaround. The real fix is to avoid compiling
393 # cpu_signal_handler() in cpu-exec.c.
394 signal.o: CFLAGS += $(HELPER_CFLAGS)
396 $(QEMU_PROG): ARLIBS=../libqemu_user.a libqemu.a
397 $(QEMU_PROG): $(obj-y) ../libqemu_user.a libqemu.a
398         $(call LINK,$(obj-y))
399 ifeq ($(ARCH),alpha)
400 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
401 # the address space (31 bit so sign extending doesn't matter)
402         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
403 endif
405 endif #CONFIG_LINUX_USER
407 #########################################################
408 # Darwin user emulator target
410 ifdef CONFIG_DARWIN_USER
412 VPATH+=:$(SRC_PATH)/darwin-user
413 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
415 # Leave some space for the regular program loading zone
416 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
418 LIBS+=-lmx
420 obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
421         gdbstub.o gdbstub-xml.o ioport-user.o
423 # Note: this is a workaround. The real fix is to avoid compiling
424 # cpu_signal_handler() in cpu-exec.c.
425 signal.o: CFLAGS += $(HELPER_CFLAGS)
427 $(QEMU_PROG): ARLIBS=libqemu.a
428 $(QEMU_PROG): $(obj-y) libqemu.a
429         $(call LINK,$(obj-y))
431 endif #CONFIG_DARWIN_USER
433 #########################################################
434 # BSD user emulator target
436 ifdef CONFIG_BSD_USER
438 VPATH+=:$(SRC_PATH)/bsd-user
439 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
441 ifdef CONFIG_STATIC
442 LDFLAGS+=-static
443 endif
445 ifeq ($(ARCH),i386)
446 ifdef TARGET_GPROF
447 USE_I386_LD=y
448 endif
449 ifdef CONFIG_STATIC
450 USE_I386_LD=y
451 endif
452 ifdef USE_I386_LD
453 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
454 else
455 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
456 # that the kernel ELF loader considers as an executable. I think this
457 # is the simplest way to make it self virtualizable!
458 LDFLAGS+=-Wl,-shared
459 endif
460 endif
462 ifeq ($(ARCH),x86_64)
463 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
464 endif
466 ifeq ($(ARCH),ppc)
467 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
468 endif
470 ifeq ($(ARCH),ppc64)
471 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
472 endif
474 ifeq ($(ARCH),s390)
475 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
476 endif
478 ifeq ($(ARCH),sparc)
479 # -static is used to avoid g1/g3 usage by the dynamic linker
480 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
481 endif
483 ifeq ($(ARCH),sparc64)
484 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
485 endif
487 ifeq ($(ARCH),alpha)
488 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
489 endif
491 ifeq ($(ARCH),ia64)
492 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
493 endif
495 ifeq ($(ARCH),arm)
496 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
497 endif
499 ifeq ($(ARCH),m68k)
500 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
501 endif
503 ifeq ($(ARCH),mips)
504 ifeq ($(WORDS_BIGENDIAN),yes)
505 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
506 else
507 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
508 endif
509 endif
511 ifeq ($(ARCH),mips64)
512 ifeq ($(WORDS_BIGENDIAN),yes)
513 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
514 else
515 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
516 endif
517 endif
519 obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
520         gdbstub.o gdbstub-xml.o ioport-user.o
521 obj-y += uaccess.o
523 # Note: this is a workaround. The real fix is to avoid compiling
524 # cpu_signal_handler() in cpu-exec.c.
525 signal.o: CFLAGS += $(HELPER_CFLAGS)
527 $(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
528 $(QEMU_PROG): $(obj-y) libqemu.a ../libqemu_user.a
529         $(call LINK,$(obj-y))
531 endif #CONFIG_BSD_USER
533 #########################################################
534 # System emulator target
535 ifndef CONFIG_USER_ONLY
537 obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
538         gdbstub.o gdbstub-xml.o msix.o ioport.o
539 # virtio has to be here due to weird dependency between PCI and virtio-net.
540 # need to fix this properly
541 obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
542 obj-$(CONFIG_KVM) += kvm.o kvm-all.o
544 LIBS+=-lz
545 ifdef CONFIG_ALSA
546 LIBS += -lasound
547 endif
548 ifdef CONFIG_ESD
549 LIBS += -lesd
550 endif
551 ifdef CONFIG_PA
552 LIBS += -lpulse-simple
553 endif
554 ifdef CONFIG_DSOUND
555 LIBS += -lole32 -ldxguid
556 endif
557 ifdef CONFIG_FMOD
558 LIBS += $(CONFIG_FMOD_LIB)
559 endif
560 ifdef CONFIG_OSS
561 LIBS += $(CONFIG_OSS_LIB)
562 endif
564 sound-obj-y =
565 sound-obj-$(CONFIG_SB16) += sb16.o
566 sound-obj-$(CONFIG_ES1370) += es1370.o
567 sound-obj-$(CONFIG_AC97) += ac97.o
568 sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
569 sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
570 sound-obj-$(CONFIG_CS4231A) += cs4231a.o
572 ifdef CONFIG_ADLIB
573 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
574 endif
576 ifdef CONFIG_VNC_TLS
577 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
578 LIBS += $(CONFIG_VNC_TLS_LIBS)
579 endif
581 ifdef CONFIG_VNC_SASL
582 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
583 LIBS += $(CONFIG_VNC_SASL_LIBS)
584 endif
586 ifdef CONFIG_BLUEZ
587 LIBS += $(CONFIG_BLUEZ_LIBS)
588 endif
590 # xen backend driver support
591 obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
592 ifeq ($(CONFIG_XEN), yes)
593   LIBS += $(XEN_LIBS)
594 endif
596 # USB layer
597 obj-y += usb-ohci.o
599 # PCI network cards
600 obj-y += eepro100.o
601 obj-y += ne2000.o
602 obj-y += pcnet.o
603 obj-y += rtl8139.o
604 obj-y += e1000.o
606 # Generic watchdog support and some watchdog devices
607 obj-y += wdt_ib700.o wdt_i6300esb.o
609 ifeq ($(USE_KVM_DEVICE_ASSIGNMENT), 1)
610 obj-y += device-assignment.o
611 LIBS+=-lpci
612 endif
614 ifeq ($(TARGET_BASE_ARCH), i386)
615 # Hardware support
616 obj-y += ide.o pckbd.o vga.o $(sound-obj-y) dma.o
617 obj-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
618 obj-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
619 obj-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
620 obj-y += device-hotplug.o pci-hotplug.o smbios.o
621 obj-y += extboot.o
622 ifeq ($(USE_KVM_PIT), 1)
623 obj-y += i8254-kvm.o
624 endif
625 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
626 endif
627 ifeq ($(TARGET_BASE_ARCH), ia64)
628 # Hardware support
629 obj-y += ide.o pckbd.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
630 obj-y += fdc.o mc146818rtc.o serial.o i8259.o ipf.o
631 obj-y += cirrus_vga.o parallel.o acpi.o piix_pci.o
632 obj-y += usb-uhci.o
633 endif
634 ifeq ($(TARGET_BASE_ARCH), ppc)
635 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
636 # shared objects
637 obj-y += ppc.o ide.o vga.o $(sound-obj-y) dma.o openpic.o
638 obj-y += cirrus_vga.o
639 # PREP target
640 obj-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
641 obj-y += prep_pci.o ppc_prep.o
642 # Mac shared devices
643 obj-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
644 # OldWorld PowerMac
645 obj-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
646 # NewWorld PowerMac
647 obj-y += unin_pci.o ppc_newworld.o
648 # PowerPC 4xx boards
649 obj-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
650 obj-y += ppc440.o ppc440_bamboo.o
651 # PowerPC E500 boards
652 obj-y += ppce500_pci.o ppce500_mpc8544ds.o
653 ifdef FDT_LIBS
654 obj-y += device_tree.o
655 LIBS+= $(FDT_LIBS)
656 endif
657 obj-$(CONFIG_KVM) += kvm_ppc.o
658 endif
659 ifeq ($(TARGET_BASE_ARCH), mips)
660 obj-y += mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
661 obj-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
662 obj-y += g364fb.o jazz_led.o dp8393x.o
663 obj-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
664 obj-y += piix_pci.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y)
665 obj-y += mipsnet.o
666 obj-y += pflash_cfi01.o
667 obj-y += vmware_vga.o
668 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
669 endif
670 ifeq ($(TARGET_BASE_ARCH), microblaze)
671 obj-y += petalogix_s3adsp1800_mmu.o
673 obj-y += microblaze_pic_cpu.o
674 obj-y += xilinx_intc.o
675 obj-y += xilinx_timer.o
676 obj-y += xilinx_uartlite.o
677 obj-y += xilinx_ethlite.o
679 obj-y += pflash_cfi02.o
680 ifdef FDT_LIBS
681 obj-y += device_tree.o
682 LIBS+= $(FDT_LIBS)
683 endif
684 endif
685 ifeq ($(TARGET_BASE_ARCH), cris)
686 # Boards
687 obj-y += cris_pic_cpu.o etraxfs.o axis_dev88.o
689 # IO blocks
690 obj-y += etraxfs_dma.o
691 obj-y += etraxfs_pic.o
692 obj-y += etraxfs_eth.o
693 obj-y += etraxfs_timer.o
694 obj-y += etraxfs_ser.o
696 obj-y += pflash_cfi02.o
697 endif
698 ifeq ($(TARGET_BASE_ARCH), sparc)
699 ifeq ($(TARGET_ARCH), sparc64)
700 obj-y += sun4u.o ide.o pckbd.o vga.o apb_pci.o
701 obj-y += fdc.o mc146818rtc.o serial.o
702 obj-y += cirrus_vga.o parallel.o
703 else
704 obj-y += sun4m.o tcx.o iommu.o slavio_intctl.o
705 obj-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
706 obj-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
707 endif
708 endif
709 ifeq ($(TARGET_BASE_ARCH), arm)
710 obj-y += integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
711 obj-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
712 obj-y += versatile_pci.o
713 obj-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
714 obj-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
715 obj-y += pl061.o
716 obj-y += arm-semi.o
717 obj-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
718 obj-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
719 obj-y += pflash_cfi01.o gumstix.o
720 obj-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
721 obj-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
722 obj-y += omap2.o omap_dss.o soc_dma.o
723 obj-y += omap_sx1.o palm.o tsc210x.o
724 obj-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
725 obj-y += mst_fpga.o mainstone.o
726 obj-y += musicpal.o pflash_cfi02.o
727 obj-y += framebuffer.o
728 obj-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
729 obj-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
730 obj-y += syborg_virtio.o
731 CPPFLAGS += -DHAS_AUDIO
732 endif
733 ifeq ($(TARGET_BASE_ARCH), sh4)
734 obj-y += shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
735 obj-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
736 obj-y += ide.o
737 endif
738 ifeq ($(TARGET_BASE_ARCH), m68k)
739 obj-y += an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
740 obj-y += m68k-semi.o dummy_m68k.o
741 endif
742 ifdef CONFIG_COCOA
743 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
744 ifdef CONFIG_COREAUDIO
745 COCOA_LIBS+=-framework CoreAudio
746 endif
747 endif
748 ifdef CONFIG_SLIRP
749 CPPFLAGS+=-I$(SRC_PATH)/slirp
750 endif
752 LIBS+=$(PTHREADLIBS)
753 LIBS+=$(CLOCKLIBS)
754 # specific flags are needed for non soft mmu emulator
755 ifdef CONFIG_STATIC
756 LDFLAGS+=-static
757 endif
758 ifndef CONFIG_DARWIN
759 ifndef CONFIG_WIN32
760 ifndef CONFIG_SOLARIS
761 ifndef CONFIG_AIX
762 LIBS+=-lutil
763 endif
764 endif
765 endif
766 endif
767 ifdef TARGET_GPROF
768 vl.o: CFLAGS+=-p
769 LDFLAGS+=-p
770 endif
772 ifeq ($(ARCH),ia64)
773 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
774 endif
776 ifdef CONFIG_WIN32
777 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
778 endif
780 # profiling code
781 ifdef TARGET_GPROF
782 LDFLAGS+=-p
783 main.o: CFLAGS+=-p
784 endif
785 ifeq ($(TARGET_ARCH), ia64)
786 firmware.o: firmware.c
787         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
788 endif
790 vl.o: CFLAGS+=$(SDL_CFLAGS)
792 vl.o: qemu-options.h
794 monitor.o: qemu-monitor.h
796 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
797 $(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
798 $(QEMU_PROG): $(obj-y) ../libqemu_common.a libqemu.a $(HWLIB)
799         $(call LINK,$(obj-y))
801 $(QEMU_PROG): ARLIBS += $(DEPLIBS)
802 $(QEMU_PROG): $(DEPLIBS)
804 endif # !CONFIG_USER_ONLY
806 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
807 ifeq ($(TARGET_XML_FILES),)
808         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
809 else
810         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
811 endif
813 qemu-options.h: $(SRC_PATH)/qemu-options.hx
814         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
816 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
817         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
819 clean:
820         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
821         rm -f *.d */*.d tcg/*.o
822         rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
824 install: all
825 ifneq ($(PROGS),)
826         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
827 endif
829 # Include automatically generated dependency files
830 -include $(wildcard *.d */*.d)