Multi-profile DVD-ROM support
[qemu-kvm/amd-iommu.git] / Makefile.target
blobbb7be0f6b5aeb92a73c6ee536067b4e16594b3a0
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 -MP -DNEED_CPU_H
35 ifdef CONFIG_DARWIN_USER
36 VPATH+=:$(SRC_PATH)/darwin-user
37 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
38 endif
39 ifdef CONFIG_LINUX_USER
40 VPATH+=:$(SRC_PATH)/linux-user
41 ifndef TARGET_ABI_DIR
42   TARGET_ABI_DIR=$(TARGET_ARCH)
43 endif
44 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
45 endif
46 BASE_CFLAGS=
47 BASE_LDFLAGS=
48 #CFLAGS+=-Werror
49 LIBS=
50 HELPER_CFLAGS=$(CFLAGS)
51 DYNGEN=../dyngen$(EXESUF)
52 # user emulator name
53 TARGET_ARCH2=$(TARGET_ARCH)
54 ifeq ($(TARGET_ARCH),arm)
55   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
56     TARGET_ARCH2=armeb
57   endif
58 endif
59 ifeq ($(TARGET_ARCH),sh4)
60   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
61     TARGET_ARCH2=sh4eb
62   endif
63 endif
64 ifeq ($(TARGET_ARCH),mips)
65   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
66     TARGET_ARCH2=mipsel
67   endif
68 endif
69 ifeq ($(TARGET_ARCH),mipsn32)
70   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
71     TARGET_ARCH2=mipsn32el
72   endif
73 endif
74 ifeq ($(TARGET_ARCH),mips64)
75   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
76     TARGET_ARCH2=mips64el
77   endif
78 endif
79 ifeq ($(TARGET_ARCH),sparc64)
80   ifeq ($(TARGET_ABI_DIR),sparc)
81     TARGET_ARCH2=sparc32plus
82   endif
83 endif
84 QEMU_USER=qemu-$(TARGET_ARCH2)
85 # system emulator name
86 ifdef CONFIG_SOFTMMU
87 ifeq ($(TARGET_ARCH), i386)
88 QEMU_SYSTEM=qemu$(EXESUF)
89 else
90 QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF)
91 endif
92 else
93 QEMU_SYSTEM=qemu-fast
94 endif
96 ifdef CONFIG_USER_ONLY
97 PROGS=$(QEMU_USER)
98 else
99 PROGS+=$(QEMU_SYSTEM)
100 ifndef CONFIG_SOFTMMU
101 CONFIG_STATIC=y
102 endif
103 endif # !CONFIG_USER_ONLY
105 ifdef CONFIG_STATIC
106 BASE_LDFLAGS+=-static
107 endif
109 # We require -O2 to avoid the stack setup prologue in EXIT_TB
110 OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing
112 # cc-option
113 # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
115 cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
116               > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
118 OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
119 OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
120 OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
121 OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
122 OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
123 OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
124 OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
125 OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
126 OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
128 ifeq ($(ARCH),i386)
129 HELPER_CFLAGS+=-fomit-frame-pointer
130 OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
131 ifdef TARGET_GPROF
132 USE_I386_LD=y
133 endif
134 ifdef CONFIG_STATIC
135 USE_I386_LD=y
136 endif
137 ifdef USE_I386_LD
138 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
139 else
140 ifdef CONFIG_LINUX_USER
141 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
142 # that the kernel ELF loader considers as an executable. I think this
143 # is the simplest way to make it self virtualizable!
144 BASE_LDFLAGS+=-Wl,-shared
145 endif
146 endif
147 endif
149 ifeq ($(ARCH),x86_64)
150   ifneq ($(CONFIG_SOLARIS),yes)
151     BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
152   endif
153 endif
155 ifeq ($(ARCH),ppc)
156 CPPFLAGS+= -D__powerpc__
157 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
158 endif
160 ifeq ($(ARCH),s390)
161 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
162 endif
164 ifeq ($(ARCH),sparc)
165   BASE_CFLAGS+=-ffixed-g2 -ffixed-g3
166   OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
167   ifeq ($(CONFIG_SOLARIS),yes)
168     OP_CFLAGS+=-fno-omit-frame-pointer
169   else
170     BASE_CFLAGS+=-ffixed-g1 -ffixed-g6
171     HELPER_CFLAGS=$(CFLAGS) -ffixed-i0
172     # -static is used to avoid g1/g3 usage by the dynamic linker
173     BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
174   endif
175 endif
177 ifeq ($(ARCH),sparc64)
178   BASE_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
179   OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
180   ifneq ($(CONFIG_SOLARIS),yes)
181     BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
182     OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
183   endif
184 endif
186 ifeq ($(ARCH),alpha)
187 # -msmall-data is not used for OP_CFLAGS because we want two-instruction
188 # relocations for the constant constructions
189 # Ensure there's only a single GP
190 BASE_CFLAGS+=-msmall-data
191 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
192 endif
194 ifeq ($(ARCH),ia64)
195 BASE_CFLAGS+=-mno-sdata
196 OP_CFLAGS+=-mno-sdata
197 BASE_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
198 endif
200 ifeq ($(ARCH),arm)
201 OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
202 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
203 endif
205 ifeq ($(ARCH),m68k)
206 OP_CFLAGS+=-fomit-frame-pointer
207 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
208 endif
210 ifeq ($(ARCH),mips)
211 OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
212 ifeq ($(WORDS_BIGENDIAN),yes)
213 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
214 else
215 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
216 endif
217 endif
219 ifeq ($(ARCH),mips64)
220 OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
221 ifeq ($(WORDS_BIGENDIAN),yes)
222 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
223 else
224 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
225 endif
226 endif
228 ifeq ($(CONFIG_DARWIN),yes)
229 LIBS+=-lmx
230 endif
232 ifdef CONFIG_DARWIN_USER
233 # Leave some space for the regular program loading zone
234 BASE_LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
235 endif
237 BASE_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
238 BASE_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
239 OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
240 OP_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
242 #########################################################
244 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__user=
245 LIBS+=-lm
246 ifndef CONFIG_USER_ONLY
247 LIBS+=-lz
248 endif
249 ifdef CONFIG_WIN32
250 LIBS+=-lwinmm -lws2_32 -liphlpapi
251 endif
252 ifdef CONFIG_SOLARIS
253 LIBS+=-lsocket -lnsl -lresolv
254 ifdef NEEDS_LIBSUNMATH
255 LIBS+=-lsunmath
256 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
257 OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
258 BASE_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
259 endif
260 endif
262 # profiling code
263 ifdef TARGET_GPROF
264 BASE_LDFLAGS+=-p
265 main.o: BASE_CFLAGS+=-p
266 endif
268 ifdef CONFIG_LINUX_USER
269 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
270       elfload.o linuxload.o uaccess.o
271 LIBS+= $(AIOLIBS)
272 ifdef TARGET_HAS_BFLT
273 OBJS+= flatload.o
274 endif
275 ifdef TARGET_HAS_ELFLOAD32
276 OBJS+= elfload32.o
277 elfload32.o: elfload.c
278 endif
280 ifeq ($(TARGET_ARCH), i386)
281 OBJS+= vm86.o
282 endif
283 ifeq ($(TARGET_ARCH), arm)
284 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
285 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
286  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
287 endif
288 ifeq ($(TARGET_ARCH), m68k)
289 OBJS+= m68k-sim.o m68k-semi.o
290 endif
291 endif #CONFIG_LINUX_USER
293 ifdef CONFIG_DARWIN_USER
294 OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
295 endif
297 SRCS:= $(OBJS:.o=.c)
298 OBJS+= libqemu.a
300 # cpu emulator library
301 LIBOBJS=exec.o kqemu.o qemu-kvm.o translate-op.o translate-all.o cpu-exec.o\
302         translate.o op.o host-utils.o qemu-kvm-helper.o
303 ifdef CONFIG_SOFTFLOAT
304 LIBOBJS+=fpu/softfloat.o
305 else
306 LIBOBJS+=fpu/softfloat-native.o
307 endif
308 CPPFLAGS+=-I$(SRC_PATH)/fpu
310 ifeq ($(TARGET_ARCH), i386)
311 LIBOBJS+=helper.o helper2.o
312 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
313 endif
315 ifeq ($(TARGET_ARCH), x86_64)
316 LIBOBJS+=helper.o helper2.o
317 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
318 endif
320 ifeq ($(TARGET_BASE_ARCH), ppc)
321 LIBOBJS+= op_helper.o helper.o
322 endif
324 ifeq ($(TARGET_BASE_ARCH), mips)
325 LIBOBJS+= op_helper.o helper.o
326 endif
328 ifeq ($(TARGET_BASE_ARCH), sparc)
329 LIBOBJS+= op_helper.o helper.o
330 endif
332 ifeq ($(TARGET_BASE_ARCH), arm)
333 LIBOBJS+= op_helper.o helper.o
334 endif
336 ifeq ($(TARGET_BASE_ARCH), sh4)
337 LIBOBJS+= op_helper.o helper.o
338 endif
340 ifeq ($(TARGET_BASE_ARCH), m68k)
341 LIBOBJS+= op_helper.o helper.o
342 endif
344 ifeq ($(TARGET_BASE_ARCH), alpha)
345 LIBOBJS+= op_helper.o helper.o alpha_palcode.o
346 endif
348 ifeq ($(TARGET_BASE_ARCH), ia64)
349 LIBOBJS+=op_helper.o firmware.o
350 LIBOBJS+=qemu-kvm-ia64.o
351 endif
353 ifeq ($(TARGET_BASE_ARCH), cris)
354 LIBOBJS+= op_helper.o helper.o
355 LIBOBJS+= cris-dis.o
357 ifndef CONFIG_USER_ONLY
358 LIBOBJS+= mmu.o
359 endif
360 endif
363 # NOTE: the disassembler code is only needed for debugging
364 LIBOBJS+=disas.o
365 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
366 USE_I386_DIS=y
367 endif
368 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
369 USE_I386_DIS=y
370 endif
371 ifdef USE_I386_DIS
372 LIBOBJS+=i386-dis.o
373 endif
374 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
375 LIBOBJS+=alpha-dis.o
376 endif
377 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
378 LIBOBJS+=ppc-dis.o
379 endif
380 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
381 LIBOBJS+=mips-dis.o
382 endif
383 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
384 LIBOBJS+=sparc-dis.o
385 endif
386 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
387 LIBOBJS+=arm-dis.o
388 endif
389 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
390 LIBOBJS+=m68k-dis.o
391 endif
392 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
393 LIBOBJS+=sh4-dis.o
394 endif
395 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
396 LIBOBJS+=s390-dis.o
397 endif
399 ifdef CONFIG_GDBSTUB
400 OBJS+=gdbstub.o
401 endif
403 all: $(PROGS)
405 $(QEMU_USER): $(OBJS)
406         $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^  $(LIBS)
407 ifeq ($(ARCH),alpha)
408 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
409 # the address space (31 bit so sign extending doesn't matter)
410         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
411 endif
413 # must use static linking to avoid leaving stuff in virtual address space
414 VL_OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o migration.o
415 # XXX: suppress QEMU_TOOL tests
416 ifdef CONFIG_WIN32
417 VL_OBJS+=block-raw-win32.o
418 else
419 VL_OBJS+=block-raw-posix.o
420 endif
422 ifdef CONFIG_ALSA
423 LIBS += -lasound
424 endif
425 ifdef CONFIG_DSOUND
426 LIBS += -lole32 -ldxguid
427 endif
428 ifdef CONFIG_FMOD
429 LIBS += $(CONFIG_FMOD_LIB)
430 endif
432 SOUND_HW = sb16.o es1370.o
433 ifdef CONFIG_ADLIB
434 SOUND_HW += fmopl.o adlib.o
435 endif
437 ifdef CONFIG_KVM_KERNEL_INC
438 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
439 LIBS += -lkvm
440 DEPLIBS += ../libkvm/libkvm.a
441 endif
443 ifdef CONFIG_VNC_TLS
444 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
445 LIBS += $(CONFIG_VNC_TLS_LIBS)
446 endif
448 # SCSI layer
449 VL_OBJS+= lsi53c895a.o
451 # USB layer
452 VL_OBJS+= usb-ohci.o
454 # EEPROM emulation
455 VL_OBJS += eeprom93xx.o
457 # PCI network cards
458 VL_OBJS += eepro100.o
459 VL_OBJS += ne2000.o
460 VL_OBJS += pcnet.o
461 VL_OBJS += rtl8139.o
463 # PCI Hypercall
464 VL_OBJS+= hypercall.o
466 # virtio devices
467 VL_OBJS += virtio.o virtio-net.o virtio-blk.o
469 ifeq ($(TARGET_BASE_ARCH), i386)
470 # Hardware support
471 VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
472 VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
473 VL_OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
474 VL_OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o extboot.o
475 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
476 endif
477 ifeq ($(TARGET_BASE_ARCH), ia64)
478 # Hardware support
479 VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
480 VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
481 VL_OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
482 VL_OBJS+= usb-uhci.o smbus_eeprom.o
483 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
484 endif
485 ifeq ($(TARGET_BASE_ARCH), ppc)
486 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
487 # shared objects
488 VL_OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
489 # PREP target
490 VL_OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
491 VL_OBJS+= prep_pci.o ppc_prep.o
492 # Mac shared devices
493 VL_OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
494 # OldWorld PowerMac
495 VL_OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
496 # NewWorld PowerMac
497 VL_OBJS+= unin_pci.o ppc_chrp.o
498 # PowerPC 4xx boards
499 VL_OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
500 endif
501 ifeq ($(TARGET_BASE_ARCH), mips)
502 VL_OBJS+= mips_r4k.o mips_malta.o mips_pica61.o mips_mipssim.o
503 VL_OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o
504 VL_OBJS+= jazz_led.o
505 VL_OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
506 VL_OBJS+= piix_pci.o parallel.o cirrus_vga.o $(SOUND_HW)
507 VL_OBJS+= mipsnet.o
508 CPPFLAGS += -DHAS_AUDIO
509 endif
510 ifeq ($(TARGET_BASE_ARCH), cris)
511 VL_OBJS+= etraxfs.o
512 VL_OBJS+= ptimer.o
513 VL_OBJS+= etraxfs_timer.o
514 VL_OBJS+= etraxfs_ser.o
515 endif
516 ifeq ($(TARGET_BASE_ARCH), sparc)
517 ifeq ($(TARGET_ARCH), sparc64)
518 VL_OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
519 VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
520 VL_OBJS+= cirrus_vga.o parallel.o ptimer.o
521 else
522 VL_OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
523 VL_OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o sparc32_dma.o
524 VL_OBJS+= cs4231.o ptimer.o eccmemctl.o
525 endif
526 endif
527 ifeq ($(TARGET_BASE_ARCH), arm)
528 VL_OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
529 VL_OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
530 VL_OBJS+= versatile_pci.o ptimer.o
531 VL_OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
532 VL_OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
533 VL_OBJS+= pl061.o
534 VL_OBJS+= arm-semi.o
535 VL_OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
536 VL_OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
537 VL_OBJS+= pflash_cfi01.o gumstix.o
538 VL_OBJS+= spitz.o ide.o serial.o nand.o ecc.o
539 VL_OBJS+= omap.o omap_lcdc.o omap1_clk.o omap_mmc.o omap_i2c.o
540 VL_OBJS+= palm.o tsc210x.o
541 VL_OBJS+= mst_fpga.o mainstone.o
542 CPPFLAGS += -DHAS_AUDIO
543 endif
544 ifeq ($(TARGET_BASE_ARCH), sh4)
545 VL_OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
546 VL_OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
547 endif
548 ifeq ($(TARGET_BASE_ARCH), m68k)
549 VL_OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
550 VL_OBJS+= m68k-semi.o dummy_m68k.o
551 endif
552 ifdef CONFIG_GDBSTUB
553 VL_OBJS+=gdbstub.o
554 endif
555 ifdef CONFIG_COCOA
556 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
557 ifdef CONFIG_COREAUDIO
558 COCOA_LIBS+=-framework CoreAudio
559 endif
560 endif
561 ifdef CONFIG_SLIRP
562 CPPFLAGS+=-I$(SRC_PATH)/slirp
563 endif
565 VL_LDFLAGS=$(VL_OS_LDFLAGS)
566 VL_LIBS=$(AIOLIBS)
567 # specific flags are needed for non soft mmu emulator
568 ifdef CONFIG_STATIC
569 VL_LDFLAGS+=-static
570 endif
571 ifndef CONFIG_SOFTMMU
572 VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld
573 endif
574 ifndef CONFIG_DARWIN
575 ifndef CONFIG_WIN32
576 ifndef CONFIG_SOLARIS
577 VL_LIBS+=-lutil
578 endif
579 endif
580 endif
581 ifdef TARGET_GPROF
582 vl.o: BASE_CFLAGS+=-p
583 VL_LDFLAGS+=-p
584 endif
586 ifeq ($(ARCH),ia64)
587 VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
588 endif
590 ifeq ($(ARCH),sparc64)
591   VL_LDFLAGS+=-m64
592   ifneq ($(CONFIG_SOLARIS),yes)
593     VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
594   endif
595 endif
597 ifeq ($(ARCH),x86_64)
598   VL_LDFLAGS+=-m64
599   ifneq ($(CONFIG_SOLARIS),yes)
600     VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
601   endif
602 endif
604 ifdef CONFIG_WIN32
605 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
606 endif
608 $(QEMU_SYSTEM): $(VL_OBJS) ../libqemu_common.a libqemu.a $(DEPLIBS)
609         $(CC) $(VL_LDFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
611 depend: $(SRCS)
612         $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
614 vldepend: $(VL_OBJS:.o=.c)
615         $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
617 # libqemu
619 libqemu.a: $(LIBOBJS)
620         rm -f $@
621         $(AR) rcs $@ $(LIBOBJS)
623 translate.o: translate.c gen-op.h opc.h cpu.h
625 translate-all.o: translate-all.c opc.h cpu.h
627 translate-op.o: translate-all.c op.h opc.h cpu.h
629 op.h: op.o $(DYNGEN)
630         $(DYNGEN) -o $@ $<
632 opc.h: op.o $(DYNGEN)
633         $(DYNGEN) -c -o $@ $<
635 gen-op.h: op.o $(DYNGEN)
636         $(DYNGEN) -g -o $@ $<
638 op.o: op.c
639         $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
641 # HELPER_CFLAGS is used for all the code compiled with static register
642 # variables
643 ifeq ($(TARGET_BASE_ARCH), i386)
644 # XXX: rename helper.c to op_helper.c
645 qemu-kvm-x86.o: qemu-kvm-x86.c qemu-kvm.h
647 helper.o: helper.c
648         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
649 else
650 op_helper.o: op_helper.c
651         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
652 endif
653 ifeq ($(TARGET_ARCH), ia64)
654 qemu-kvm-ia64.o: qemu-kvm-ia64.c qemu-kvm.h
655 firmware.o: firmware.c
656         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
657 endif
659 cpu-exec.o: cpu-exec.c
660         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
662 qemu-kvm.o: qemu-kvm.c qemu-kvm.h
663 ifeq ($(TARGET_BASE_ARCH), i386)
664 qemu-kvm-helper.o: qemu-kvm-helper.c
665 endif
667         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
669 # Note: this is a workaround. The real fix is to avoid compiling
670 # cpu_signal_handler() in cpu-exec.c.
671 signal.o: signal.c
672         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
674 %.o: %.c
675         $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
677 %.o: %.S
678         $(CC) $(CPPFLAGS) -c -o $@ $<
680 clean:
681         rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o fpu/*.o
682         rm -f *.d */*.d
684 install: all
685 ifneq ($(PROGS),)
686         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
687 endif
689 ifneq ($(wildcard .depend),)
690 include .depend
691 endif
693 ifeq (1, 0)
694 audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \
695 fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \
696 CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare
697 endif
699 # Include automatically generated dependency files
700 -include $(wildcard *.d */*.d)