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