Statistics
| Branch: | Revision:

root / Makefile.target @ cec7d0b6

History | View | Annotate | Download (15.9 kB)

1
include config.mak
2

    
3
TARGET_BASE_ARCH:=$(TARGET_ARCH)
4
ifeq ($(TARGET_ARCH), x86_64)
5
TARGET_BASE_ARCH:=i386
6
endif
7
ifeq ($(TARGET_ARCH), mipsn32)
8
TARGET_BASE_ARCH:=mips
9
endif
10
ifeq ($(TARGET_ARCH), mips64)
11
TARGET_BASE_ARCH:=mips
12
endif
13
ifeq ($(TARGET_ARCH), ppc64)
14
TARGET_BASE_ARCH:=ppc
15
endif
16
ifeq ($(TARGET_ARCH), ppc64h)
17
TARGET_BASE_ARCH:=ppc
18
endif
19
ifeq ($(TARGET_ARCH), ppcemb)
20
TARGET_BASE_ARCH:=ppc
21
endif
22
ifeq ($(TARGET_ARCH), sparc64)
23
TARGET_BASE_ARCH:=sparc
24
endif
25
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
26
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
27
CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MP -DNEED_CPU_H
28
#CFLAGS+=-Werror
29
LIBS=
30
DYNGEN=../dyngen$(EXESUF)
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
# We require -O2 to avoid the stack setup prologue in EXIT_TB
76
OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing
77

    
78
# cc-option
79
# Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
80

    
81
cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
82
              > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
83

    
84
OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
85
OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
86
OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
87
OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
88
OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
89
OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
90
OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
91
OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
92
OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
93

    
94
HELPER_CFLAGS=
95

    
96
ifeq ($(ARCH),i386)
97
HELPER_CFLAGS+=-fomit-frame-pointer
98
OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
99
# op.c and helper.c need this on 32-bit x86 system to avoid
100
# a compiler spill error. This can probably go away
101
# once the SSE ops have been converted to TCG
102
ifeq ($(HAVE_GT_GCC_3_3), true)
103
I386_CFLAGS=-march=i586 -mtune=i686
104
endif
105
endif
106

    
107
ifeq ($(ARCH),ppc)
108
CPPFLAGS+= -D__powerpc__
109
endif
110

    
111
ifeq ($(ARCH),sparc)
112
  CFLAGS+=-ffixed-g2 -ffixed-g3
113
  OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
114
  ifeq ($(CONFIG_SOLARIS),yes)
115
    OP_CFLAGS+=-fno-omit-frame-pointer
116
  else
117
    CFLAGS+=-ffixed-g1 -ffixed-g6
118
    HELPER_CFLAGS+=-ffixed-i0
119
  endif
120
endif
121

    
122
ifeq ($(ARCH),sparc64)
123
  CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
124
  OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
125
  ifneq ($(CONFIG_SOLARIS),yes)
126
    OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
127
  endif
128
endif
129

    
130
ifeq ($(ARCH),alpha)
131
# -msmall-data is not used for OP_CFLAGS because we want two-instruction
132
# relocations for the constant constructions
133
# Ensure there's only a single GP
134
CFLAGS+=-msmall-data
135
endif
136

    
137
ifeq ($(ARCH),hppa)
138
OP_CFLAGS=-O1 -fno-delayed-branch
139
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
140
endif
141

    
142
ifeq ($(ARCH),ia64)
143
CFLAGS+=-mno-sdata
144
OP_CFLAGS+=-mno-sdata
145
endif
146

    
147
ifeq ($(ARCH),arm)
148
OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
149
endif
150

    
151
ifeq ($(ARCH),m68k)
152
OP_CFLAGS+=-fomit-frame-pointer
153
endif
154

    
155
ifeq ($(ARCH),mips)
156
OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
157
endif
158

    
159
ifeq ($(ARCH),mips64)
160
OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
161
endif
162

    
163
CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
164
LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
165
OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
166

    
167
CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
168
LIBS+=-lm
169
ifdef CONFIG_WIN32
170
LIBS+=-lwinmm -lws2_32 -liphlpapi
171
endif
172
ifdef CONFIG_SOLARIS
173
LIBS+=-lsocket -lnsl -lresolv
174
ifdef NEEDS_LIBSUNMATH
175
LIBS+=-lsunmath
176
LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
177
OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
178
CFLAGS+=-I/opt/SUNWspro/prod/include/cc
179
endif
180
endif
181

    
182
all: $(PROGS)
183

    
184
#########################################################
185
# cpu emulator library
186
LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
187
        translate.o host-utils.o
