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