Statistics
| Branch: | Revision:

root / Makefile.target @ 0bfe3ca5

History | View | Annotate | Download (17.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),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

    
132
#########################################################
133
# cpu emulator library
134
LIBOBJS=exec.o translate-all.o cpu-exec.o\
135
        translate.o host-utils.o
136
ifdef CONFIG_KQEMU
137
LIBOBJS+= kqemu.o
138
endif
139
# TCG code generator
140
LIBOBJS+= 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
LIBOBJS+=fpu/softfloat.o
147
else
148
LIBOBJS+=fpu/softfloat-native.o
149
endif
150
CPPFLAGS+=-I$(SRC_PATH)/fpu
151
LIBOBJS+= op_helper.o helper.o
152

    
153
ifeq ($(TARGET_BASE_ARCH), arm)
154
LIBOBJS+= neon_helper.o iwmmxt_helper.o
155
endif
156

    
157
ifeq ($(TARGET_BASE_ARCH), alpha)
158
LIBOBJS+= alpha_palcode.o
159
endif
160

    
161
ifeq ($(TARGET_BASE_ARCH), cris)
162
LIBOBJS+= cris-dis.o
163

    
164
ifndef CONFIG_USER_ONLY
165
LIBOBJS+= mmu.o
166
endif
167
endif
168

    
169
# NOTE: the disassembler code is only needed for debugging
170
LIBOBJS+=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
ifdef USE_I386_DIS
178
LIBOBJS+=i386-dis.o
179
endif
180
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
181
LIBOBJS+=alpha-dis.o
182
endif
183
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
184
LIBOBJS+=ppc-dis.o
185
endif
186
ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
187
LIBOBJS+=mips-dis.o
188
endif
189
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
190
LIBOBJS+=sparc-dis.o
191
endif
192
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
193
LIBOBJS+=arm-dis.o
194
endif
195
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
196
LIBOBJS+=m68k-dis.o
197
endif
198
ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
199
LIBOBJS+=sh4-dis.o
200
endif
201
ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
202
LIBOBJS+=hppa-dis.o
203
endif
204
ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
205
LIBOBJS+=s390-dis.o
206
endif
207

    
208
# libqemu
209

    
210
libqemu.a: $(LIBOBJS)
211

    
212
translate.o: translate.c cpu.h
213

    
214
translate-all.o: translate-all.c cpu.h
215

    
216
tcg/tcg.o: cpu.h
217

    
218
# HELPER_CFLAGS is used for all the code compiled with static register
219
# variables
220
op_helper.o: CFLAGS += $(HELPER_CFLAGS) $(I386_CFLAGS)
221

    
222
cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
223

    
224
#########################################################
225
# Linux user emulator target
226

    
227
ifdef CONFIG_LINUX_USER
228

    
229
ifndef TARGET_ABI_DIR
230
  TARGET_ABI_DIR=$(TARGET_ARCH)
231
endif
232
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
233
CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
234

    
235
ifdef CONFIG_STATIC
236
LDFLAGS+=-static
237
endif
238

    
239
ifeq ($(ARCH),i386)
240
ifdef TARGET_GPROF
241
USE_I386_LD=y
242
endif
243
ifdef CONFIG_STATIC
244
USE_I386_LD=y
245
endif
246
ifdef USE_I386_LD
247
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
248
else
249
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
250
# that the kernel ELF loader considers as an executable. I think this
251
# is the simplest way to make it self virtualizable!
252
LDFLAGS+=-Wl,-shared
253
endif
254
endif
255

    
256
ifeq ($(ARCH),x86_64)
257
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
258
endif
259

    
260
ifeq ($(ARCH),ppc)
261
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
262
endif
263

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

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

    
272
ifeq ($(ARCH),sparc)
273
# -static is used to avoid g1/g3 usage by the dynamic linker	
274
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
275
endif
276

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

    
281
ifeq ($(ARCH),alpha)
282
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
283
endif
284

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

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

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

    
297
ifeq ($(ARCH),mips)
298
ifeq ($(WORDS_BIGENDIAN),yes)
299
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
300
else
301
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
302
endif
303
endif
304

    
305
ifeq ($(ARCH),mips64)
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
# profiling code
314
ifdef TARGET_GPROF
315
LDFLAGS+=-p
316
CFLAGS+=-p
317
endif
318

    
319
OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
320
      elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o
321
LIBS+= $(PTHREADLIBS)
322
LIBS+= $(CLOCKLIBS)
323
ifdef TARGET_HAS_BFLT
324
OBJS+= flatload.o
325
endif
326
ifdef TARGET_HAS_ELFLOAD32
327
OBJS+= elfload32.o
328
elfload32.o: elfload.c
329
endif
330

    
331
ifeq ($(TARGET_ARCH), i386)
332
OBJS+= vm86.o
333
endif
334
ifeq ($(TARGET_ARCH), arm)
335
OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
336
nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
337
 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
338
endif
339
ifeq ($(TARGET_ARCH), m68k)
340
OBJS+= m68k-sim.o m68k-semi.o
341
endif
342

    
343
# Note: this is a workaround. The real fix is to avoid compiling
344
# cpu_signal_handler() in cpu-exec.c.
345
signal.o: CFLAGS += $(HELPER_CFLAGS)
346

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

    
356
endif #CONFIG_LINUX_USER
357

    
358
#########################################################
359
# Darwin user emulator target
360

    
361
ifdef CONFIG_DARWIN_USER
362

    
363
VPATH+=:$(SRC_PATH)/darwin-user
364
CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
365

    
366
# Leave some space for the regular program loading zone
367
LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
368

    
369
LIBS+=-lmx
370

    
371
OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
372
      gdbstub.o gdbstub-xml.o