188
ifdef CONFIG_DYNGEN_OP
189
exec.o: dyngen-opc.h
190
LIBOBJS+=op.o
191
endif
192
# TCG code generator
193
LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
194
CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
195
ifeq ($(ARCH),sparc64)
196
CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
197
endif
198
ifdef CONFIG_SOFTFLOAT
199
LIBOBJS+=fpu/softfloat.o
200
else
201
LIBOBJS+=fpu/softfloat-native.o
202
endif
203
CPPFLAGS+=-I$(SRC_PATH)/fpu
204
LIBOBJS+= op_helper.o helper.o
205

    
206
ifeq ($(TARGET_BASE_ARCH), arm)
207
LIBOBJS+= neon_helper.o iwmmxt_helper.o
208
endif
209

    
210
ifeq ($(TARGET_BASE_ARCH), alpha)
211
LIBOBJS+= alpha_palcode.o
212
endif
213

    
214
ifeq ($(TARGET_BASE_ARCH), cris)
215
LIBOBJS+= cris-dis.o
216

    
217
ifndef CONFIG_USER_ONLY
218
LIBOBJS+= mmu.o
219
endif
220
endif
221

    
222
# NOTE: the disassembler code is only needed for debugging
223
LIBOBJS+=disas.o
224
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
225
USE_I386_DIS=y
226
endif
227
ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
228
USE_I386_DIS=y
229
endif
230
ifdef USE_I386_DIS
231
LIBOBJS+=i386-dis.o
232
endif
233
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
234
LIBOBJS+=alpha-dis.o
235
endif
236
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
237
LIBOBJS+=ppc-dis.o
238
endif
239
ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
240
LIBOBJS+=mips-dis.o
241
endif
242
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
243
LIBOBJS+=sparc-dis.o
244
endif
245
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
246
LIBOBJS+=arm-dis.o
247
endif
248
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
249
LIBOBJS+=m68k-dis.o
250
endif
251
ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
252
LIBOBJS+=sh4-dis.o
253
endif
254
ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
255
LIBOBJS+=hppa-dis.o
256
endif
257
ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
258
LIBOBJS+=s390-dis.o
259
endif
260

    
261
# libqemu
262

    
263
ifdef CONFIG_DYNGEN_OP
264
OPC_H = gen-op.h dyngen-opc.h op.h
265
endif
266

    
267
libqemu.a: $(LIBOBJS)
268
	rm -f $@
269
	$(AR) rcs $@ $(LIBOBJS)
270

    
271
translate.o: translate.c cpu.h $(OPC_H)
272

    
273
translate-all.o: translate-all.c cpu.h $(OPC_H)
274

    
275
tcg/tcg.o: cpu.h $(OPC_H)
276

    
277
tcg/tcg-dyngen.o: $(OPC_H)
278

    
279
tcg/tcg-runtime.o: $(OPC_H)
280

    
281
op.h: op.o $(DYNGEN)
282
	$(DYNGEN) -o $@ $<
283

    
284
dyngen-opc.h: op.o $(DYNGEN)
285
	$(DYNGEN) -c -o $@ $<
286

    
287
gen-op.h: op.o $(DYNGEN)
288
	$(DYNGEN) -g -o $@ $<
