Statistics
| Branch: | Revision:

root / Makefile.target @ 2313086a

History | View | Annotate | Download (17.9 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),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
LIBS+=-lm
115
ifdef CONFIG_WIN32
116
LIBS+=-lwinmm -lws2_32 -liphlpapi
117
endif
118
ifdef CONFIG_SOLARIS
119
LIBS+=-lsocket -lnsl -lresolv
120
ifdef NEEDS_LIBSUNMATH
121
LIBS+=-lsunmath
122
LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
123
CFLAGS+=-I/opt/SUNWspro/prod/include/cc
124
endif
125
endif
126

    
127
kvm.o: CFLAGS+=$(KVM_CFLAGS)
128
kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
129

    
130
all: $(PROGS)
131
# Dummy command so that make thinks it has done something
132
	@true
133

    
134
#########################################################
135
# cpu emulator library
136
LIBOBJS=exec.o translate-all.o cpu-exec.o\
137
        translate.o host-utils.o
138
ifdef CONFIG_KQEMU
139
LIBOBJS+= kqemu.o
140
endif
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 microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
189
LIBOBJS+=microblaze-dis.o
190
ifndef CONFIG_USER_ONLY
191
LIBOBJS+= mmu.o
192
endif
193
endif
194
ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
195
LIBOBJS+=mips-dis.o
196
endif
197
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
198
LIBOBJS+=sparc-dis.o
199
endif
200
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
201
LIBOBJS+=arm-dis.o
202
endif
203
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
204
LIBOBJS+=m68k-dis.o
205
endif
206
ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
207
LIBOBJS+=sh4-dis.o
208
endif
209
ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
210
LIBOBJS+=hppa-dis.o
211
endif
212
ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
213
LIBOBJS+=s390-dis.o
214
endif
215

    
216
# libqemu
217

    
218
libqemu.a: $(LIBOBJS)
219

    
220
translate.o: translate.c cpu.h
221

    
222
translate-all.o: translate-all.c cpu.h
223

    
224
tcg/tcg.o: cpu.h
225

    
226
# HELPER_CFLAGS is used for all the code compiled with static register
227
# variables
228
op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
229

    
230
cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
231

    
232
#########################################################
233
# Linux user emulator target
234

    
235
ifdef CONFIG_LINUX_USER
236

    
237
ifndef TARGET_ABI_DIR
238
  TARGET_ABI_DIR=$(TARGET_ARCH)
239
endif
240
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
241
CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
242

    
243
ifdef CONFIG_STATIC
244
LDFLAGS+=-static
245
endif
246

    
247
ifeq ($(ARCH),i386)
248
ifdef TARGET_GPROF
249
USE_I386_LD=y
250
endif
251
ifdef CONFIG_STATIC
252
USE_I386_LD=y
253
endif
254
ifdef USE_I386_LD
255
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
256
else
257
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
258
# that the kernel ELF loader considers as an executable. I think this
259
# is the simplest way to make it self virtualizable!
260
LDFLAGS+=-Wl,-shared
261
endif
262
endif
263

    
264
ifeq ($(ARCH),x86_64)
265
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
266
endif
267

    
268
ifeq ($(ARCH),ppc)
269
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
270
endif
271

    
272
ifeq ($(ARCH),ppc64)
273
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
274
endif
275

    
276
ifeq ($(ARCH),s390)
277
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
278
endif
279

    
280
ifeq ($(ARCH),sparc)
281
# -static is used to avoid g1/g3 usage by the dynamic linker	
282
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
283
endif
284

    
285
ifeq ($(ARCH),sparc64)
286
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
287
endif
288

    
289
ifeq ($(ARCH),alpha)
290
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
291
endif
292

    
293
ifeq ($(ARCH),ia64)
294
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
295
endif
296

    
297
ifeq ($(ARCH),arm)
298
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
299
endif
300

    
301
ifeq ($(ARCH),m68k)
302
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
303
endif
304

    
305
ifeq ($(ARCH),mips)
306
ifeq ($(WORDS_BIGENDIAN),yes)
307
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
308
else
309
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
310
endif
311
endif
312

    
313
ifeq ($(ARCH),mips64)
314
ifeq ($(WORDS_BIGENDIAN),yes)
315
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
316
else
317
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
318
endif
319
endif
320

    
321
# profiling code
322
ifdef TARGET_GPROF
323
LDFLAGS+=-p
324
CFLAGS+=-p
325
endif
326

    
327
OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
328
      elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
