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