289

    
290
op.o: op.c
291
	$(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $<
292

    
293
machine.o: machine.c
294
	$(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
295

    
296
# HELPER_CFLAGS is used for all the code compiled with static register
297
# variables
298
op_helper.o: op_helper.c
299
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $<
300

    
301
cpu-exec.o: cpu-exec.c $(OPC_H)
302
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
303

    
304
#########################################################
305
# Linux user emulator target
306

    
307
ifdef CONFIG_LINUX_USER
308

    
309
ifndef TARGET_ABI_DIR
310
  TARGET_ABI_DIR=$(TARGET_ARCH)
311
endif
312
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
313
CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
314

    
315
ifdef CONFIG_STATIC
316
LDFLAGS+=-static
317
endif
318

    
319
ifeq ($(ARCH),i386)
320
ifdef TARGET_GPROF
321
USE_I386_LD=y
322
endif
323
ifdef CONFIG_STATIC
324
USE_I386_LD=y
325
endif
326
ifdef USE_I386_LD
327
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
328
else
329
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
330
# that the kernel ELF loader considers as an executable. I think this
331
# is the simplest way to make it self virtualizable!
332
LDFLAGS+=-Wl,-shared
333
endif
334
endif
335

    
336
ifeq ($(ARCH),x86_64)
337
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
338
endif
339

    
340
ifeq ($(ARCH),ppc)
341
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
342
endif
343

    
344
ifeq ($(ARCH),s390)
345
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
346
endif
347

    
348
ifeq ($(ARCH),sparc)
349
# -static is used to avoid g1/g3 usage by the dynamic linker	
350
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
351
endif
352

    
353
ifeq ($(ARCH),sparc64)
354
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
355
endif
356

    
357
ifeq ($(ARCH),alpha)
358
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
359
endif
360

    
361
ifeq ($(ARCH),ia64)
362
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
363
endif
364

    
365
ifeq ($(ARCH),arm)
366
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
367
endif
368

    
369
ifeq ($(ARCH),m68k)
370
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
371
endif
372

    
373
ifeq ($(ARCH),mips)
374
ifeq ($(WORDS_BIGENDIAN),yes)
375
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
376
else
377
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
378
endif
379
endif
380

    
381
ifeq ($(ARCH),mips64)
382
ifeq ($(WORDS_BIGENDIAN),yes)
383
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
384
else
385
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
386
endif
387
endif
388

    
389
OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
390
      elfload.o linuxload.o uaccess.o
391
LIBS+= $(AIOLIBS)
392
ifdef TARGET_HAS_BFLT
393
OBJS+= flatload.o
394
endif
395
ifdef TARGET_HAS_ELFLOAD32
396
OBJS+= elfload32.o
397
elfload32.o: elfload.c
398
endif
399

    
400
ifeq ($(TARGET_ARCH), i386)
401
OBJS+= vm86.o
402
endif
403
ifeq ($(TARGET_ARCH), arm)
404
OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
405
nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
406
 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
407
endif
408
ifeq ($(TARGET_ARCH), m68k)
409
OBJS+= m68k-sim.o m68k-semi.o
410
endif
411

    
412
ifdef CONFIG_GDBSTUB
413
OBJS+=gdbstub.o
414
endif
415

    
416
OBJS+= libqemu.a
417

    
418
# Note: this is a workaround. The real fix is to avoid compiling
419
# cpu_signal_handler() in cpu-exec.c.
420
signal.o: signal.c
421
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
422

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

    
431
endif #CONFIG_LINUX_USER
432

    
433
#########################################################
434
# Darwin user emulator target
435

    
436
ifdef CONFIG_DARWIN_USER
437

    
438
VPATH+=:$(SRC_PATH)/darwin-user
439
CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
440

    
441
# Leave some space for the regular program loading zone
442
LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
443

    
444
LIBS+=-lmx
445

    
446
OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
447

    
448
OBJS+= libqemu.a
449

    
450
ifdef CONFIG_GDBSTUB
451
OBJS+=gdbstub.o
452
endif
453

    
454
# Note: this is a workaround. The real fix is to avoid compiling
455
# cpu_signal_handler() in cpu-exec.c.
456
signal.o: signal.c
457
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
458

    
459
$(QEMU_PROG): $(OBJS)
460
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
461

    
462
endif #CONFIG_DARWIN_USER
463

    
464
#########################################################
465
# System emulator target
466
ifndef CONFIG_USER_ONLY
467

    
468
OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o
469
ifdef CONFIG_WIN32
470
OBJS+=block-raw-win32.o
471
else
472
OBJS+=block-raw-posix.o
473
endif
474

    
475
LIBS+=-lz
476
ifdef CONFIG_ALSA
477
LIBS += -lasound
478
endif
479
ifdef CONFIG_ESD
480
LIBS += -lesd
481
endif
482
ifdef CONFIG_DSOUND
483
LIBS += -lole32 -ldxguid
484
endif
485
ifdef CONFIG_FMOD
486
LIBS += $(CONFIG_FMOD_LIB)
487
endif
488

    
489
SOUND_HW = sb16.o es1370.o
490
ifdef CONFIG_AC97
491
SOUND_HW += ac97.o
492
endif
493
ifdef CONFIG_ADLIB
494
SOUND_HW += fmopl.o adlib.o
495
endif
496
ifdef CONFIG_GUS
497
SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
498
endif
499

    
500
ifdef CONFIG_VNC_TLS
501
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
502
LIBS += $(CONFIG_VNC_TLS_LIBS)
503
endif
504

    
505
# SCSI layer
506
OBJS+= lsi53c895a.o esp.o
507

    
508
# USB layer
509
OBJS+= usb-ohci.o
510

    
511
# EEPROM emulation
512
OBJS += eeprom93xx.o
513

    
514
# PCI network cards
515
OBJS += eepro100.o
516
OBJS += ne2000.o
517
OBJS += pcnet.o
518
OBJS += rtl8139.o
519
OBJS += e1000.o
520

    
521
ifeq ($(TARGET_BASE_ARCH), i386)
522
# Hardware support
523
OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
524
OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
525
OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
526
OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o
527
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
528
endif
529
ifeq ($(TARGET_BASE_ARCH), ppc)
530
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
531
# shared objects
532
OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
533
# PREP target
534
OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
535
OBJS+= prep_pci.o ppc_prep.o
536
# Mac shared devices
537
OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
538
# OldWorld PowerMac
539
OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
540
# NewWorld PowerMac
541
OBJS+= unin_pci.o ppc_chrp.o
542
# PowerPC 4xx boards
543
OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
544
endif
545
ifeq ($(TARGET_BASE_ARCH), mips)
546
OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
547
OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
548
OBJS+= g364fb.o jazz_led.o
549
OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
550
OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
551
OBJS+= mipsnet.o
552
OBJS+= pflash_cfi01.o
553
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
554
endif
555
ifeq ($(TARGET_BASE_ARCH), cris)
556
OBJS+= etraxfs.o
557
OBJS+= etraxfs_dma.o
558
OBJS+= etraxfs_pic.o
559
OBJS+= etraxfs_eth.o
560
OBJS+= etraxfs_timer.o
561
OBJS+= etraxfs_ser.o
562

    
563
OBJS+= ptimer.o
564
OBJS+= pflash_cfi02.o
565
endif
566
ifeq ($(TARGET_BASE_ARCH), sparc)
567
ifeq ($(TARGET_ARCH), sparc64)
568
OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
569
OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
570
OBJS+= cirrus_vga.o parallel.o ptimer.o
571
else
572
OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
573
OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
574
OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
575
endif
576
endif
577
ifeq ($(TARGET_BASE_ARCH), arm)
578
OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
579
OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
580
OBJS+= versatile_pci.o ptimer.o
581
OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
582
OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
583
OBJS+= pl061.o
584
OBJS+= arm-semi.o
585
OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
586
OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
587
OBJS+= pflash_cfi01.o gumstix.o
588
OBJS+= spitz.o ide.o serial.o nand.o ecc.o
589
OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
590
OBJS+= omap2.o omap_dss.o
591
OBJS+= palm.o tsc210x.o
592
OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
593
OBJS+= tsc2005.o
594
OBJS+= mst_fpga.o mainstone.o
595
OBJS+= musicpal.o pflash_cfi02.o
596
CPPFLAGS += -DHAS_AUDIO
597
endif
598
ifeq ($(TARGET_BASE_ARCH), sh4)
599
OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
600
OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
601
endif
602
ifeq ($(TARGET_BASE_ARCH), m68k)
603
OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
604
OBJS+= m68k-semi.o dummy_m68k.o
605
endif
606
ifdef CONFIG_GDBSTUB
607
OBJS+=gdbstub.o
608
endif
609
ifdef CONFIG_COCOA
610
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
611
ifdef CONFIG_COREAUDIO
612
COCOA_LIBS+=-framework CoreAudio
613
endif
614
endif
615
ifdef CONFIG_SLIRP
616
CPPFLAGS+=-I$(SRC_PATH)/slirp
617
endif
618

    
619
LIBS+=$(AIOLIBS)
620
# specific flags are needed for non soft mmu emulator
621
ifdef CONFIG_STATIC
622
LDFLAGS+=-static
623
endif
624
ifndef CONFIG_DARWIN
625
ifndef CONFIG_WIN32
626
ifndef CONFIG_SOLARIS
627
LIBS+=-lutil
628
endif
629
endif
630
endif
631
ifdef TARGET_GPROF
632
vl.o: CFLAGS+=-p
633
LDFLAGS+=-p
634
endif
635

    
636
ifeq ($(ARCH),ia64)
637
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
638
endif
639

    
640
ifdef CONFIG_WIN32
641
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
642
endif
643

    
644
# profiling code
645
ifdef TARGET_GPROF
646
LDFLAGS+=-p
647
main.o: CFLAGS+=-p
648
endif
649

    
650
$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
651
	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS)
652

    
653
endif # !CONFIG_USER_ONLY
654

    
655
%.o: %.c
656
	$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
657

    
658
%.o: %.S
659
	$(CC) $(CPPFLAGS) -c -o $@ $<
660

    
661
clean:
662
	rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
663
	rm -f *.d */*.d tcg/*.o
664

    
665
install: all
666
ifneq ($(PROGS),)
667
	$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
668
endif
669

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