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