Respect the standard
[qemu] / Makefile.target
1 include config.mak
2 include $(SRC_PATH)/rules.mak
3
4 TARGET_BASE_ARCH:=$(TARGET_ARCH)
5 ifeq ($(TARGET_ARCH), x86_64)
6 TARGET_BASE_ARCH:=i386
7 endif
8 ifeq ($(TARGET_ARCH), mipsn32)
9 TARGET_BASE_ARCH:=mips
10 endif
11 ifeq ($(TARGET_ARCH), mips64)
12 TARGET_BASE_ARCH:=mips
13 endif
14 ifeq ($(TARGET_ARCH), ppc64)
15 TARGET_BASE_ARCH:=ppc
16 endif
17 ifeq ($(TARGET_ARCH), ppc64h)
18 TARGET_BASE_ARCH:=ppc
19 endif
20 ifeq ($(TARGET_ARCH), ppcemb)
21 TARGET_BASE_ARCH:=ppc
22 endif
23 ifeq ($(TARGET_ARCH), sparc64)
24 TARGET_BASE_ARCH:=sparc
25 endif
26 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
27 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
28 CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
29 #CFLAGS+=-Werror
30 LIBS=
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 # cc-option
76 # Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0)
77
78 cc-option = $(shell if $(CC) $(1) $(2) -S -o /dev/null -xc /dev/null \
79               > /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi ;)
80
81 HELPER_CFLAGS=
82
83 ifeq ($(ARCH),i386)
84 HELPER_CFLAGS+=-fomit-frame-pointer
85 endif
86
87 ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
88 translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-time,)
89 endif
90
91 ifeq ($(ARCH),sparc)
92   ifneq ($(CONFIG_SOLARIS),yes)
93     HELPER_CFLAGS+=-ffixed-i0
94   endif
95 endif
96
97 ifeq ($(ARCH),alpha)
98 # Ensure there's only a single GP
99 CFLAGS+=-msmall-data
100 endif
101
102 ifeq ($(ARCH),hppa)
103 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
104 endif
105
106 ifeq ($(ARCH),ia64)
107 CFLAGS+=-mno-sdata
108 endif
109
110 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
111 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
112
113 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
114 CPPFLAGS+=-U_FORTIFY_SOURCE
115 LIBS+=-lm
116 ifdef CONFIG_WIN32
117 LIBS+=-lwinmm -lws2_32 -liphlpapi
118 endif
119 ifdef CONFIG_SOLARIS
120 LIBS+=-lsocket -lnsl -lresolv
121 ifdef NEEDS_LIBSUNMATH
122 LIBS+=-lsunmath
123 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
124 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
125 endif
126 endif
127
128 kvm.o: CFLAGS+=$(KVM_CFLAGS)
129 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
130
131 all: $(PROGS)
132 # Dummy command so that make thinks it has done something
133         @true
134
135 #########################################################
136 # cpu emulator library
137 libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o
138 libobj-$(CONFIG_KQEMU) += kqemu.o
139 # TCG code generator
140 libobj-y += tcg/tcg.o tcg/tcg-runtime.o
141 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
142 ifeq ($(ARCH),sparc64)
143 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
144 endif
145 ifdef CONFIG_SOFTFLOAT
146 libobj-y += fpu/softfloat.o
147 else
148 libobj-y += fpu/softfloat-native.o
149 endif
150 CPPFLAGS+=-I$(SRC_PATH)/fpu
151 libobj-y += op_helper.o helper.o
152
153 ifeq ($(TARGET_BASE_ARCH), arm)
154 libobj-y += neon_helper.o iwmmxt_helper.o
155 endif
156
157 ifeq ($(TARGET_BASE_ARCH), alpha)
158 libobj-y += alpha_palcode.o
159 endif
160
161 ifeq ($(TARGET_BASE_ARCH), cris)
162 libobj-y += cris-dis.o
163
164 ifndef CONFIG_USER_ONLY
165 libobj-y += mmu.o
166 endif
167 endif
168
169 # NOTE: the disassembler code is only needed for debugging
170 libobj-y += disas.o
171 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
172 USE_I386_DIS=y
173 endif
174 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
175 USE_I386_DIS=y
176 endif
177 libobj-$(USE_I386_DIS) += i386-dis.o
178 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
179 libobj-y += alpha-dis.o
180 endif
181 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
182 libobj-y += ppc-dis.o
183 endif
184 ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
185 libobj-y += microblaze-dis.o
186 ifndef CONFIG_USER_ONLY
187 libobj-y += mmu.o
188 endif
189 endif
190 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
191 libobj-y += mips-dis.o
192 endif
193 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
194 libobj-y += sparc-dis.o
195 endif
196 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
197 libobj-y += arm-dis.o
198 endif
199 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
200 libobj-y += m68k-dis.o
201 endif
202 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
203 libobj-y += sh4-dis.o
204 endif
205 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
206 libobj-y += hppa-dis.o
207 endif
208 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
209 libobj-y += s390-dis.o
210 endif
211
212 # libqemu
213
214 libqemu.a: $(libobj-y)
215
216 translate.o: translate.c cpu.h
217
218 translate-all.o: translate-all.c cpu.h
219
220 tcg/tcg.o: cpu.h
221
222 # HELPER_CFLAGS is used for all the code compiled with static register
223 # variables
224 op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
225
226 cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
227
228 #########################################################
229 # Linux user emulator target
230
231 ifdef CONFIG_LINUX_USER
232
233 ifndef TARGET_ABI_DIR
234   TARGET_ABI_DIR=$(TARGET_ARCH)
235 endif
236 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
237 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
238
239 ifdef CONFIG_STATIC
240 LDFLAGS+=-static
241 endif
242
243 ifeq ($(ARCH),i386)
244 ifdef TARGET_GPROF
245 USE_I386_LD=y
246 endif
247 ifdef CONFIG_STATIC
248 USE_I386_LD=y
249 endif
250 ifdef USE_I386_LD
251 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
252 else
253 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
254 # that the kernel ELF loader considers as an executable. I think this
255 # is the simplest way to make it self virtualizable!
256 LDFLAGS+=-Wl,-shared
257 endif
258 endif
259
260 ifeq ($(ARCH),x86_64)
261 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
262 endif
263
264 ifeq ($(ARCH),ppc)
265 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
266 endif
267
268 ifeq ($(ARCH),ppc64)
269 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
270 endif
271
272 ifeq ($(ARCH),s390)
273 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
274 endif
275
276 ifeq ($(ARCH),sparc)
277 # -static is used to avoid g1/g3 usage by the dynamic linker    
278 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
279 endif
280
281 ifeq ($(ARCH),sparc64)
282 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
283 endif
284
285 ifeq ($(ARCH),alpha)
286 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
287 endif
288
289 ifeq ($(ARCH),ia64)
290 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
291 endif
292
293 ifeq ($(ARCH),arm)
294 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
295 endif
296
297 ifeq ($(ARCH),m68k)
298 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
299 endif
300
301 ifeq ($(ARCH),mips)
302 ifeq ($(WORDS_BIGENDIAN),yes)
303 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
304 else
305 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
306 endif
307 endif
308
309 ifeq ($(ARCH),mips64)
310 ifeq ($(WORDS_BIGENDIAN),yes)
311 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
312 else
313 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
314 endif
315 endif
316
317 # profiling code
318 ifdef TARGET_GPROF
319 LDFLAGS+=-p
320 CFLAGS+=-p
321 endif
322
323 obj-y = main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
324       elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
325 LIBS+= $(PTHREADLIBS)
326 LIBS+= $(CLOCKLIBS)
327 obj-$(TARGET_HAS_BFLT) += flatload.o
328
329 ifdef TARGET_HAS_ELFLOAD32
330 elfload32.o: elfload.c
331 endif
332 obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
333
334 ifeq ($(TARGET_ARCH), i386)
335 obj-y += vm86.o
336 endif
337 ifeq ($(TARGET_ARCH), arm)
338 obj-y += nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
339 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
340  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
341 endif
342 ifeq ($(TARGET_ARCH), m68k)
343 obj-y += m68k-sim.o m68k-semi.o
344 endif
345
346 # Note: this is a workaround. The real fix is to avoid compiling
347 # cpu_signal_handler() in cpu-exec.c.
348 signal.o: CFLAGS += $(HELPER_CFLAGS)
349
350 $(QEMU_PROG): ARLIBS=../libqemu_user.a libqemu.a
351 $(QEMU_PROG): $(obj-y) ../libqemu_user.a libqemu.a
352         $(call LINK,$(obj-y))
353 ifeq ($(ARCH),alpha)
354 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
355 # the address space (31 bit so sign extending doesn't matter)
356         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
357 endif
358
359 endif #CONFIG_LINUX_USER
360
361 #########################################################
362 # Darwin user emulator target
363
364 ifdef CONFIG_DARWIN_USER
365
366 VPATH+=:$(SRC_PATH)/darwin-user
367 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
368
369 # Leave some space for the regular program loading zone
370 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
371
372 LIBS+=-lmx
373
374 obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
375         gdbstub.o gdbstub-xml.o
376
377 # Note: this is a workaround. The real fix is to avoid compiling
378 # cpu_signal_handler() in cpu-exec.c.
379 signal.o: CFLAGS += $(HELPER_CFLAGS)
380
381 $(QEMU_PROG): ARLIBS=libqemu.a
382 $(QEMU_PROG): $(obj-y) libqemu.a
383         $(call LINK,$(obj-y))
384
385 endif #CONFIG_DARWIN_USER
386
387 #########################################################
388 # BSD user emulator target
389
390 ifdef CONFIG_BSD_USER
391
392 VPATH+=:$(SRC_PATH)/bsd-user
393 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
394
395 ifdef CONFIG_STATIC
396 LDFLAGS+=-static
397 endif
398
399 ifeq ($(ARCH),i386)
400 ifdef TARGET_GPROF
401 USE_I386_LD=y
402 endif
403 ifdef CONFIG_STATIC
404 USE_I386_LD=y
405 endif
406 ifdef USE_I386_LD
407 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
408 else
409 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
410 # that the kernel ELF loader considers as an executable. I think this
411 # is the simplest way to make it self virtualizable!
412 LDFLAGS+=-Wl,-shared
413 endif
414 endif
415
416 ifeq ($(ARCH),x86_64)
417 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
418 endif
419
420 ifeq ($(ARCH),ppc)
421 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
422 endif
423
424 ifeq ($(ARCH),ppc64)
425 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
426 endif
427
428 ifeq ($(ARCH),s390)
429 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
430 endif
431
432 ifeq ($(ARCH),sparc)
433 # -static is used to avoid g1/g3 usage by the dynamic linker
434 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
435 endif
436
437 ifeq ($(ARCH),sparc64)
438 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
439 endif
440
441 ifeq ($(ARCH),alpha)
442 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
443 endif
444
445 ifeq ($(ARCH),ia64)
446 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
447 endif
448
449 ifeq ($(ARCH),arm)
450 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
451 endif
452
453 ifeq ($(ARCH),m68k)
454 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
455 endif
456
457 ifeq ($(ARCH),mips)
458 ifeq ($(WORDS_BIGENDIAN),yes)
459 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
460 else
461 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
462 endif
463 endif
464
465 ifeq ($(ARCH),mips64)
466 ifeq ($(WORDS_BIGENDIAN),yes)
467 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
468 else
469 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
470 endif
471 endif
472
473 obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
474         gdbstub.o gdbstub-xml.o
475 obj-y += uaccess.o
476
477 # Note: this is a workaround. The real fix is to avoid compiling
478 # cpu_signal_handler() in cpu-exec.c.
479 signal.o: CFLAGS += $(HELPER_CFLAGS)
480
481 $(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
482 $(QEMU_PROG): $(obj-y) libqemu.a ../libqemu_user.a
483         $(call LINK,$(obj-y))
484
485 endif #CONFIG_BSD_USER
486
487 #########################################################
488 # System emulator target
489 ifndef CONFIG_USER_ONLY
490
491 obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
492         gdbstub.o gdbstub-xml.o msix.o
493 # virtio has to be here due to weird dependency between PCI and virtio-net.
494 # need to fix this properly
495 obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
496 obj-$(CONFIG_KVM) += kvm.o kvm-all.o
497
498 LIBS+=-lz
499 ifdef CONFIG_ALSA
500 LIBS += -lasound
501 endif
502 ifdef CONFIG_ESD
503 LIBS += -lesd
504 endif
505 ifdef CONFIG_PA
506 LIBS += -lpulse-simple
507 endif
508 ifdef CONFIG_DSOUND
509 LIBS += -lole32 -ldxguid
510 endif
511 ifdef CONFIG_FMOD
512 LIBS += $(CONFIG_FMOD_LIB)
513 endif
514 ifdef CONFIG_OSS
515 LIBS += $(CONFIG_OSS_LIB)
516 endif
517
518 sound-obj-y =
519 sound-obj-$(CONFIG_SB16) += sb16.o
520 sound-obj-$(CONFIG_ES1370) += es1370.o
521 sound-obj-$(CONFIG_AC97) += ac97.o
522 sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
523 sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
524 sound-obj-$(CONFIG_CS4231A) += cs4231a.o
525
526 ifdef CONFIG_ADLIB
527 adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
528 endif
529
530 ifdef CONFIG_VNC_TLS
531 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
532 LIBS += $(CONFIG_VNC_TLS_LIBS)
533 endif
534
535 ifdef CONFIG_VNC_SASL
536 CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
537 LIBS += $(CONFIG_VNC_SASL_LIBS)
538 endif
539
540 ifdef CONFIG_BLUEZ
541 LIBS += $(CONFIG_BLUEZ_LIBS)
542 endif
543
544 # xen backend driver support
545 obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
546 ifeq ($(CONFIG_XEN), yes)
547   LIBS += $(XEN_LIBS)
548 endif
549
550 # USB layer
551 obj-y += usb-ohci.o
552
553 # PCI network cards
554 obj-y += eepro100.o
555 obj-y += ne2000.o
556 obj-y += pcnet.o
557 obj-y += rtl8139.o
558 obj-y += e1000.o
559
560 # Generic watchdog support and some watchdog devices
561 obj-y += wdt_ib700.o wdt_i6300esb.o
562
563 ifeq ($(TARGET_BASE_ARCH), i386)
564 # Hardware support
565 obj-y += ide.o pckbd.o vga.o $(sound-obj-y) dma.o
566 obj-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
567 obj-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
568 obj-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
569 obj-y += device-hotplug.o pci-hotplug.o smbios.o
570 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
571 endif
572 ifeq ($(TARGET_BASE_ARCH), ppc)
573 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
574 # shared objects
575 obj-y += ppc.o ide.o vga.o $(sound-obj-y) dma.o openpic.o
576 # PREP target
577 obj-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
578 obj-y += prep_pci.o ppc_prep.o
579 # Mac shared devices
580 obj-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
581 # OldWorld PowerMac
582 obj-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
583 # NewWorld PowerMac
584 obj-y += unin_pci.o ppc_newworld.o
585 # PowerPC 4xx boards
586 obj-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
587 obj-y += ppc440.o ppc440_bamboo.o
588 # PowerPC E500 boards
589 obj-y += ppce500_pci.o ppce500_mpc8544ds.o
590 ifdef FDT_LIBS
591 obj-y += device_tree.o
592 LIBS+= $(FDT_LIBS)
593 endif
594 obj-$(CONFIG_KVM) += kvm_ppc.o
595 endif
596 ifeq ($(TARGET_BASE_ARCH), mips)
597 obj-y += mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
598 obj-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
599 obj-y += g364fb.o jazz_led.o dp8393x.o
600 obj-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
601 obj-y += piix_pci.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y)
602 obj-y += mipsnet.o
603 obj-y += pflash_cfi01.o
604 obj-y += vmware_vga.o
605 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
606 endif
607 ifeq ($(TARGET_BASE_ARCH), microblaze)
608 obj-y += petalogix_s3adsp1800_mmu.o
609
610 obj-y += microblaze_pic_cpu.o
611 obj-y += xilinx_intc.o
612 obj-y += xilinx_timer.o
613 obj-y += xilinx_uartlite.o
614 obj-y += xilinx_ethlite.o
615
616 obj-y += pflash_cfi02.o
617 ifdef FDT_LIBS
618 obj-y += device_tree.o
619 LIBS+= $(FDT_LIBS)
620 endif
621 endif
622 ifeq ($(TARGET_BASE_ARCH), cris)
623 # Boards
624 obj-y += cris_pic_cpu.o etraxfs.o axis_dev88.o
625
626 # IO blocks
627 obj-y += etraxfs_dma.o
628 obj-y += etraxfs_pic.o
629 obj-y += etraxfs_eth.o
630 obj-y += etraxfs_timer.o
631 obj-y += etraxfs_ser.o
632
633 obj-y += pflash_cfi02.o
634 endif
635 ifeq ($(TARGET_BASE_ARCH), sparc)
636 ifeq ($(TARGET_ARCH), sparc64)
637 obj-y += sun4u.o ide.o pckbd.o vga.o apb_pci.o
638 obj-y += fdc.o mc146818rtc.o serial.o
639 obj-y += cirrus_vga.o parallel.o
640 else
641 obj-y += sun4m.o tcx.o iommu.o slavio_intctl.o
642 obj-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
643 obj-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
644 endif
645 endif
646 ifeq ($(TARGET_BASE_ARCH), arm)
647 obj-y += integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
648 obj-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
649 obj-y += versatile_pci.o
650 obj-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
651 obj-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
652 obj-y += pl061.o
653 obj-y += arm-semi.o
654 obj-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
655 obj-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
656 obj-y += pflash_cfi01.o gumstix.o
657 obj-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
658 obj-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
659 obj-y += omap2.o omap_dss.o soc_dma.o
660 obj-y += omap_sx1.o palm.o tsc210x.o
661 obj-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
662 obj-y += mst_fpga.o mainstone.o
663 obj-y += musicpal.o pflash_cfi02.o
664 obj-y += framebuffer.o
665 obj-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
666 obj-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
667 obj-y += syborg_virtio.o
668 CPPFLAGS += -DHAS_AUDIO
669 endif
670 ifeq ($(TARGET_BASE_ARCH), sh4)
671 obj-y += shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
672 obj-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
673 obj-y += ide.o
674 endif
675 ifeq ($(TARGET_BASE_ARCH), m68k)
676 obj-y += an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
677 obj-y += m68k-semi.o dummy_m68k.o
678 endif
679 ifdef CONFIG_COCOA
680 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
681 ifdef CONFIG_COREAUDIO
682 COCOA_LIBS+=-framework CoreAudio
683 endif
684 endif
685 ifdef CONFIG_SLIRP
686 CPPFLAGS+=-I$(SRC_PATH)/slirp
687 endif
688
689 LIBS+=$(PTHREADLIBS)
690 LIBS+=$(CLOCKLIBS)
691 # specific flags are needed for non soft mmu emulator
692 ifdef CONFIG_STATIC
693 LDFLAGS+=-static
694 endif
695 ifndef CONFIG_DARWIN
696 ifndef CONFIG_WIN32
697 ifndef CONFIG_SOLARIS
698 ifndef CONFIG_AIX
699 LIBS+=-lutil
700 endif
701 endif
702 endif
703 endif
704 ifdef TARGET_GPROF
705 vl.o: CFLAGS+=-p
706 LDFLAGS+=-p
707 endif
708
709 ifeq ($(ARCH),ia64)
710 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
711 endif
712
713 ifdef CONFIG_WIN32
714 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
715 endif
716
717 # profiling code
718 ifdef TARGET_GPROF
719 LDFLAGS+=-p
720 main.o: CFLAGS+=-p
721 endif
722
723 vl.o: CFLAGS+=$(SDL_CFLAGS)
724
725 vl.o: qemu-options.h
726
727 monitor.o: qemu-monitor.h
728
729 $(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
730 $(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
731 $(QEMU_PROG): $(obj-y) ../libqemu_common.a libqemu.a $(HWLIB)
732         $(call LINK,$(obj-y))
733
734 endif # !CONFIG_USER_ONLY
735
736 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
737 ifeq ($(TARGET_XML_FILES),)
738         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
739 else
740         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
741 endif
742
743 qemu-options.h: $(SRC_PATH)/qemu-options.hx
744         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
745
746 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
747         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
748
749 clean:
750         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
751         rm -f *.d */*.d tcg/*.o
752         rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
753
754 install: all
755 ifneq ($(PROGS),)
756         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
757 endif
758
759 # Include automatically generated dependency files
760 -include $(wildcard *.d */*.d)