Statistics
| Branch: | Revision:

root / Makefile.target @ aa71cf80

History | View | Annotate | Download (16.6 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 ($(ARCH),sparc)
88
  CFLAGS+=-ffixed-g2 -ffixed-g3
89
  ifneq ($(CONFIG_SOLARIS),yes)
90
    CFLAGS+=-ffixed-g1 -ffixed-g6
91
    HELPER_CFLAGS+=-ffixed-i0
92
  endif
93
endif
94

    
95
ifeq ($(ARCH),sparc64)
96
  ifneq ($(CONFIG_SOLARIS),yes)
97
    CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
98
  else
99
    CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
100
  endif
101
endif
102

    
103
ifeq ($(ARCH),alpha)
104
# Ensure there's only a single GP
105
CFLAGS+=-msmall-data
106
endif
107

    
108
ifeq ($(ARCH),hppa)
109
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
110
endif
111

    
112
ifeq ($(ARCH),ia64)
113
CFLAGS+=-mno-sdata
114
endif
115

    
116
CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
117
LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
118

    
119
CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
120
LIBS+=-lm
121
ifdef CONFIG_WIN32
122
LIBS+=-lwinmm -lws2_32 -liphlpapi
123
endif
124
ifdef CONFIG_SOLARIS
125
LIBS+=-lsocket -lnsl -lresolv
126
ifdef NEEDS_LIBSUNMATH
127
LIBS+=-lsunmath
128
LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
129
CFLAGS+=-I/opt/SUNWspro/prod/include/cc
130
endif
131
endif
132

    
133
kvm.o: CFLAGS+=$(KVM_CFLAGS)
134
kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
135

    
136
all: $(PROGS)
137

    
138
#########################################################
139
# cpu emulator library
140
LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
141
        translate.o host-utils.o
142
# TCG code generator
143
LIBOBJS+= tcg/tcg.o tcg/tcg-runtime.o
144
CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
145
ifeq ($(ARCH),sparc64)
146
CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
147
endif
148
ifdef CONFIG_SOFTFLOAT
149
LIBOBJS+=fpu/softfloat.o
150
else
151
LIBOBJS+=fpu/softfloat-native.o
152
endif
153
CPPFLAGS+=-I$(SRC_PATH)/fpu
154
LIBOBJS+= op_helper.o helper.o
155

    
156
ifeq ($(TARGET_BASE_ARCH), arm)
157
LIBOBJS+= neon_helper.o iwmmxt_helper.o
158
endif
159

    
160
ifeq ($(TARGET_BASE_ARCH), alpha)
161
LIBOBJS+= alpha_palcode.o
162
endif
163

    
164
ifeq ($(TARGET_BASE_ARCH), cris)
165
LIBOBJS+= cris-dis.o
166

    
167
ifndef CONFIG_USER_ONLY
168
LIBOBJS+= mmu.o
169
endif
170
endif
171

    
172
# NOTE: the disassembler code is only needed for debugging
173
LIBOBJS+=disas.o
174
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
175
USE_I386_DIS=y
176
endif
177
ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
178
USE_I386_DIS=y
179
endif
180
ifdef USE_I386_DIS
181
LIBOBJS+=i386-dis.o
182
endif
183
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
184
LIBOBJS+=alpha-dis.o
185
endif
186
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
187
LIBOBJS+=ppc-dis.o
188
endif
189
ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
190
LIBOBJS+=mips-dis.o
191
endif
192
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
193
LIBOBJS+=sparc-dis.o
194
endif
195
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
196
LIBOBJS+=arm-dis.o
197
endif
198
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
199
LIBOBJS+=m68k-dis.o
200
endif
201
ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
202
LIBOBJS+=sh4-dis.o
203
endif
204
ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
205
LIBOBJS+=hppa-dis.o
206
endif
207
ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
208
LIBOBJS+=s390-dis.o
209
endif
210

    
211
# libqemu
212

    
213
libqemu.a: $(LIBOBJS)
214

    
215
translate.o: translate.c cpu.h
216

    
217
translate-all.o: translate-all.c cpu.h
218

    
219
tcg/tcg.o: cpu.h
220

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

    
225
cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
226

    
227
#########################################################
228
# Linux user emulator target
229

    
230
ifdef CONFIG_LINUX_USER
231

    
232
ifndef TARGET_ABI_DIR
233
  TARGET_ABI_DIR=$(TARGET_ARCH)
234
endif
235
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
236
CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
237

    
238
ifdef CONFIG_STATIC
239
LDFLAGS+=-static
240
endif
241

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

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

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

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

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

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

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

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

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

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

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

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

    
308
ifeq ($(ARCH),mips64)
309
ifeq ($(WORDS_BIGENDIAN),yes)
310
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
311
else
312
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
313
endif
314
endif
315

    
316
# profiling code
317
ifdef TARGET_GPROF
318
LDFLAGS+=-p
319
CFLAGS+=-p
320
endif
321

    
322
OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
323
      elfload.o linuxload.o uaccess.o envlist.o
324
LIBS+= $(AIOLIBS)
325
ifdef TARGET_HAS_BFLT
326
OBJS+= flatload.o
327
endif
328
ifdef TARGET_HAS_ELFLOAD32
329
OBJS+= elfload32.o
330
elfload32.o: elfload.c
331
endif
332

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

    
345
ifdef CONFIG_GDBSTUB
346
OBJS+=gdbstub.o gdbstub-xml.o
347
endif
348

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

    
363
endif #CONFIG_LINUX_USER
364

    
365
#########################################################
366
# Darwin user emulator target
367

    
368
ifdef CONFIG_DARWIN_USER
369

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

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

    
376
LIBS+=-lmx
377

    
378
OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
379

    
380
OBJS+= libqemu.a
381

    
382
ifdef CONFIG_GDBSTUB
383
OBJS+=gdbstub.o gdbstub-xml.o
384
endif
385

    
386
# Note: this is a workaround. The real fix is to avoid compiling
387
# cpu_signal_handler() in cpu-exec.c.
388
signal.o: CFLAGS += $(HELPER_CFLAGS)
389

    
390
$(QEMU_PROG): $(OBJS)
391
	$(LINK)
392

    
393
endif #CONFIG_DARWIN_USER
394

    
395
#########################################################
396
# BSD user emulator target
397

    
398
ifdef CONFIG_BSD_USER
399

    
400
VPATH+=:$(SRC_PATH)/bsd-user
401
CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
402

    
403
ifdef CONFIG_STATIC
404
LDFLAGS+=-static
405
endif
406

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

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

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

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

    
436
ifeq ($(ARCH),s390)
437
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
438
endif
439

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

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

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

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

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

    
461
ifeq ($(ARCH),m68k)
462
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
463
endif
464

    
465
ifeq ($(ARCH),mips)
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
ifeq ($(ARCH),mips64)
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
OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
482
OBJS+= uaccess.o
483

    
484
OBJS+= libqemu.a
485

    
486
ifdef CONFIG_GDBSTUB
487
OBJS+=gdbstub.o
488
endif
489

    
490
# Note: this is a workaround. The real fix is to avoid compiling
491
# cpu_signal_handler() in cpu-exec.c.
492
signal.o: CFLAGS += $(HELPER_CFLAGS)
493

    
494
$(QEMU_PROG): $(OBJS) ../libqemu_user.a
495
	$(LINK)
496

    
497
endif #CONFIG_BSD_USER
498

    
499
#########################################################
500
# System emulator target
501
ifndef CONFIG_USER_ONLY
502

    
503
OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o dma-helpers.o
504
# virtio has to be here due to weird dependency between PCI and virtio-net.
505
# need to fix this properly
506
OBJS+=virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
507
OBJS+=fw_cfg.o
508
ifdef CONFIG_KVM
509
OBJS+=kvm.o kvm-all.o
510
endif
511
ifdef CONFIG_WIN32
512
OBJS+=block-raw-win32.o
513
else
514
ifdef CONFIG_AIO
515
OBJS+=posix-aio-compat.o
516
endif
517
OBJS+=block-raw-posix.o
518
endif
519

    
520
LIBS+=-lz
521
ifdef CONFIG_ALSA
522
LIBS += -lasound
523
endif
524
ifdef CONFIG_ESD
525
LIBS += -lesd
526
endif
527
ifdef CONFIG_PA
528
LIBS += -lpulse-simple
529
endif
530
ifdef CONFIG_DSOUND
531
LIBS += -lole32 -ldxguid
532
endif
533
ifdef CONFIG_FMOD
534
LIBS += $(CONFIG_FMOD_LIB)
535
endif
536
ifdef CONFIG_OSS
537
LIBS += $(CONFIG_OSS_LIB)
538
endif
539

    
540
SOUND_HW = sb16.o es1370.o ac97.o
541
ifdef CONFIG_ADLIB
542
SOUND_HW += fmopl.o adlib.o
543
adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
544
endif
545
ifdef CONFIG_GUS
546
SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
547
endif
548
ifdef CONFIG_CS4231A
549
SOUND_HW += cs4231a.o
550
endif
551

    
552
ifdef CONFIG_VNC_TLS
553
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
554
LIBS += $(CONFIG_VNC_TLS_LIBS)
555
endif
556

    
557
ifdef CONFIG_BLUEZ
558
LIBS += $(CONFIG_BLUEZ_LIBS)
559
endif
560

    
561
# SCSI layer
562
OBJS+= lsi53c895a.o esp.o
563

    
564
# USB layer
565
OBJS+= usb-ohci.o
566

    
567
# EEPROM emulation
568
OBJS += eeprom93xx.o
569

    
570
# PCI network cards
571
OBJS += eepro100.o
572
OBJS += ne2000.o
573
OBJS += pcnet.o
574
OBJS += rtl8139.o
575
OBJS += e1000.o
576

    
577
# Serial mouse
578
OBJS += msmouse.o
579

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

    
627
# IO blocks
628
OBJS+= etraxfs_dma.o
629
OBJS+= etraxfs_pic.o
630
OBJS+= etraxfs_eth.o
631
OBJS+= etraxfs_timer.o
632
OBJS+= etraxfs_ser.o
633

    
634
OBJS+= ptimer.o
635
OBJS+= pflash_cfi02.o nand.o
636
endif
637
ifeq ($(TARGET_BASE_ARCH), sparc)
638
ifeq ($(TARGET_ARCH), sparc64)
639
OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
640
OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
641
OBJS+= cirrus_vga.o parallel.o ptimer.o
642
else
643
OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
644
OBJS+= slavio_timer.o escc.o slavio_misc.o fdc.o sparc32_dma.o
645
OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
646
endif
647
endif
648
ifeq ($(TARGET_BASE_ARCH), arm)
649
OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
650
OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
651
OBJS+= versatile_pci.o ptimer.o
652
OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
653
OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
654
OBJS+= pl061.o
655
OBJS+= arm-semi.o
656
OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
657
OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
658
OBJS+= pflash_cfi01.o gumstix.o
659
OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
660
OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
661
OBJS+= omap2.o omap_dss.o soc_dma.o
662
OBJS+= omap_sx1.o palm.o tsc210x.o
663
OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
664
OBJS+= tsc2005.o bt-hci-csr.o
665
OBJS+= mst_fpga.o mainstone.o
666
OBJS+= musicpal.o pflash_cfi02.o
667
CPPFLAGS += -DHAS_AUDIO
668
endif
669
ifeq ($(TARGET_BASE_ARCH), sh4)
670
OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
671
OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
672
OBJS+= ide.o
673
endif
674
ifeq ($(TARGET_BASE_ARCH), m68k)
675
OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
676
OBJS+= m68k-semi.o dummy_m68k.o
677
endif
678
ifdef CONFIG_GDBSTUB
679
OBJS+=gdbstub.o gdbstub-xml.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
LIBS+=$(AIOLIBS)
692
# specific flags are needed for non soft mmu emulator
693
ifdef CONFIG_STATIC
694
LDFLAGS+=-static
695
endif
696
ifndef CONFIG_DARWIN
697
ifndef CONFIG_WIN32
698
ifndef CONFIG_SOLARIS
699
ifndef CONFIG_AIX
700
LIBS+=-lutil
701
endif
702
endif
703
endif
704
endif
705
ifdef TARGET_GPROF
706
vl.o: CFLAGS+=-p
707
LDFLAGS+=-p
708
endif
709

    
710
ifeq ($(ARCH),ia64)
711
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
712
endif
713

    
714
ifdef CONFIG_WIN32
715
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
716
endif
717

    
718
# profiling code
719
ifdef TARGET_GPROF
720
LDFLAGS+=-p
721
main.o: CFLAGS+=-p
722
endif
723

    
724
$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
725

    
726
$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
727
	$(LINK)
728

    
729
endif # !CONFIG_USER_ONLY
730

    
731
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
732
	rm -f $@
733
ifeq ($(TARGET_XML_FILES),)
734
	echo > $@
735
else
736
	$(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
737
endif
738

    
739
clean:
740
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
741
	rm -f *.d */*.d tcg/*.o
742

    
743
install: all
744
ifneq ($(PROGS),)
745
	$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
746
endif
747

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