Statistics
| Branch: | Revision:

root / Makefile.target @ 17759187

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
	rm -f $@
215
	$(AR) rcs $@ $(LIBOBJS)
216

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

    
219
translate-all.o: translate-all.c cpu.h
220

    
221
tcg/tcg.o: cpu.h
222

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

    
227
cpu-exec.o: CFLAGS += $(HELPER_CFLAGS)
228

    
229
#########################################################
230
# Linux user emulator target
231

    
232
ifdef CONFIG_LINUX_USER
233

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

    
240
ifdef CONFIG_STATIC
241
LDFLAGS+=-static
242
endif
243

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
347
ifdef CONFIG_GDBSTUB
348
OBJS+=gdbstub.o gdbstub-xml.o
349
endif
350

    
351
OBJS+= libqemu.a
352

    
353
# Note: this is a workaround. The real fix is to avoid compiling
354
# cpu_signal_handler() in cpu-exec.c.
355
signal.o: CFLAGS += $(HELPER_CFLAGS)
356

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

    
365
endif #CONFIG_LINUX_USER
366

    
367
#########################################################
368
# Darwin user emulator target
369

    
370
ifdef CONFIG_DARWIN_USER
371

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

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

    
378
LIBS+=-lmx
379

    
380
OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
381

    
382
OBJS+= libqemu.a
383

    
384
ifdef CONFIG_GDBSTUB
385
OBJS+=gdbstub.o gdbstub-xml.o
386
endif
387

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

    
392
$(QEMU_PROG): $(OBJS)
393
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
394

    
395
endif #CONFIG_DARWIN_USER
396

    
397
#########################################################
398
# BSD user emulator target
399

    
400
ifdef CONFIG_BSD_USER
401

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

    
405
ifdef CONFIG_STATIC
406
LDFLAGS+=-static
407
endif
408

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

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

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

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

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

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

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

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

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

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

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

    
467
ifeq ($(ARCH),mips)
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
ifeq ($(ARCH),mips64)
476
ifeq ($(WORDS_BIGENDIAN),yes)
477
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
478
else
479
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
480
endif
481
endif
482

    
483
OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
484
OBJS+= uaccess.o
485

    
486
OBJS+= libqemu.a
487

    
488
ifdef CONFIG_GDBSTUB
489
OBJS+=gdbstub.o
490
endif
491

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

    
496
$(QEMU_PROG): $(OBJS) ../libqemu_user.a
497
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
498

    
499
endif #CONFIG_BSD_USER
500

    
501
#########################################################
502
# System emulator target
503
ifndef CONFIG_USER_ONLY
504

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

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

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

    
554
ifdef CONFIG_VNC_TLS
555
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
556
LIBS += $(CONFIG_VNC_TLS_LIBS)
557
endif
558

    
559
ifdef CONFIG_BLUEZ
560
LIBS += $(CONFIG_BLUEZ_LIBS)
561
endif
562

    
563
# SCSI layer
564
OBJS+= lsi53c895a.o esp.o
565

    
566
# USB layer
567
OBJS+= usb-ohci.o
568

    
569
# EEPROM emulation
570
OBJS += eeprom93xx.o
571

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

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

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

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

    
689
LIBS+=$(AIOLIBS)
690
# specific flags are needed for non soft mmu emulator
691
ifdef CONFIG_STATIC
692
LDFLAGS+=-static
693
endif
694
ifndef CONFIG_DARWIN
695
ifndef CONFIG_WIN32
696
ifndef CONFIG_SOLARIS
697
ifndef CONFIG_AIX
698
LIBS+=-lutil
699
endif
700
endif
701
endif
702
endif
703
ifdef TARGET_GPROF
704
vl.o: CFLAGS+=-p
705
LDFLAGS+=-p
706
endif
707

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

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

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

    
722
$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
723
	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
724

    
725
endif # !CONFIG_USER_ONLY
726

    
727
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
728
	rm -f $@
729
ifeq ($(TARGET_XML_FILES),)
730
	echo > $@
731
else
732
	$(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
733
endif
734

    
735
clean:
736
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
737
	rm -f *.d */*.d tcg/*.o
738

    
739
install: all
740
ifneq ($(PROGS),)
741
	$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
742
endif
743

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