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