Statistics
| Branch: | Revision:

root / Makefile.target @ 9c1dd99b

History | View | Annotate | Download (18.3 kB)

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),y)
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
      ioport-user.o
326
LIBS+= $(PTHREADLIBS)
327
LIBS+= $(CLOCKLIBS)
328
obj-$(TARGET_HAS_BFLT) += flatload.o
329

    
330
ifdef TARGET_HAS_ELFLOAD32
331
elfload32.o: elfload.c
332
endif
333
obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
334

    
335
ifeq ($(TARGET_ARCH), i386)
336
obj-y += vm86.o
337
endif
338
ifeq ($(TARGET_ARCH), arm)
339
nwfpe-obj-y := fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
340
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
341
obj-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
342
obj-y += arm-semi.o
343
endif
344
ifeq ($(TARGET_ARCH), m68k)
345
obj-y += m68k-sim.o m68k-semi.o
346
endif
347

    
348
# Note: this is a workaround. The real fix is to avoid compiling
349
# cpu_signal_handler() in cpu-exec.c.
350
signal.o: CFLAGS += $(HELPER_CFLAGS)
351

    
352
$(QEMU_PROG): ARLIBS=../libqemu_user.a libqemu.a
353
$(QEMU_PROG): $(obj-y) ../libqemu_user.a libqemu.a
354
	$(call LINK,$(obj-y))
355
ifeq ($(ARCH),alpha)
356
# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
357
# the address space (31 bit so sign extending doesn't matter)
358
	echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
359
endif
360

    
361
endif #CONFIG_LINUX_USER
362

    
363
#########################################################
364
# Darwin user emulator target
365

    
366
ifdef CONFIG_DARWIN_USER
367

    
368
VPATH+=:$(SRC_PATH)/darwin-user
369
CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
370

    
371
# Leave some space for the regular program loading zone
372
LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
373

    
374
LIBS+=-lmx
375

    
376
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
377
        gdbstub.o gdbstub-xml.o ioport-user.o
378

    
379
# Note: this is a workaround. The real fix is to avoid compiling
380
# cpu_signal_handler() in cpu-exec.c.
381
signal.o: CFLAGS += $(HELPER_CFLAGS)
382

    
383
$(QEMU_PROG): ARLIBS=libqemu.a
384
$(QEMU_PROG): $(obj-y) libqemu.a
385
	$(call LINK,$(obj-y))
386

    
387
endif #CONFIG_DARWIN_USER
388

    
389
#########################################################
390
# BSD user emulator target
391

    
392
ifdef CONFIG_BSD_USER
393

    
394
VPATH+=:$(SRC_PATH)/bsd-user
395
CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
396

    
397
ifdef CONFIG_STATIC
398
LDFLAGS+=-static
399
endif
400

    
401
ifeq ($(ARCH),i386)
402
ifdef TARGET_GPROF
403
USE_I386_LD=y
404
endif
405
ifdef CONFIG_STATIC
406
USE_I386_LD=y
407
endif
408
ifdef USE_I386_LD
409
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
410
else
411
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
412
# that the kernel ELF loader considers as an executable. I think this
413
# is the simplest way to make it self virtualizable!
414
LDFLAGS+=-Wl,-shared
415
endif
416
endif
417

    
418
ifeq ($(ARCH),x86_64)
419
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
420
endif
421

    
422
ifeq ($(ARCH),ppc)
423
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
424
endif
425

    
426
ifeq ($(ARCH),ppc64)
427
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
428
endif
429

    
430
ifeq ($(ARCH),s390)
431
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
432
endif
433

    
434
ifeq ($(ARCH),sparc)
435
# -static is used to avoid g1/g3 usage by the dynamic linker
436
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
437
endif
438

    
439
ifeq ($(ARCH),sparc64)
440
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
441
endif
442

    
443
ifeq ($(ARCH),alpha)
444
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
445
endif
446

    
447
ifeq ($(ARCH),ia64)
448
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
449
endif
450

    
451
ifeq ($(ARCH),arm)
452
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
453
endif
454

    
455
ifeq ($(ARCH),m68k)
456
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
457
endif
458

    
459
ifeq ($(ARCH),mips)
460
ifeq ($(WORDS_BIGENDIAN),yes)
461
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
462
else
463
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
464
endif
465
endif
466

    
467
ifeq ($(ARCH),mips64)
468
ifeq ($(WORDS_BIGENDIAN),yes)
469
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
470
else
471
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
472
endif
473
endif
474

    
475
obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
476
        gdbstub.o gdbstub-xml.o ioport-user.o
