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