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