Remove redunant check for s->cpu_env
[qemu-kvm/fedora.git] / Makefile.target
blobca8d54df72880e0eec87b3cc5db46e2d3c934c99
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)
140 # Dummy command so that make thinks it has done something
141         @true
143 #########################################################
144 # cpu emulator library
145 ifeq ($(NO_CPU_EMULATION), 1)
146 LIBOBJS=exec.o fake-exec.o cpu-exec.o host-utils.o
147 else
148 LIBOBJS=exec.o translate-all.o cpu-exec.o\
149         translate.o host-utils.o
150 endif
152 ifdef CONFIG_KQEMU
153 LIBOBJS+= kqemu.o
154 endif
155 # TCG code generator
156 ifneq ($(NO_CPU_EMULATION), 1)
157 LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
158 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
159 endif
160 ifeq ($(ARCH),sparc64)
161 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
162 endif
164 ifeq ($(USE_KVM), 1)
165 LIBOBJS+=qemu-kvm.o libkvm.o
166 endif
167 ifdef CONFIG_SOFTFLOAT
168 LIBOBJS+=fpu/softfloat.o
169 else
170 LIBOBJS+=fpu/softfloat-native.o
171 endif
172 CPPFLAGS+=-I$(SRC_PATH)/fpu
173 LIBOBJS+= op_helper.o helper.o
175 ifeq ($(TARGET_ARCH), i386)
176 LIBOBJS+=helper.o
177 ifeq ($(USE_KVM), 1)
178 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
179 LIBOBJS+=qemu-kvm-helper.o
180 endif
181 endif
183 ifeq ($(TARGET_ARCH), x86_64)
184 LIBOBJS+=helper.o
185 ifeq ($(USE_KVM), 1)
186 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
187 LIBOBJS+=qemu-kvm-helper.o
188 endif
189 endif
191 LIBOBJS+= op_helper.o
193 ifneq ($(TARGET_ARCH), ia64)
194 LIBOBJS+= helper.o
195 endif
197 ifeq ($(TARGET_BASE_ARCH), arm)
198 LIBOBJS+= neon_helper.o iwmmxt_helper.o
199 endif
201 ifeq ($(TARGET_BASE_ARCH), alpha)
202 LIBOBJS+= alpha_palcode.o
203 endif
205 ifeq ($(TARGET_BASE_ARCH), ia64)
206 LIBOBJS+=op_helper.o firmware.o
207 ifeq ($(USE_KVM), 1)
208 LIBOBJS+=qemu-kvm-ia64.o
209 endif
210 endif
212 ifeq ($(TARGET_BASE_ARCH), cris)
213 LIBOBJS+= cris-dis.o
215 ifndef CONFIG_USER_ONLY
216 LIBOBJS+= mmu.o
217 endif
218 endif
221 # NOTE: the disassembler code is only needed for debugging
222 LIBOBJS+=disas.o
223 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
224 USE_I386_DIS=y
225 endif
226 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
227 USE_I386_DIS=y
228 endif
229 ifdef USE_I386_DIS
230 LIBOBJS+=i386-dis.o
231 endif
232 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
233 LIBOBJS+=alpha-dis.o
234 endif
235 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
236 LIBOBJS+=ppc-dis.o
237 endif
238 ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
239 LIBOBJS+=microblaze-dis.o
240 ifndef CONFIG_USER_ONLY
241 LIBOBJS+= mmu.o
242 endif
243 endif
244 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
245 LIBOBJS+=mips-dis.o
246 endif
247 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
248 LIBOBJS+=sparc-dis.o
249 endif
250 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
251 LIBOBJS+=arm-dis.o
252 endif
253 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
254 LIBOBJS+=m68k-dis.o
255 endif
256 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
257 LIBOBJS+=sh4-dis.o
258 endif
259 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
260 LIBOBJS+=hppa-dis.o
261 endif
262 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
263 LIBOBJS+=s390-dis.o
264 endif
266 # libqemu
268 libqemu.a: $(LIBOBJS)
270 translate.o: translate.c cpu.h
272 translate-all.o: translate-all.c cpu.h
274 tcg/tcg.o: cpu.h
276 # HELPER_CFLAGS is used for all the code compiled with static register
277 # variables
278 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
280 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
282 qemu-kvm-helper.o: qemu-kvm-helper.c
283         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
285 #########################################################
286 # Linux user emulator target
288 ifdef CONFIG_LINUX_USER
290 ifndef TARGET_ABI_DIR
291   TARGET_ABI_DIR=$(TARGET_ARCH)
292 endif
293 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
294 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
296 ifdef CONFIG_STATIC
297 LDFLAGS+=-static
298 endif
300 ifeq ($(ARCH),i386)
301 ifdef TARGET_GPROF
302 USE_I386_LD=y
303 endif
304 ifdef CONFIG_STATIC
305 USE_I386_LD=y
306 endif
307 ifdef USE_I386_LD
308 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
309 else
310 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
311 # that the kernel ELF loader considers as an executable. I think this
312 # is the simplest way to make it self virtualizable!
313 LDFLAGS+=-Wl,-shared
314 endif
315 endif
317 ifeq ($(ARCH),x86_64)
318 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
319 endif
321 ifeq ($(ARCH),ppc)
322 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
323 endif
325 ifeq ($(ARCH),ppc64)
326 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
327 endif
329 ifeq ($(ARCH),s390)
330 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
331 endif
333 ifeq ($(ARCH),sparc)
334 # -static is used to avoid g1/g3 usage by the dynamic linker    
335 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
336 endif
338 ifeq ($(ARCH),sparc64)
339 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
340 endif
342 ifeq ($(ARCH),alpha)
343 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
344 endif
346 ifeq ($(ARCH),ia64)
347 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
348 endif
350 ifeq ($(ARCH),arm)
351 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
352 endif
354 ifeq ($(ARCH),m68k)
355 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
356 endif
358 ifeq ($(ARCH),mips)
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 ifeq ($(ARCH),mips64)
367 ifeq ($(WORDS_BIGENDIAN),yes)
368 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
369 else
370 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
371 endif
372 endif
374 # profiling code
375 ifdef TARGET_GPROF
376 LDFLAGS+=-p
377 CFLAGS+=-p
378 endif
380 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
381       elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
382 LIBS+= $(PTHREADLIBS)
383 LIBS+= $(CLOCKLIBS)
384 ifdef TARGET_HAS_BFLT
385 OBJS+= flatload.o
386 endif
387 ifdef TARGET_HAS_ELFLOAD32
388 OBJS+= elfload32.o
389 elfload32.o: elfload.c
390 endif
392 ifeq ($(TARGET_ARCH), i386)
393 OBJS+= vm86.o
394 endif
395 ifeq ($(TARGET_ARCH), arm)
396 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
397 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
398  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
399 endif
400 ifeq ($(TARGET_ARCH), m68k)
401 OBJS+= m68k-sim.o m68k-semi.o
402 endif
404 # Note: this is a workaround. The real fix is to avoid compiling
405 # cpu_signal_handler() in cpu-exec.c.
406 signal.o: CFLAGS += $(HELPER_CFLAGS)
408 $(QEMU_PROG): ARLIBS=../libqemu_user.a libqemu.a
409 $(QEMU_PROG): $(OBJS) ../libqemu_user.a libqemu.a
410         $(call LINK,$(OBJS))
411 ifeq ($(ARCH),alpha)
412 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
413 # the address space (31 bit so sign extending doesn't matter)
414         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
415 endif
417 endif #CONFIG_LINUX_USER
419 #########################################################
420 # Darwin user emulator target
422 ifdef CONFIG_DARWIN_USER
424 VPATH+=:$(SRC_PATH)/darwin-user
425 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
427 # Leave some space for the regular program loading zone
428 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
430 LIBS+=-lmx
432 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
433       gdbstub.o gdbstub-xml.o
435 # Note: this is a workaround. The real fix is to avoid compiling
436 # cpu_signal_handler() in cpu-exec.c.
437 signal.o: CFLAGS += $(HELPER_CFLAGS)
439 $(QEMU_PROG): ARLIBS=libqemu.a
440 $(QEMU_PROG): $(OBJS) libqemu.a
441         $(call LINK,$(OBJS))
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       gdbstub.o gdbstub-xml.o
533 OBJS+= uaccess.o
535 # Note: this is a workaround. The real fix is to avoid compiling
536 # cpu_signal_handler() in cpu-exec.c.
537 signal.o: CFLAGS += $(HELPER_CFLAGS)
539 $(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
540 $(QEMU_PROG): $(OBJS) libqemu.a ../libqemu_user.a
541         $(call LINK,$(OBJS))
543 endif #CONFIG_BSD_USER
545 #########################################################
546 # System emulator target
547 ifndef CONFIG_USER_ONLY
549 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
550      gdbstub.o gdbstub-xml.o
551 # virtio has to be here due to weird dependency between PCI and virtio-net.
552 # need to fix this properly
553 OBJS+=virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
554 ifdef CONFIG_KVM
555 OBJS+=kvm.o kvm-all.o
556 endif
558 LIBS+=-lz
559 ifdef CONFIG_ALSA
560 LIBS += -lasound
561 endif
562 ifdef CONFIG_ESD
563 LIBS += -lesd
564 endif
565 ifdef CONFIG_PA
566 LIBS += -lpulse-simple
567 endif
568 ifdef CONFIG_DSOUND
569 LIBS += -lole32 -ldxguid
570 endif
571 ifdef CONFIG_FMOD
572 LIBS += $(CONFIG_FMOD_LIB)
573 endif
574 ifdef CONFIG_OSS
575 LIBS += $(CONFIG_OSS_LIB)
576 endif
578 SOUND_HW = sb16.o es1370.o ac97.o
579 ifdef CONFIG_ADLIB
580 SOUND_HW += fmopl.o adlib.o
581 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
582 endif
583 ifdef CONFIG_GUS
584 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
585 endif
586 ifdef CONFIG_CS4231A
587 SOUND_HW += cs4231a.o
588 endif
590 ifdef CONFIG_VNC_TLS
591 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
592 LIBS += $(CONFIG_VNC_TLS_LIBS)
593 endif
595 ifdef CONFIG_VNC_SASL
596 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
597 LIBS += $(CONFIG_VNC_SASL_LIBS)
598 endif
600 ifdef CONFIG_BLUEZ
601 LIBS += $(CONFIG_BLUEZ_LIBS)
602 endif
604 # xen backend driver support
605 XEN_OBJS := xen_machine_pv.o xen_domainbuild.o
606 ifeq ($(CONFIG_XEN), yes)
607   OBJS += $(XEN_OBJS)
608   LIBS += $(XEN_LIBS)
609 endif
611 # USB layer
612 OBJS+= usb-ohci.o
614 # PCI network cards
615 OBJS += eepro100.o
616 OBJS += ne2000.o
617 OBJS += pcnet.o
618 OBJS += rtl8139.o
619 OBJS += e1000.o
621 # Generic watchdog support and some watchdog devices
622 OBJS += wdt_ib700.o wdt_i6300esb.o
624 ifeq ($(USE_KVM_DEVICE_ASSIGNMENT), 1)
625 OBJS+= device-assignment.o
626 LIBS+=-lpci
627 endif
629 ifeq ($(TARGET_BASE_ARCH), i386)
630 # Hardware support
631 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o
632 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
633 OBJS+= cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
634 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
635 OBJS += device-hotplug.o pci-hotplug.o smbios.o
636 OBJS+= extboot.o
637 ifeq ($(USE_KVM_PIT), 1)
638 OBJS+= i8254-kvm.o
639 endif
640 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
641 endif
642 ifeq ($(TARGET_BASE_ARCH), ia64)
643 # Hardware support
644 OBJS+= ide.o pckbd.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
645 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
646 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
647 OBJS+= usb-uhci.o
648 endif
649 ifeq ($(TARGET_BASE_ARCH), ppc)
650 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
651 # shared objects
652 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
653 OBJS+= cirrus_vga.o
654 # PREP target
655 OBJS+= pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
656 OBJS+= prep_pci.o ppc_prep.o
657 # Mac shared devices
658 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
659 # OldWorld PowerMac
660 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
661 # NewWorld PowerMac
662 OBJS+= unin_pci.o ppc_newworld.o
663 # PowerPC 4xx boards
664 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
665 OBJS+= ppc440.o ppc440_bamboo.o
666 # PowerPC E500 boards
667 OBJS+= ppce500_pci.o ppce500_mpc8544ds.o
668 ifdef FDT_LIBS
669 OBJS+= device_tree.o
670 LIBS+= $(FDT_LIBS)
671 endif
672 ifdef CONFIG_KVM
673 OBJS+= kvm_ppc.o
674 endif
675 endif
676 ifeq ($(TARGET_BASE_ARCH), mips)
677 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
678 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
679 OBJS+= g364fb.o jazz_led.o dp8393x.o
680 OBJS+= ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
681 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
682 OBJS+= mipsnet.o
683 OBJS+= pflash_cfi01.o
684 OBJS+= vmware_vga.o
685 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
686 endif
687 ifeq ($(TARGET_BASE_ARCH), microblaze)
688 OBJS+= petalogix_s3adsp1800_mmu.o
690 OBJS+= microblaze_pic_cpu.o
691 OBJS+= xilinx_intc.o
692 OBJS+= xilinx_timer.o
693 OBJS+= xilinx_uartlite.o
694 OBJS+= xilinx_ethlite.o
696 OBJS+= pflash_cfi02.o
697 ifdef FDT_LIBS
698 OBJS+= device_tree.o
699 LIBS+= $(FDT_LIBS)
700 endif
701 endif
702 ifeq ($(TARGET_BASE_ARCH), cris)
703 # Boards
704 OBJS+= cris_pic_cpu.o etraxfs.o axis_dev88.o
706 # IO blocks
707 OBJS+= etraxfs_dma.o
708 OBJS+= etraxfs_pic.o
709 OBJS+= etraxfs_eth.o
710 OBJS+= etraxfs_timer.o
711 OBJS+= etraxfs_ser.o
713 OBJS+= pflash_cfi02.o
714 endif
715 ifeq ($(TARGET_BASE_ARCH), sparc)
716 ifeq ($(TARGET_ARCH), sparc64)
717 OBJS+= sun4u.o ide.o pckbd.o vga.o apb_pci.o
718 OBJS+= fdc.o mc146818rtc.o serial.o
719 OBJS+= cirrus_vga.o parallel.o
720 else
721 OBJS+= sun4m.o tcx.o iommu.o slavio_intctl.o
722 OBJS+= slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
723 OBJS+= cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
724 endif
725 endif
726 ifeq ($(TARGET_BASE_ARCH), arm)
727 OBJS+= integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
728 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
729 OBJS+= versatile_pci.o
730 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
731 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
732 OBJS+= pl061.o
733 OBJS+= arm-semi.o
734 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
735 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
736 OBJS+= pflash_cfi01.o gumstix.o
737 OBJS+= zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
738 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
739 OBJS+= omap2.o omap_dss.o soc_dma.o
740 OBJS+= omap_sx1.o palm.o tsc210x.o
741 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
742 OBJS+= mst_fpga.o mainstone.o
743 OBJS+= musicpal.o pflash_cfi02.o
744 OBJS+= framebuffer.o
745 OBJS+= syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
746 OBJS+= syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
747 OBJS+= syborg_virtio.o
748 CPPFLAGS += -DHAS_AUDIO
749 endif
750 ifeq ($(TARGET_BASE_ARCH), sh4)
751 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
752 OBJS+= sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
753 OBJS+= ide.o
754 endif
755 ifeq ($(TARGET_BASE_ARCH), m68k)
756 OBJS+= an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
757 OBJS+= m68k-semi.o dummy_m68k.o
758 endif
759 ifdef CONFIG_COCOA
760 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
761 ifdef CONFIG_COREAUDIO
762 COCOA_LIBS+=-framework CoreAudio
763 endif
764 endif
765 ifdef CONFIG_SLIRP
766 CPPFLAGS+=-I$(SRC_PATH)/slirp
767 endif
769 LIBS+=$(PTHREADLIBS)
770 LIBS+=$(CLOCKLIBS)
771 # specific flags are needed for non soft mmu emulator
772 ifdef CONFIG_STATIC
773 LDFLAGS+=-static
774 endif
775 ifndef CONFIG_DARWIN
776 ifndef CONFIG_WIN32
777 ifndef CONFIG_SOLARIS
778 ifndef CONFIG_AIX
779 LIBS+=-lutil
780 endif
781 endif
782 endif
783 endif
784 ifdef TARGET_GPROF
785 vl.o: CFLAGS+=-p
786 LDFLAGS+=-p
787 endif
789 ifeq ($(ARCH),ia64)
790 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
791 endif
793 ifdef CONFIG_WIN32
794 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
795 endif
797 # profiling code
798 ifdef TARGET_GPROF
799 LDFLAGS+=-p
800 main.o: CFLAGS+=-p
801 endif
802 ifeq ($(TARGET_ARCH), ia64)
803 firmware.o: firmware.c
804         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
805 endif
807 vl.o: qemu-options.h
809 monitor.o: qemu-monitor.h
811 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
812 $(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
813 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB)
814         $(call LINK,$(OBJS))
816 $(QEMU_PROG): ARLIBS += $(DEPLIBS)
817 $(QEMU_PROG): $(DEPLIBS)
819 endif # !CONFIG_USER_ONLY
821 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
822 ifeq ($(TARGET_XML_FILES),)
823         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
824 else
825         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
826 endif
828 qemu-options.h: $(SRC_PATH)/qemu-options.hx
829         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
831 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
832         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
834 clean:
835         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
836         rm -f *.d */*.d tcg/*.o
837         rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
839 install: all
840 ifneq ($(PROGS),)
841         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
842 endif
844 # Include automatically generated dependency files
845 -include $(wildcard *.d */*.d)