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