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