477
obj-y += uaccess.o
478

    
479
# Note: this is a workaround. The real fix is to avoid compiling
480
# cpu_signal_handler() in cpu-exec.c.
481
signal.o: CFLAGS += $(HELPER_CFLAGS)
482

    
483
$(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
484
$(QEMU_PROG): $(obj-y) libqemu.a ../libqemu_user.a
485
	$(call LINK,$(obj-y))
486

    
487
endif #CONFIG_BSD_USER
488

    
489
#########################################################
490
# System emulator target
491
ifndef CONFIG_USER_ONLY
492

    
493
obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
494
        gdbstub.o gdbstub-xml.o msix.o ioport.o
495
# virtio has to be here due to weird dependency between PCI and virtio-net.
496
# need to fix this properly
497
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
498
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
499

    
500
LIBS+=-lz
501
ifdef CONFIG_ALSA
502
LIBS += -lasound
503
endif
504
ifdef CONFIG_ESD
505
LIBS += -lesd
506
endif
507
ifdef CONFIG_PA
508
LIBS += -lpulse-simple
509
endif
510
ifdef CONFIG_DSOUND
511
LIBS += -lole32 -ldxguid
512
endif
513
ifdef CONFIG_FMOD
514
LIBS += $(CONFIG_FMOD_LIB)
515
endif
516
ifdef CONFIG_OSS
517
LIBS += $(CONFIG_OSS_LIB)
518
endif
519

    
520
sound-obj-y =
521
sound-obj-$(CONFIG_SB16) += sb16.o
522
sound-obj-$(CONFIG_ES1370) += es1370.o
523
sound-obj-$(CONFIG_AC97) += ac97.o
524
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
525
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
526
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
527

    
528
ifdef CONFIG_ADLIB
529
adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
530
endif
531

    
532
ifdef CONFIG_VNC_TLS
533
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
534
LIBS += $(CONFIG_VNC_TLS_LIBS)
535
endif
536

    
537
ifdef CONFIG_VNC_SASL
538
CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
539
LIBS += $(CONFIG_VNC_SASL_LIBS)
540
endif
541

    
542
ifdef CONFIG_BLUEZ
543
LIBS += $(CONFIG_BLUEZ_LIBS)
544
endif
545

    
546
# xen backend driver support
547
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
548
ifeq ($(CONFIG_XEN), y)
549
  LIBS += $(XEN_LIBS)
550
endif
551

    
552
# USB layer
553
obj-y += usb-ohci.o
554

    
555
# PCI network cards
556
obj-y += eepro100.o
557
obj-y += ne2000.o
558
obj-y += pcnet.o
559
obj-y += rtl8139.o
560
obj-y += e1000.o
561

    
562
# Generic watchdog support and some watchdog devices
563
obj-y += wdt_ib700.o wdt_i6300esb.o
564

    
565
ifeq ($(TARGET_BASE_ARCH), i386)
566
# Hardware support
567
obj-y += ide.o pckbd.o vga.o $(sound-obj-y) dma.o
568
obj-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
569
obj-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
570
obj-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
571
obj-y += device-hotplug.o pci-hotplug.o smbios.o
572
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
573
endif
574
ifeq ($(TARGET_BASE_ARCH), ppc)
575
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
576
# shared objects
577
obj-y += ppc.o ide.o vga.o $(sound-obj-y) dma.o openpic.o
578
# PREP target
579
obj-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
580
obj-y += prep_pci.o ppc_prep.o
581
# Mac shared devices
582
obj-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
583
# OldWorld PowerMac
584
obj-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
585
# NewWorld PowerMac
586
obj-y += unin_pci.o ppc_newworld.o
587
# PowerPC 4xx boards
588
obj-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
589
obj-y += ppc440.o ppc440_bamboo.o
590
# PowerPC E500 boards
591
obj-y += ppce500_pci.o ppce500_mpc8544ds.o
592
ifdef FDT_LIBS
593
obj-y += device_tree.o
594
LIBS+= $(FDT_LIBS)
595
endif
596
obj-$(CONFIG_KVM) += kvm_ppc.o
597
endif
598
ifeq ($(TARGET_BASE_ARCH), mips)
599
obj-y += mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
600
obj-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
601
obj-y += g364fb.o jazz_led.o dp8393x.o
602
obj-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
603
obj-y += piix_pci.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y)
604
obj-y += mipsnet.o
605
obj-y += pflash_cfi01.o
606
obj-y += vmware_vga.o
607
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
608
endif
609
ifeq ($(TARGET_BASE_ARCH), microblaze)
610
obj-y += petalogix_s3adsp1800_mmu.o
611

    
612
obj-y += microblaze_pic_cpu.o
613
obj-y += xilinx_intc.o
614
obj-y += xilinx_timer.o
615
obj-y += xilinx_uartlite.o
616
obj-y += xilinx_ethlite.o
617

    
618
obj-y += pflash_cfi02.o
619
ifdef FDT_LIBS
620
obj-y += device_tree.o
621
LIBS+= $(FDT_LIBS)
622
endif
623
endif
624
ifeq ($(TARGET_BASE_ARCH), cris)
625
# Boards
626
obj-y += cris_pic_cpu.o etraxfs.o axis_dev88.o
627

    
628
# IO blocks
629
obj-y += etraxfs_dma.o
630
obj-y += etraxfs_pic.o
631
obj-y += etraxfs_eth.o
632
obj-y += etraxfs_timer.o
633
obj-y += etraxfs_ser.o
634

    
635
obj-y += pflash_cfi02.o
636
endif
637
ifeq ($(TARGET_BASE_ARCH), sparc)
638
ifeq ($(TARGET_ARCH), sparc64)
639
obj-y += sun4u.o ide.o pckbd.o vga.o apb_pci.o
640
obj-y += fdc.o mc146818rtc.o serial.o
641
obj-y += cirrus_vga.o parallel.o
642
else
643
obj-y += sun4m.o tcx.o iommu.o slavio_intctl.o
644
obj-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
645
obj-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
646
endif
647
endif
648
ifeq ($(TARGET_BASE_ARCH), arm)
649
obj-y += integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
650
obj-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
651
obj-y += versatile_pci.o
652
obj-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
653
obj-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
654
obj-y += pl061.o
655
obj-y += arm-semi.o
656
obj-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
657
obj-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
658
obj-y += pflash_cfi01.o gumstix.o
659
obj-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
660
obj-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
661
obj-y += omap2.o omap_dss.o soc_dma.o
662
obj-y += omap_sx1.o palm.o tsc210x.o
663
obj-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
664
obj-y += mst_fpga.o mainstone.o
665
obj-y += musicpal.o pflash_cfi02.o
666
obj-y += framebuffer.o
667
obj-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
668
obj-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
669
obj-y += syborg_virtio.o
670
CPPFLAGS += -DHAS_AUDIO
671
endif
672
ifeq ($(TARGET_BASE_ARCH), sh4)
673
obj-y += shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
674
obj-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
675
obj-y += ide.o
676
endif
677
ifeq ($(TARGET_BASE_ARCH), m68k)
678
obj-y += an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
679
obj-y += m68k-semi.o dummy_m68k.o
680
endif
681
ifdef CONFIG_COCOA
682
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
683
ifdef CONFIG_COREAUDIO
684
COCOA_LIBS+=-framework CoreAudio
685
endif
686
endif
687
ifdef CONFIG_SLIRP
688
CPPFLAGS+=-I$(SRC_PATH)/slirp
689
endif
690

    
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)