Add serial loopback mode (patch from Hervé Poussineau).
[qemu/mini2440.git] / Makefile.target
blob0dbf3ab00db2c226202e54764c7a77ee30a45497
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 ifdef CONFIG_SOFTFLOAT
181 LIBOBJS+=fpu/softfloat.o
182 else
183 LIBOBJS+=fpu/softfloat-native.o
184 endif
185 CPPFLAGS+=-I$(SRC_PATH)/fpu
187 ifeq ($(TARGET_ARCH), i386)
188 LIBOBJS+=helper.o helper2.o
189 endif
191 ifeq ($(TARGET_ARCH), x86_64)
192 LIBOBJS+=helper.o helper2.o
193 endif
195 ifeq ($(TARGET_BASE_ARCH), ppc)
196 LIBOBJS+= op_helper.o helper.o
197 endif
199 ifeq ($(TARGET_BASE_ARCH), mips)
200 LIBOBJS+= op_helper.o helper.o
201 endif
203 ifeq ($(TARGET_BASE_ARCH), sparc)
204 LIBOBJS+= op_helper.o helper.o
205 endif
207 ifeq ($(TARGET_BASE_ARCH), arm)
208 LIBOBJS+= op_helper.o helper.o
209 endif
211 ifeq ($(TARGET_BASE_ARCH), sh4)
212 LIBOBJS+= op_helper.o helper.o
213 endif
215 ifeq ($(TARGET_BASE_ARCH), m68k)
216 LIBOBJS+= op_helper.o helper.o
217 endif
219 ifeq ($(TARGET_BASE_ARCH), alpha)
220 LIBOBJS+= op_helper.o helper.o alpha_palcode.o
221 endif
223 ifeq ($(TARGET_BASE_ARCH), cris)
224 LIBOBJS+= op_helper.o helper.o
225 LIBOBJS+= cris-dis.o
227 ifndef CONFIG_USER_ONLY
228 LIBOBJS+= mmu.o
229 endif
230 endif
232 # NOTE: the disassembler code is only needed for debugging
233 LIBOBJS+=disas.o
234 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
235 USE_I386_DIS=y
236 endif
237 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
238 USE_I386_DIS=y
239 endif
240 ifdef USE_I386_DIS
241 LIBOBJS+=i386-dis.o
242 endif
243 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
244 LIBOBJS+=alpha-dis.o
245 endif
246 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
247 LIBOBJS+=ppc-dis.o
248 endif
249 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
250 LIBOBJS+=mips-dis.o
251 endif
252 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
253 LIBOBJS+=sparc-dis.o
254 endif
255 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
256 LIBOBJS+=arm-dis.o
257 endif
258 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
259 LIBOBJS+=m68k-dis.o
260 endif
261 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
262 LIBOBJS+=sh4-dis.o
263 endif
264 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
265 LIBOBJS+=s390-dis.o
266 endif
268 # libqemu
270 OPC_H = gen-op.h dyngen-opc.h op.h
272 libqemu.a: $(LIBOBJS)
273         rm -f $@
274         $(AR) rcs $@ $(LIBOBJS)
276 translate.o: translate.c cpu.h $(OPC_H)
278 translate-all.o: translate-all.c cpu.h $(OPC_H)
280 tcg/tcg.o: cpu.h $(OPC_H)
282 tcg/tcg-dyngen.o: $(OPC_H)
284 tcg/tcg-runtime.o: $(OPC_H)
286 op.h: op.o $(DYNGEN)
287         $(DYNGEN) -o $@ $<
289 dyngen-opc.h: op.o $(DYNGEN)
290         $(DYNGEN) -c -o $@ $<
292 gen-op.h: op.o $(DYNGEN)
293         $(DYNGEN) -g -o $@ $<
295 op.o: op.c
296         $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
298 # HELPER_CFLAGS is used for all the code compiled with static register
299 # variables
300 ifeq ($(TARGET_BASE_ARCH), i386)
301 # XXX: rename helper.c to op_helper.c
302 helper.o: helper.c
303         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
304 else
305 op_helper.o: op_helper.c
306         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
307 endif
309 cpu-exec.o: cpu-exec.c
310         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
312 #########################################################
313 # Linux user emulator target
315 ifdef CONFIG_LINUX_USER
317 VPATH+=:$(SRC_PATH)/linux-user
318 ifndef TARGET_ABI_DIR
319   TARGET_ABI_DIR=$(TARGET_ARCH)
320 endif
321 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
323 ifdef CONFIG_STATIC
324 LDFLAGS+=-static
325 endif
327 ifeq ($(ARCH),i386)
328 ifdef TARGET_GPROF
329 USE_I386_LD=y
330 endif
331 ifdef CONFIG_STATIC
332 USE_I386_LD=y
333 endif
334 ifdef USE_I386_LD
335 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
336 else
337 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
338 # that the kernel ELF loader considers as an executable. I think this
339 # is the simplest way to make it self virtualizable!
340 LDFLAGS+=-Wl,-shared
341 endif
342 endif
344 ifeq ($(ARCH),x86_64)
345 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
346 endif
348 ifeq ($(ARCH),ppc)
349 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
350 endif
352 ifeq ($(ARCH),s390)
353 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
354 endif
356 ifeq ($(ARCH),sparc)
357 # -static is used to avoid g1/g3 usage by the dynamic linker    
358 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
359 endif
361 ifeq ($(ARCH),sparc64)
362 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
363 endif
365 ifeq ($(ARCH),alpha)
366 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
367 endif
369 ifeq ($(ARCH),ia64)
370 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
371 endif
373 ifeq ($(ARCH),arm)
374 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
375 endif
377 ifeq ($(ARCH),m68k)
378 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
379 endif
381 ifeq ($(ARCH),mips)
382 ifeq ($(WORDS_BIGENDIAN),yes)
383 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
384 else
385 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
386 endif
387 endif
389 ifeq ($(ARCH),mips64)
390 ifeq ($(WORDS_BIGENDIAN),yes)
391 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
392 else
393 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
394 endif
395 endif
397 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
398       elfload.o linuxload.o uaccess.o
399 LIBS+= $(AIOLIBS)
400 ifdef TARGET_HAS_BFLT
401 OBJS+= flatload.o
402 endif
403 ifdef TARGET_HAS_ELFLOAD32
404 OBJS+= elfload32.o
405 elfload32.o: elfload.c
406 endif
408 ifeq ($(TARGET_ARCH), i386)
409 OBJS+= vm86.o
410 endif
411 ifeq ($(TARGET_ARCH), arm)
412 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
413 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
414  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
415 endif
416 ifeq ($(TARGET_ARCH), m68k)
417 OBJS+= m68k-sim.o m68k-semi.o
418 endif
420 ifdef CONFIG_GDBSTUB
421 OBJS+=gdbstub.o
422 endif
424 OBJS+= libqemu.a
426 # Note: this is a workaround. The real fix is to avoid compiling
427 # cpu_signal_handler() in cpu-exec.c.
428 signal.o: signal.c
429         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
431 $(QEMU_PROG): $(OBJS)
432         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
433 ifeq ($(ARCH),alpha)
434 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
435 # the address space (31 bit so sign extending doesn't matter)
436         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
437 endif
439 endif #CONFIG_LINUX_USER
441 #########################################################
442 # Darwin user emulator target
444 ifdef CONFIG_DARWIN_USER
446 VPATH+=:$(SRC_PATH)/darwin-user
447 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
449 # Leave some space for the regular program loading zone
450 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
452 LIBS+=-lmx
454 OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
456 OBJS+= libqemu.a
458 ifdef CONFIG_GDBSTUB
459 OBJS+=gdbstub.o
460 endif
462 # Note: this is a workaround. The real fix is to avoid compiling
463 # cpu_signal_handler() in cpu-exec.c.
464 signal.o: signal.c
465         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
467 $(QEMU_PROG): $(OBJS)
468         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
470 endif #CONFIG_DARWIN_USER
472 #########################################################
473 # System emulator target
474 ifndef CONFIG_USER_ONLY
476 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o
477 ifdef CONFIG_WIN32
478 OBJS+=block-raw-win32.o
479 else
480 OBJS+=block-raw-posix.o
481 endif
483 LIBS+=-lz
484 ifdef CONFIG_ALSA
485 LIBS += -lasound
486 endif
487 ifdef CONFIG_ESD
488 LIBS += -lesd
489 endif
490 ifdef CONFIG_DSOUND
491 LIBS += -lole32 -ldxguid
492 endif
493 ifdef CONFIG_FMOD
494 LIBS += $(CONFIG_FMOD_LIB)
495 endif
497 SOUND_HW = sb16.o es1370.o
498 ifdef CONFIG_AC97
499 SOUND_HW += ac97.o
500 endif
501 ifdef CONFIG_ADLIB
502 SOUND_HW += fmopl.o adlib.o
503 endif
504 ifdef CONFIG_GUS
505 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
506 endif
508 ifdef CONFIG_VNC_TLS
509 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
510 LIBS += $(CONFIG_VNC_TLS_LIBS)
511 endif
513 # SCSI layer
514 OBJS+= lsi53c895a.o
516 # USB layer
517 OBJS+= usb-ohci.o
519 # EEPROM emulation
520 OBJS += eeprom93xx.o
522 # PCI network cards
523 OBJS += eepro100.o
524 OBJS += ne2000.o
525 OBJS += pcnet.o
526 OBJS += rtl8139.o
527 OBJS += e1000.o
529 ifeq ($(TARGET_BASE_ARCH), i386)
530 # Hardware support
531 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
532 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
533 OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
534 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o
535 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
536 endif
537 ifeq ($(TARGET_BASE_ARCH), ppc)
538 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
539 # shared objects
540 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
541 # PREP target
542 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
543 OBJS+= prep_pci.o ppc_prep.o
544 # Mac shared devices
545 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
546 # OldWorld PowerMac
547 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
548 # NewWorld PowerMac
549 OBJS+= unin_pci.o ppc_chrp.o
550 # PowerPC 4xx boards
551 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
552 endif
553 ifeq ($(TARGET_BASE_ARCH), mips)
554 OBJS+= mips_r4k.o mips_malta.o mips_pica61.o mips_mipssim.o
555 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o
556 OBJS+= jazz_led.o
557 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
558 OBJS+= piix_pci.o parallel.o cirrus_vga.o $(SOUND_HW)
559 OBJS+= mipsnet.o
560 OBJS+= pflash_cfi01.o
561 CPPFLAGS += -DHAS_AUDIO
562 endif
563 ifeq ($(TARGET_BASE_ARCH), cris)
564 OBJS+= etraxfs.o
565 OBJS+= ptimer.o
566 OBJS+= etraxfs_timer.o
567 OBJS+= etraxfs_ser.o
568 endif
569 ifeq ($(TARGET_BASE_ARCH), sparc)
570 ifeq ($(TARGET_ARCH), sparc64)
571 OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
572 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
573 OBJS+= cirrus_vga.o parallel.o ptimer.o
574 else
575 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
576 OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o sparc32_dma.o
577 OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
578 endif
579 endif
580 ifeq ($(TARGET_BASE_ARCH), arm)
581 OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
582 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
583 OBJS+= versatile_pci.o ptimer.o
584 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
585 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
586 OBJS+= pl061.o
587 OBJS+= arm-semi.o
588 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
589 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
590 OBJS+= pflash_cfi01.o gumstix.o
591 OBJS+= spitz.o ide.o serial.o nand.o ecc.o
592 OBJS+= omap.o omap_lcdc.o omap1_clk.o omap_mmc.o omap_i2c.o
593 OBJS+= palm.o tsc210x.o
594 OBJS+= mst_fpga.o mainstone.o
595 CPPFLAGS += -DHAS_AUDIO
596 endif
597 ifeq ($(TARGET_BASE_ARCH), sh4)
598 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
599 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
600 endif
601 ifeq ($(TARGET_BASE_ARCH), m68k)
602 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
603 OBJS+= m68k-semi.o dummy_m68k.o
604 endif
605 ifdef CONFIG_GDBSTUB
606 OBJS+=gdbstub.o
607 endif
608 ifdef CONFIG_COCOA
609 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
610 ifdef CONFIG_COREAUDIO
611 COCOA_LIBS+=-framework CoreAudio
612 endif
613 endif
614 ifdef CONFIG_SLIRP
615 CPPFLAGS+=-I$(SRC_PATH)/slirp
616 endif
618 LIBS+=$(AIOLIBS)
619 # specific flags are needed for non soft mmu emulator
620 ifdef CONFIG_STATIC
621 LDFLAGS+=-static
622 endif
623 ifndef CONFIG_DARWIN
624 ifndef CONFIG_WIN32
625 ifndef CONFIG_SOLARIS
626 LIBS+=-lutil
627 endif
628 endif
629 endif
630 ifdef TARGET_GPROF
631 vl.o: CFLAGS+=-p
632 LDFLAGS+=-p
633 endif
635 ifeq ($(ARCH),ia64)
636 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
637 endif
639 ifdef CONFIG_WIN32
640 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
641 endif
643 # profiling code
644 ifdef TARGET_GPROF
645 LDFLAGS+=-p
646 main.o: CFLAGS+=-p
647 endif
649 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
650         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS)
652 endif # !CONFIG_USER_ONLY
654 %.o: %.c
655         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
657 %.o: %.S
658         $(CC) $(CPPFLAGS) -c -o $@ $<
660 clean:
661         rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
662         rm -f *.d */*.d tcg/*.o
664 install: all
665 ifneq ($(PROGS),)
666         $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
667 endif
669 # Include automatically generated dependency files
670 -include $(wildcard *.d */*.d)