373

    
374
# Note: this is a workaround. The real fix is to avoid compiling
375
# cpu_signal_handler() in cpu-exec.c.
376
signal.o: CFLAGS += $(HELPER_CFLAGS)
377

    
378
$(QEMU_PROG): ARLIBS=libqemu.a
379
$(QEMU_PROG): $(OBJS) libqemu.a
380
	$(call LINK,$(OBJS))
381

    
382
endif #CONFIG_DARWIN_USER
383

    
384
#########################################################
385
# BSD user emulator target
386

    
387
ifdef CONFIG_BSD_USER
388

    
389
VPATH+=:$(SRC_PATH)/bsd-user
390
CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
391

    
392
ifdef CONFIG_STATIC
393
LDFLAGS+=-static
394
endif
395

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

    
413
ifeq ($(ARCH),x86_64)
414
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
415
endif
416

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

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

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

    
429
ifeq ($(ARCH),sparc)
430
# -static is used to avoid g1/g3 usage by the dynamic linker
431
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
432
endif
433

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

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

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

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

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

    
454
ifeq ($(ARCH),mips)
455
ifeq ($(WORDS_BIGENDIAN),yes)
456
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
457
else
458
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
459
endif
460
endif
461

    
462
ifeq ($(ARCH),mips64)
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
OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
471
      gdbstub.o gdbstub-xml.o
472
OBJS+= uaccess.o
473

    
474
# Note: this is a workaround. The real fix is to avoid compiling
475
# cpu_signal_handler() in cpu-exec.c.
476
signal.o: CFLAGS += $(HELPER_CFLAGS)
477

    
478
$(QEMU_PROG): ARLIBS=libqemu.a ../libqemu_user.a
479
$(QEMU_PROG): $(OBJS) libqemu.a ../libqemu_user.a
480
	$(call LINK,$(OBJS))
481

    
482
endif #CONFIG_BSD_USER
483

    
484
#########################################################
485
# System emulator target
486
ifndef CONFIG_USER_ONLY
487

    
488
OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o \
489
     gdbstub.o gdbstub-xml.o
490
# virtio has to be here due to weird dependency between PCI and virtio-net.
491
# need to fix this properly
492
OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
493
OBJS+=fw_cfg.o
494
ifdef CONFIG_KVM
495
OBJS+=kvm.o kvm-all.o
496
endif
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_HW = sb16.o es1370.o ac97.o
519
ifdef CONFIG_ADLIB
520
SOUND_HW += fmopl.o adlib.o
521
adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
522
endif
523
ifdef CONFIG_GUS
524
SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
525
endif
526
ifdef CONFIG_CS4231A
527
SOUND_HW += cs4231a.o
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
XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o
546
XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
547
ifeq ($(CONFIG_XEN), yes)
548
  OBJS += $(XEN_OBJS)
549
  LIBS += $(XEN_LIBS)
550
endif
551

    
552
# SCSI layer
553
OBJS+= lsi53c895a.o esp.o
554

    
555
# USB layer
556
OBJS+= usb-ohci.o
557

    
558
# PCI network cards
559
OBJS += eepro100.o
560
OBJS += ne2000.o
561
OBJS += pcnet.o
562
OBJS += rtl8139.o
563
OBJS += e1000.o
564

    
565
# Generic watchdog support and some watchdog devices
566
OBJS += watchdog.o
567
OBJS += wdt_ib700.o wdt_i6300esb.o
568

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

    
619
# IO blocks
620
OBJS+= etraxfs_dma.o
621
OBJS+= etraxfs_pic.o
622
OBJS+= etraxfs_eth.o
623
OBJS+= etraxfs_timer.o
624
OBJS+= etraxfs_ser.o
625

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

    
679
LIBS+=$(PTHREADLIBS)
680
LIBS+=$(CLOCKLIBS)
681
# specific flags are needed for non soft mmu emulator
682
ifdef CONFIG_STATIC
683
LDFLAGS+=-static
684
endif
685
ifndef CONFIG_DARWIN
686
ifndef CONFIG_WIN32
687
ifndef CONFIG_SOLARIS
688
ifndef CONFIG_AIX
689
LIBS+=-lutil
690
endif
691
endif
692
endif
693
endif
694
ifdef TARGET_GPROF
695
vl.o: CFLAGS+=-p
696
LDFLAGS+=-p
697
endif
698

    
699
ifeq ($(ARCH),ia64)
700
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
701
endif
702

    
703
ifdef CONFIG_WIN32
704
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
705
endif
706

    
707
# profiling code
708
ifdef TARGET_GPROF
709
LDFLAGS+=-p
710
main.o: CFLAGS+=-p
711
endif
712

    
713
vl.o: qemu-options.h
714

    
715
$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
716
$(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a
717
$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
718
	$(call LINK,$(OBJS))
719

    
720
endif # !CONFIG_USER_ONLY
721

    
722
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
723
ifeq ($(TARGET_XML_FILES),)
724
	$(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
725
else
726
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
727
endif
728

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

    
732
clean:
733
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c
734
	rm -f *.d */*.d tcg/*.o
735

    
736
install: all
737
ifneq ($(PROGS),)
738
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
739
endif
740

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