329
LIBS+= $(PTHREADLIBS)
330
LIBS+= $(CLOCKLIBS)
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
# Note: this is a workaround. The real fix is to avoid compiling
352
# cpu_signal_handler() in cpu-exec.c.
353
signal.o: CFLAGS += $(HELPER_CFLAGS)
354

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

    
364
endif #CONFIG_LINUX_USER
365

    
366
#########################################################
367
# Darwin user emulator target
368

    
369
ifdef CONFIG_DARWIN_USER
370

    
371
VPATH+=:$(SRC_PATH)/darwin-user
372
CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
373

    
374
# Leave some space for the regular program loading zone
375
LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
376

    
377
LIBS+=-lmx
378

    
379
OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
380
      gdbstub.o gdbstub-xml.o
381

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

    
386
$(QEMU_PROG): ARLIBS=libqemu.a
387
$(QEMU_PROG): $(OBJS) libqemu.a
388
	$(call LINK,$(OBJS))
389

    
390
endif #CONFIG_DARWIN_USER
391

    
392
#########################################################
393
# BSD user emulator target
394

    
395
ifdef CONFIG_BSD_USER
396

    
397
VPATH+=:$(SRC_PATH)/bsd-user
398
CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
399

    
400
ifdef CONFIG_STATIC
401
LDFLAGS+=-static
402
endif
403

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

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

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

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

    
433
ifeq ($(ARCH),s390)
434
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
435
endif
436

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

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

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

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

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

    
458
ifeq ($(ARCH),m68k)
459
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
460
endif
461

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

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

    
478
OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
479
      gdbstub.o gdbstub-xml.o
