Regenerate bios for vtpr hibernate support
[qemu-kvm/amd-iommu.git] / Makefile.target
bloba86464fadf4af23af8665d564613a26708d9681c
1 CFLAGS=
2 LDFLAGS=
4 include config.mak
6 LDFLAGS_BASE:=$(LDFLAGS)
7 TARGET_BASE_ARCH:=$(TARGET_ARCH)
8 ifeq ($(TARGET_ARCH), x86_64)
9 TARGET_BASE_ARCH:=i386
10 endif
11 ifeq ($(TARGET_ARCH), mipsn32)
12 TARGET_BASE_ARCH:=mips
13 endif
14 ifeq ($(TARGET_ARCH), mips64)
15 TARGET_BASE_ARCH:=mips
16 endif
17 ifeq ($(TARGET_ARCH), ppc64)
18 TARGET_BASE_ARCH:=ppc
19 endif
20 ifeq ($(TARGET_ARCH), ppc64h)
21 TARGET_BASE_ARCH:=ppc
22 endif
23 ifeq ($(TARGET_ARCH), ppcemb)
24 TARGET_BASE_ARCH:=ppc
25 endif
26 ifeq ($(TARGET_ARCH), sparc64)
27 TARGET_BASE_ARCH:=sparc
28 endif
29 ifeq ($(TARGET_ARCH), ia64)
30 TARGET_BASE_ARCH:=ia64
31 endif
32 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
33 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
34 CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
35 #CFLAGS+=-Werror
36 LIBS=
37 DYNGEN=../dyngen$(EXESUF)
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 # We require -O2 to avoid the stack setup prologue in EXIT_TB
83 OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing
85 # cc-option
86 # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
88 cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
89               > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
91 OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
92 OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
93 OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
94 OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
95 OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
96 OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
97 OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
98 OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
99 OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
101 HELPER_CFLAGS=
103 ifeq ($(ARCH),i386)
104 HELPER_CFLAGS+=-fomit-frame-pointer
105 OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
106 # op.c and helper.c need this on 32-bit x86 system to avoid
107 # a compiler spill error. This can probably go away
108 # once the SSE ops have been converted to TCG
109 ifeq ($(HAVE_GT_GCC_3_3), true)
110 I386_CFLAGS=-march=i586 -mtune=i686
111 endif
112 endif
114 ifeq ($(ARCH),ppc)
115 CPPFLAGS+= -D__powerpc__
116 OP_CFLAGS+= -mlongcall
117 endif
119 ifeq ($(ARCH),sparc)
120   CFLAGS+=-ffixed-g2 -ffixed-g3
121   OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
122   ifeq ($(CONFIG_SOLARIS),yes)
123     OP_CFLAGS+=-fno-omit-frame-pointer
124   else
125     CFLAGS+=-ffixed-g1 -ffixed-g6
126     HELPER_CFLAGS+=-ffixed-i0
127   endif
128 endif
130 ifeq ($(ARCH),sparc64)
131   OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
132   ifneq ($(CONFIG_SOLARIS),yes)
133     CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
134     OP_CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
135   else
136     CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
137   endif
138 endif
140 ifeq ($(ARCH),alpha)
141 # -msmall-data is not used for OP_CFLAGS because we want two-instruction
142 # relocations for the constant constructions
143 # Ensure there's only a single GP
144 CFLAGS+=-msmall-data
145 endif
147 ifeq ($(ARCH),hppa)
148 OP_CFLAGS=-O1 -fno-delayed-branch
149 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
150 endif
152 ifeq ($(ARCH),ia64)
153 CFLAGS+=-mno-sdata
154 OP_CFLAGS+=-mno-sdata
155 endif
157 ifeq ($(ARCH),arm)
158 OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
159 endif
161 ifeq ($(ARCH),m68k)
162 OP_CFLAGS+=-fomit-frame-pointer
163 endif
165 ifeq ($(ARCH),mips)
166 OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
167 endif
169 ifeq ($(ARCH),mips64)
170 OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
171 endif
173 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
174 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
175 OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
177 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__user=
178 LIBS+=-lm
179 ifdef CONFIG_WIN32
180 LIBS+=-lwinmm -lws2_32 -liphlpapi
181 endif
182 ifdef CONFIG_SOLARIS
183 LIBS+=-lsocket -lnsl -lresolv
184 ifdef NEEDS_LIBSUNMATH
185 LIBS+=-lsunmath
186 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
187 OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
188 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
189 endif
190 endif
192 all: $(PROGS)
194 #########################################################
195 # cpu emulator library
196 LIBOBJS=exec.o kqemu.o cpu-exec.o host-utils.o
198 ifeq ($(NO_CPU_EMULATION), 1)
199 LIBOBJS+=fake-exec.o
200 else
201 LIBOBJS+= translate-all.o translate.o
202 endif
203 ifdef CONFIG_DYNGEN_OP
204 LIBOBJS+=op.o
205 endif
206 # TCG code generator
207 ifneq ($(TARGET_ARCH), ia64)
208 LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
209 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
210 endif
211 ifeq ($(ARCH),sparc64)
212 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
213 endif
215 ifeq ($(USE_KVM), 1)
216 LIBOBJS+=qemu-kvm.o kvm-compatfd.o
217 endif
218 ifdef CONFIG_SOFTFLOAT
219 LIBOBJS+=fpu/softfloat.o
220 else
221 LIBOBJS+=fpu/softfloat-native.o
222 endif
223 CPPFLAGS+=-I$(SRC_PATH)/fpu
225 ifeq ($(TARGET_ARCH), i386)
226 LIBOBJS+=helper.o
227 ifeq ($(USE_KVM), 1)
228 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
229 LIBOBJS+=qemu-kvm-helper.o
230 endif
231 endif
233 ifeq ($(TARGET_ARCH), x86_64)
234 LIBOBJS+=helper.o
235 ifeq ($(USE_KVM), 1)
236 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
237 LIBOBJS+=qemu-kvm-helper.o
238 endif
239 endif
241 ifeq ($(TARGET_BASE_ARCH), ppc)
242 ifeq ($(USE_KVM), 1)
243 LIBOBJS+= qemu-kvm-powerpc.o
244 endif
245 endif
247 LIBOBJS+= op_helper.o
249 ifneq ($(TARGET_ARCH), ia64)
250 LIBOBJS+= helper.o
251 endif
253 ifeq ($(TARGET_BASE_ARCH), arm)
254 LIBOBJS+= neon_helper.o iwmmxt_helper.o
255 endif
257 ifeq ($(TARGET_BASE_ARCH), alpha)
258 LIBOBJS+= alpha_palcode.o
259 endif
261 ifeq ($(TARGET_BASE_ARCH), ia64)
262 LIBOBJS+=op_helper.o firmware.o
263 ifeq ($(USE_KVM), 1)
264 LIBOBJS+=qemu-kvm-ia64.o
265 endif
266 endif
268 ifeq ($(TARGET_BASE_ARCH), cris)
269 LIBOBJS+= cris-dis.o
271 ifndef CONFIG_USER_ONLY
272 LIBOBJS+= mmu.o
273 endif
274 endif
277 # NOTE: the disassembler code is only needed for debugging
278 LIBOBJS+=disas.o
279 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
280 USE_I386_DIS=y
281 endif
282 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
283 USE_I386_DIS=y
284 endif
285 ifdef USE_I386_DIS
286 LIBOBJS+=i386-dis.o
287 endif
288 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
289 LIBOBJS+=alpha-dis.o
290 endif
291 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
292 LIBOBJS+=ppc-dis.o
293 endif
294 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
295 LIBOBJS+=mips-dis.o
296 endif
297 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
298 LIBOBJS+=sparc-dis.o
299 endif
300 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
301 LIBOBJS+=arm-dis.o
302 endif
303 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
304 LIBOBJS+=m68k-dis.o
305 endif
306 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
307 LIBOBJS+=sh4-dis.o
308 endif
309 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
310 LIBOBJS+=hppa-dis.o
311 endif
312 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
313 LIBOBJS+=s390-dis.o
314 endif
316 # libqemu
318 ifdef CONFIG_DYNGEN_OP
319 OPC_H = gen-op.h dyngen-opc.h op.h
320 endif
322 libqemu.a: $(LIBOBJS)
323         rm -f $@
324         $(AR) rcs $@ $(LIBOBJS)
326 translate.o: translate.c cpu.h $(OPC_H)
328 translate-all.o: translate-all.c cpu.h $(OPC_H)
330 tcg/tcg.o: cpu.h $(OPC_H)
332 tcg/tcg-dyngen.o: $(OPC_H)
334 tcg/tcg-runtime.o: $(OPC_H)
336 op.h: op.o $(DYNGEN)
337         $(DYNGEN) -o $@ $<
339 dyngen-opc.h: op.o $(DYNGEN)
340         $(DYNGEN) -c -o $@ $<
342 gen-op.h: op.o $(DYNGEN)
343         $(DYNGEN) -g -o $@ $<
345 op.o: op.c
346         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $<
348 machine.o: machine.c
349         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
351 # HELPER_CFLAGS is used for all the code compiled with static register
352 # variables
353 op_helper.o: op_helper.c
354         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $<
356 cpu-exec.o: cpu-exec.c $(OPC_H)
357         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
359 qemu-kvm-helper.o: qemu-kvm-helper.c
360         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
362 #########################################################
363 # Linux user emulator target
365 ifdef CONFIG_LINUX_USER
367 ifndef TARGET_ABI_DIR
368   TARGET_ABI_DIR=$(TARGET_ARCH)
369 endif
370 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
371 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
373 ifdef CONFIG_STATIC
374 LDFLAGS+=-static
375 endif
377 ifeq ($(ARCH),i386)
378 ifdef TARGET_GPROF
379 USE_I386_LD=y
380 endif
381 ifdef CONFIG_STATIC
382 USE_I386_LD=y
383 endif
384 ifdef USE_I386_LD
385 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
386 else
387 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
388 # that the kernel ELF loader considers as an executable. I think this
389 # is the simplest way to make it self virtualizable!
390 LDFLAGS+=-Wl,-shared
391 endif
392 endif
394 ifeq ($(ARCH),x86_64)
395 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
396 endif
398 ifeq ($(ARCH),ppc)
399 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
400 endif
402 ifeq ($(ARCH),ppc64)
403 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
404 endif
406 ifeq ($(ARCH),s390)
407 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
408 endif
410 ifeq ($(ARCH),sparc)
411 # -static is used to avoid g1/g3 usage by the dynamic linker    
412 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
413 endif
415 ifeq ($(ARCH),sparc64)
416 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
417 endif
419 ifeq ($(ARCH),alpha)
420 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
421 endif
423 ifeq ($(ARCH),ia64)
424 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
425 endif
427 ifeq ($(ARCH),arm)
428 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
429 endif
431 ifeq ($(ARCH),m68k)
432 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
433 endif
435 ifeq ($(ARCH),mips)
436 ifeq ($(WORDS_BIGENDIAN),yes)
437 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
438 else
439 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
440 endif
441 endif
443 ifeq ($(ARCH),mips64)
444 ifeq ($(WORDS_BIGENDIAN),yes)
445 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
446 else
447 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
448 endif
449 endif
451 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
452       elfload.o linuxload.o uaccess.o
453 LIBS+= $(AIOLIBS)
454 ifdef TARGET_HAS_BFLT
455 OBJS+= flatload.o
456 endif
457 ifdef TARGET_HAS_ELFLOAD32
458 OBJS+= elfload32.o
459 elfload32.o: elfload.c
460 endif
462 ifeq ($(TARGET_ARCH), i386)
463 OBJS+= vm86.o
464 endif
465 ifeq ($(TARGET_ARCH), arm)
466 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
467 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
468  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
469 endif
470 ifeq ($(TARGET_ARCH), m68k)
471 OBJS+= m68k-sim.o m68k-semi.o
472 endif
474 ifdef CONFIG_GDBSTUB
475 OBJS+=gdbstub.o
476 endif
478 OBJS+= libqemu.a
480 # Note: this is a workaround. The real fix is to avoid compiling
481 # cpu_signal_handler() in cpu-exec.c.
482 signal.o: signal.c
483         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
485 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
486         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
487 ifeq ($(ARCH),alpha)
488 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
489 # the address space (31 bit so sign extending doesn't matter)
490         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
491 endif
493 endif #CONFIG_LINUX_USER
495 #########################################################
496 # Darwin user emulator target
498 ifdef CONFIG_DARWIN_USER
500 VPATH+=:$(SRC_PATH)/darwin-user
501 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
503 # Leave some space for the regular program loading zone
504 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
506 LIBS+=-lmx
508 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
510 OBJS+= libqemu.a
512 ifdef CONFIG_GDBSTUB
513 OBJS+=gdbstub.o
514 endif
516 # Note: this is a workaround. The real fix is to avoid compiling
517 # cpu_signal_handler() in cpu-exec.c.
518 signal.o: signal.c
519         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
521 $(QEMU_PROG): $(OBJS)
522         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
524 endif #CONFIG_DARWIN_USER
526 #########################################################
527 # System emulator target
528 ifndef CONFIG_USER_ONLY
530 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o net-checksum.o migration.o
531 ifdef CONFIG_WIN32
532 OBJS+=block-raw-win32.o
533 else
534 OBJS+=block-raw-posix.o
535 endif
537 LIBS+=-lz
538 ifdef CONFIG_ALSA
539 LIBS += -lasound
540 endif
541 ifdef CONFIG_ESD
542 LIBS += -lesd
543 endif
544 ifdef CONFIG_PA
545 LIBS += -lpulse-simple
546 endif
547 ifdef CONFIG_DSOUND
548 LIBS += -lole32 -ldxguid
549 endif
550 ifdef CONFIG_FMOD
551 LIBS += $(CONFIG_FMOD_LIB)
552 endif
554 SOUND_HW = sb16.o es1370.o
555 ifdef CONFIG_AC97
556 SOUND_HW += ac97.o
557 endif
558 ifdef CONFIG_ADLIB
559 SOUND_HW += fmopl.o adlib.o
560 endif
561 ifdef CONFIG_GUS
562 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
563 endif
564 ifdef CONFIG_CS4231A
565 SOUND_HW += cs4231a.o
566 endif
568 ifdef CONFIG_KVM_KERNEL_INC
569 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
570 LIBS += -lkvm
571 DEPLIBS += ../libkvm/libkvm.a
572 endif
574 ifdef CONFIG_VNC_TLS
575 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
576 LIBS += $(CONFIG_VNC_TLS_LIBS)
577 endif
579 ifdef CONFIG_LIBFDT
580 LIBS += -lfdt
581 DEPLIBS += libfdt.a
582 endif
584 # SCSI layer
585 OBJS+= lsi53c895a.o esp.o
587 # USB layer
588 OBJS+= usb-ohci.o
590 # EEPROM emulation
591 OBJS += eeprom93xx.o
593 # PCI network cards
594 OBJS += eepro100.o
595 OBJS += ne2000.o
596 OBJS += pcnet.o
597 OBJS += rtl8139.o
598 OBJS += e1000.o
600 # virtio devices
601 OBJS += virtio.o virtio-net.o virtio-blk.o
603 OBJS += device-hotplug.o
605 ifeq ($(TARGET_BASE_ARCH), i386)
606 # Hardware support
607 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
608 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
609 OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
610 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o extboot.o
611 ifeq ($(USE_KVM_PIT), 1)
612 OBJS+= i8254-kvm.o
613 endif
614 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
615 endif
616 ifeq ($(TARGET_BASE_ARCH), ia64)
617 # Hardware support
618 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
619 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
620 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
621 OBJS+= usb-uhci.o smbus_eeprom.o
622 endif
623 ifeq ($(TARGET_BASE_ARCH), ppc)
624 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
625 # shared objects
626 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
627 OBJS+= cirrus_vga.o
628 # PREP target
629 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
630 OBJS+= prep_pci.o ppc_prep.o
631 # Mac shared devices
632 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
633 # OldWorld PowerMac
634 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
635 # NewWorld PowerMac
636 OBJS+= unin_pci.o ppc_chrp.o
637 # PowerPC 4xx boards
638 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
639 OBJS+= ppc440.o ppc440_bamboo.o device_tree.o
640 endif
641 ifeq ($(TARGET_BASE_ARCH), mips)
642 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
643 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
644 OBJS+= g364fb.o jazz_led.o
645 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
646 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
647 OBJS+= mipsnet.o
648 OBJS+= pflash_cfi01.o
649 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
650 endif
651 ifeq ($(TARGET_BASE_ARCH), cris)
652 OBJS+= etraxfs.o
653 OBJS+= etraxfs_dma.o
654 OBJS+= etraxfs_pic.o
655 OBJS+= etraxfs_eth.o
656 OBJS+= etraxfs_timer.o
657 OBJS+= etraxfs_ser.o
659 OBJS+= ptimer.o
660 OBJS+= pflash_cfi02.o
661 endif
662 ifeq ($(TARGET_BASE_ARCH), sparc)
663 ifeq ($(TARGET_ARCH), sparc64)
664 OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
665 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
666 OBJS+= cirrus_vga.o parallel.o ptimer.o
667 else
668 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
669 OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
670 OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
671 endif
672 endif
673 ifeq ($(TARGET_BASE_ARCH), arm)
674 OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
675 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
676 OBJS+= versatile_pci.o ptimer.o
677 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
678 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
679 OBJS+= pl061.o
680 OBJS+= arm-semi.o
681 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
682 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
683 OBJS+= pflash_cfi01.o gumstix.o
684 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
685 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
686 OBJS+= omap2.o omap_dss.o soc_dma.o
687 OBJS+= palm.o tsc210x.o
688 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
689 OBJS+= tsc2005.o
690 OBJS+= mst_fpga.o mainstone.o
691 OBJS+= musicpal.o pflash_cfi02.o
692 CPPFLAGS += -DHAS_AUDIO
693 endif
694 ifeq ($(TARGET_BASE_ARCH), sh4)
695 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
696 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
697 endif
698 ifeq ($(TARGET_BASE_ARCH), m68k)
699 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
700 OBJS+= m68k-semi.o dummy_m68k.o
701 endif
702 ifdef CONFIG_GDBSTUB
703 OBJS+=gdbstub.o
704 endif
705 ifdef CONFIG_COCOA
706 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
707 ifdef CONFIG_COREAUDIO
708 COCOA_LIBS+=-framework CoreAudio
709 endif
710 endif
711 ifdef CONFIG_SLIRP
712 CPPFLAGS+=-I$(SRC_PATH)/slirp
713 endif
715 LIBS+=$(AIOLIBS)
716 # specific flags are needed for non soft mmu emulator
717 ifdef CONFIG_STATIC
718 LDFLAGS+=-static
719 endif
720 ifndef CONFIG_DARWIN
721 ifndef CONFIG_WIN32
722 ifndef CONFIG_SOLARIS
723 LIBS+=-lutil
724 endif
725 endif
726 endif
727 ifdef TARGET_GPROF
728 vl.o: CFLAGS+=-p
729 LDFLAGS+=-p
730 endif
732 ifeq ($(ARCH),ia64)
733 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
734 endif
736 ifdef CONFIG_WIN32
737 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
738 endif
740 # profiling code
741 ifdef TARGET_GPROF
742 LDFLAGS+=-p
743 main.o: CFLAGS+=-p
744 endif
745 ifeq ($(TARGET_ARCH), ia64)
746 firmware.o: firmware.c
747         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
748 endif
750 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
751         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
753 endif # !CONFIG_USER_ONLY
755 %.o: %.c
756         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
758 %.o: %.S
759         $(CC) $(CPPFLAGS) -c -o $@ $<
761 clean:
762         rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
763         rm -f *.d */*.d tcg/*.o
765 install: all
766 ifneq ($(PROGS),)
767         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
768 endif
770 # Include automatically generated dependency files
771 -include $(wildcard *.d */*.d)