480
OBJS+= uaccess.o
481

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

    
486
$(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
487
$(QEMU_PROG): $(OBJS) libqemu.a ../libqemu_user.a
488
	$(call LINK,$(OBJS))
489

    
490
endif #CONFIG_BSD_USER
491

    
492
#########################################################
493
# System emulator target
494
ifndef CONFIG_USER_ONLY
495

    
496
OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
497
     gdbstub.o gdbstub-xml.o
498
# virtio has to be here due to weird dependency between PCI and virtio-net.
499
# need to fix this properly
500
OBJS+=virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
501
ifdef CONFIG_KVM
502
OBJS+=kvm.o kvm-all.o
503
endif
504

    
505
LIBS+=-lz
506
ifdef CONFIG_ALSA
507
LIBS += -lasound
508
endif
509
ifdef CONFIG_ESD
510
LIBS += -lesd
511
endif
512
ifdef CONFIG_PA
513
LIBS += -lpulse-simple
514
endif
515
ifdef CONFIG_DSOUND
516
LIBS += -lole32 -ldxguid
517
endif
518
ifdef CONFIG_FMOD
519
LIBS += $(CONFIG_FMOD_LIB)
520
endif
521
ifdef CONFIG_OSS
522
LIBS += $(CONFIG_OSS_LIB)
523
endif
524

    
525
SOUND_HW = sb16.o es1370.o ac97.o
526
ifdef CONFIG_ADLIB
527
SOUND_HW += fmopl.o adlib.o
528
adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
529
endif
530
ifdef CONFIG_GUS
531
SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
532
endif
533
ifdef CONFIG_CS4231A
534
SOUND_HW += cs4231a.o
535
endif
536

    
537
ifdef CONFIG_VNC_TLS
538
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
539
LIBS += $(CONFIG_VNC_TLS_LIBS)
540
endif
541

    
542
ifdef CONFIG_VNC_SASL
543
CPPFLAGS += $(CONFIG_VNC_SASL_CFLAGS)
544
LIBS += $(CONFIG_VNC_SASL_LIBS)
545
endif
546

    
547
ifdef CONFIG_BLUEZ
548
LIBS += $(CONFIG_BLUEZ_LIBS)
549
endif
550

    
551
# xen backend driver support
552
XEN_OBJS := xen_machine_pv.o xen_domainbuild.o
553
ifeq ($(CONFIG_XEN), yes)
554
  OBJS += $(XEN_OBJS)
555
  LIBS += $(XEN_LIBS)
556
endif
557

    
558
# USB layer
559
OBJS+= usb-ohci.o
560

    
561
# PCI network cards
562
OBJS += eepro100.o
563
OBJS += ne2000.o
564
OBJS += pcnet.o
565
OBJS += rtl8139.o
566
OBJS += e1000.o
567

    
568
# Generic watchdog support and some watchdog devices
569
OBJS += wdt_ib700.o wdt_i6300esb.o
570

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

    
620
OBJS+= microblaze_pic_cpu.o
621
OBJS+= xilinx_intc.o
622
OBJS+= xilinx_timer.o
623
OBJS+= xilinx_uartlite.o
624
OBJS+= xilinx_ethlite.o
625

    
626
OBJS+= pflash_cfi02.o
627
ifdef FDT_LIBS
628
OBJS+= device_tree.o
629
LIBS+= $(FDT_LIBS)
630
endif
631
endif
632
ifeq ($(TARGET_BASE_ARCH), cris)
633
# Boards
634
OBJS+= cris_pic_cpu.o etraxfs.o axis_dev88.o
635

    
636
# IO blocks
637
OBJS+= etraxfs_dma.o
638
OBJS+= etraxfs_pic.o
639
OBJS+= etraxfs_eth.o
640
OBJS+= etraxfs_timer.o
641
OBJS+= etraxfs_ser.o
642

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

    
699
LIBS+=$(PTHREADLIBS)
700
LIBS+=$(CLOCKLIBS)
701
# specific flags are needed for non soft mmu emulator
702
ifdef CONFIG_STATIC
703
LDFLAGS+=-static
704
endif
705
ifndef CONFIG_DARWIN
706
ifndef CONFIG_WIN32
707
ifndef CONFIG_SOLARIS
708
ifndef CONFIG_AIX
709
LIBS+=-lutil
710
endif
711
endif
712
endif
713
endif
714
ifdef TARGET_GPROF
715
vl.o: CFLAGS+=-p
716
LDFLAGS+=-p
717
endif
718

    
719
ifeq ($(ARCH),ia64)
720
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
721
endif
722

    
723
ifdef CONFIG_WIN32
724
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
725
endif
726

    
727
# profiling code
728
ifdef TARGET_GPROF
729
LDFLAGS+=-p
730
main.o: CFLAGS+=-p
731
endif
732

    
733
vl.o: qemu-options.h
734

    
735
monitor.o: qemu-monitor.h
736

    
737
$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
738
$(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
739
$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB)
740
	$(call LINK,$(OBJS))
741

    
742
endif # !CONFIG_USER_ONLY
743

    
744
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
745
ifeq ($(TARGET_XML_FILES),)
746
	$(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
747
else
748
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
749
endif
750

    
751
qemu-options.h: $(SRC_PATH)/qemu-options.hx
752
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
753

    
754
qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
755
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
756

    
757
clean:
758
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
759
	rm -f *.d */*.d tcg/*.o
760
	rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
761

    
762
install: all
763
ifneq ($(PROGS),)
764
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
765
endif
766

    
767
# Include automatically generated dependency files
768
-include $(wildcard *.d */*.d)