Statistics
| Branch: | Revision:

root / Makefile.target @ 662bbadd

History | View | Annotate | Download (18.8 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 -MT $@ -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 := -O2 -g -fno-strict-aliasing
77
OP_CFLAGS += -Wall -Wundef -Wendif-labels -Wwrite-strings
78

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

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

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

    
95
HELPER_CFLAGS=
96

    
97
ifeq ($(ARCH),i386)
98
HELPER_CFLAGS+=-fomit-frame-pointer
99
OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
100
endif
101

    
102
ifeq ($(ARCH),ppc)
103
CPPFLAGS+= -D__powerpc__
104
OP_CFLAGS+= -mlongcall
105
endif
106

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

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

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

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

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

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

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

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

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

    
161
CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
162
LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
163
OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
164

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

    
180
kvm.o: CFLAGS+=$(KVM_CFLAGS)
181
kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
182

    
183
all: $(PROGS)
184

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

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

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

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

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

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

    
262
# libqemu
263

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
305
#########################################################
306
# Linux user emulator target
307

    
308
ifdef CONFIG_LINUX_USER
309

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

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

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

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

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

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

    
349
ifeq ($(ARCH),s390)
350
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
351
endif
352

    
353
ifeq ($(ARCH),sparc)
354
# -static is used to avoid g1/g3 usage by the dynamic linker	
355
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
356
endif
357

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

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

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

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

    
374
ifeq ($(ARCH),m68k)
375
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
376
endif
377

    
378
ifeq ($(ARCH),mips)
379
ifeq ($(WORDS_BIGENDIAN),yes)
380
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
381
else
382
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
383
endif
384
endif
385

    
386
ifeq ($(ARCH),mips64)
387
ifeq ($(WORDS_BIGENDIAN),yes)
388
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
389
else
390
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
391
endif
392
endif
393

    
394
# profiling code
395
ifdef TARGET_GPROF
396
LDFLAGS+=-p
397
CFLAGS+=-p
398
endif
399

    
400
OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
401
      elfload.o linuxload.o uaccess.o
402
LIBS+= $(AIOLIBS)
403
ifdef TARGET_HAS_BFLT
404
OBJS+= flatload.o
405
endif
406
ifdef TARGET_HAS_ELFLOAD32
407
OBJS+= elfload32.o
408
elfload32.o: elfload.c
409
endif
410

    
411
ifeq ($(TARGET_ARCH), i386)
412
OBJS+= vm86.o
413
endif
414
ifeq ($(TARGET_ARCH), arm)
415
OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
416
nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
417
 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
418
endif
419
ifeq ($(TARGET_ARCH), m68k)
420
OBJS+= m68k-sim.o m68k-semi.o
421
endif
422

    
423
ifdef CONFIG_GDBSTUB
424
OBJS+=gdbstub.o gdbstub-xml.o
425
endif
426

    
427
OBJS+= libqemu.a
428

    
429
# Note: this is a workaround. The real fix is to avoid compiling
430
# cpu_signal_handler() in cpu-exec.c.
431
signal.o: signal.c
432
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
433

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

    
442
endif #CONFIG_LINUX_USER
443

    
444
#########################################################
445
# Darwin user emulator target
446

    
447
ifdef CONFIG_DARWIN_USER
448

    
449
VPATH+=:$(SRC_PATH)/darwin-user
450
CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
451

    
452
# Leave some space for the regular program loading zone
453
LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
454

    
455
LIBS+=-lmx
456

    
457
OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
458

    
459
OBJS+= libqemu.a
460

    
461
ifdef CONFIG_GDBSTUB
462
OBJS+=gdbstub.o gdbstub-xml.o
463
endif
464

    
465
# Note: this is a workaround. The real fix is to avoid compiling
466
# cpu_signal_handler() in cpu-exec.c.
467
signal.o: signal.c
468
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
469

    
470
$(QEMU_PROG): $(OBJS)
471
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
472

    
473
endif #CONFIG_DARWIN_USER
474

    
475
#########################################################
476
# BSD user emulator target
477

    
478
ifdef CONFIG_BSD_USER
479

    
480
VPATH+=:$(SRC_PATH)/bsd-user
481
CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
482

    
483
ifdef CONFIG_STATIC
484
LDFLAGS+=-static
485
endif
486

    
487
ifeq ($(ARCH),i386)
488
ifdef TARGET_GPROF
489
USE_I386_LD=y
490
endif
491
ifdef CONFIG_STATIC
492
USE_I386_LD=y
493
endif
494
ifdef USE_I386_LD
495
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
496
else
497
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
498
# that the kernel ELF loader considers as an executable. I think this
499
# is the simplest way to make it self virtualizable!
500
LDFLAGS+=-Wl,-shared
501
endif
502
endif
503

    
504
ifeq ($(ARCH),x86_64)
505
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
506
endif
507

    
508
ifeq ($(ARCH),ppc)
509
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
510
endif
511

    
512
ifeq ($(ARCH),ppc64)
513
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
514
endif
515

    
516
ifeq ($(ARCH),s390)
517
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
518
endif
519

    
520
ifeq ($(ARCH),sparc)
521
# -static is used to avoid g1/g3 usage by the dynamic linker
522
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
523
endif
524

    
525
ifeq ($(ARCH),sparc64)
526
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
527
endif
528

    
529
ifeq ($(ARCH),alpha)
530
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
531
endif
532

    
533
ifeq ($(ARCH),ia64)
534
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
535
endif
536

    
537
ifeq ($(ARCH),arm)
538
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
539
endif
540

    
541
ifeq ($(ARCH),m68k)
542
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
543
endif
544

    
545
ifeq ($(ARCH),mips)
546
ifeq ($(WORDS_BIGENDIAN),yes)
547
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
548
else
549
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
550
endif
551
endif
552

    
553
ifeq ($(ARCH),mips64)
554
ifeq ($(WORDS_BIGENDIAN),yes)
555
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
556
else
557
LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
558
endif
559
endif
560

    
561
OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
562
OBJS+= uaccess.o
563

    
564
OBJS+= libqemu.a
565

    
566
ifdef CONFIG_GDBSTUB
567
OBJS+=gdbstub.o
568
endif
569

    
570
# Note: this is a workaround. The real fix is to avoid compiling
571
# cpu_signal_handler() in cpu-exec.c.
572
signal.o: signal.c
573
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
574

    
575
$(QEMU_PROG): $(OBJS) ../libqemu_user.a
576
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
577

    
578
endif #CONFIG_BSD_USER
579

    
580
#########################################################
581
# System emulator target
582
ifndef CONFIG_USER_ONLY
583

    
584
OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o
585
OBJS+=fw_cfg.o
586
ifdef CONFIG_KVM
587
OBJS+=kvm.o kvm-all.o
588
endif
589
ifdef CONFIG_WIN32
590
OBJS+=block-raw-win32.o
591
else
592
OBJS+=block-raw-posix.o
593
endif
594

    
595
LIBS+=-lz
596
ifdef CONFIG_ALSA
597
LIBS += -lasound
598
endif
599
ifdef CONFIG_ESD
600
LIBS += -lesd
601
endif
602
ifdef CONFIG_PA
603
LIBS += -lpulse-simple
604
endif
605
ifdef CONFIG_DSOUND
606
LIBS += -lole32 -ldxguid
607
endif
608
ifdef CONFIG_FMOD
609
LIBS += $(CONFIG_FMOD_LIB)
610
endif
611
ifdef CONFIG_OSS
612
LIBS += $(CONFIG_OSS_LIB)
613
endif
614

    
615
SOUND_HW = sb16.o es1370.o
616
ifdef CONFIG_AC97
617
SOUND_HW += ac97.o
618
endif
619
ifdef CONFIG_ADLIB
620
SOUND_HW += fmopl.o adlib.o
621
fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0
622
endif
623
ifdef CONFIG_GUS
624
SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
625
endif
626
ifdef CONFIG_CS4231A
627
SOUND_HW += cs4231a.o
628
endif
629

    
630
ifdef CONFIG_VNC_TLS
631
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
632
LIBS += $(CONFIG_VNC_TLS_LIBS)
633
endif
634

    
635
ifdef CONFIG_BLUEZ
636
LIBS += $(CONFIG_BLUEZ_LIBS)
637
endif
638

    
639
# SCSI layer
640
OBJS+= lsi53c895a.o esp.o
641

    
642
# USB layer
643
OBJS+= usb-ohci.o
644

    
645
# EEPROM emulation
646
OBJS += eeprom93xx.o
647

    
648
# PCI network cards
649
OBJS += eepro100.o
650
OBJS += ne2000.o
651
OBJS += pcnet.o
652
OBJS += rtl8139.o
653
OBJS += e1000.o
654

    
655
ifeq ($(TARGET_BASE_ARCH), i386)
656
# Hardware support
657
OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
658
OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
659
OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
660
OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o
661
# virtio support
662
OBJS+= virtio.o virtio-blk.o virtio-balloon.o
663
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
664
endif
665
ifeq ($(TARGET_BASE_ARCH), ppc)
666
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
667
# shared objects
668
OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
669
# PREP target
670
OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
671
OBJS+= prep_pci.o ppc_prep.o
672
# Mac shared devices
673
OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
674
# OldWorld PowerMac
675
OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
676
# NewWorld PowerMac
677
OBJS+= unin_pci.o ppc_chrp.o
678
# PowerPC 4xx boards
679
OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
680
# virtio support
681
OBJS+= virtio.o virtio-blk.o virtio-balloon.o
682
endif
683
ifeq ($(TARGET_BASE_ARCH), mips)
684
OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
685
OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
686
OBJS+= g364fb.o jazz_led.o
687
OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
688
OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
689
OBJS+= mipsnet.o
690
OBJS+= pflash_cfi01.o
691
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
692
endif
693
ifeq ($(TARGET_BASE_ARCH), cris)
694
OBJS+= etraxfs.o
695
OBJS+= etraxfs_dma.o
696
OBJS+= etraxfs_pic.o
697
OBJS+= etraxfs_eth.o
698
OBJS+= etraxfs_timer.o
699
OBJS+= etraxfs_ser.o
700

    
701
OBJS+= ptimer.o
702
OBJS+= pflash_cfi02.o
703
endif
704
ifeq ($(TARGET_BASE_ARCH), sparc)
705
ifeq ($(TARGET_ARCH), sparc64)
706
OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
707
OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
708
OBJS+= cirrus_vga.o parallel.o ptimer.o
709
else
710
OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
711
OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
712
OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
713
endif
714
endif
715
ifeq ($(TARGET_BASE_ARCH), arm)
716
OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
717
OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
718
OBJS+= versatile_pci.o ptimer.o
719
OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
720
OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
721
OBJS+= pl061.o
722
OBJS+= arm-semi.o
723
OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
724
OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
725
OBJS+= pflash_cfi01.o gumstix.o
726
OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
727
OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
728
OBJS+= omap2.o omap_dss.o soc_dma.o
729
OBJS+= palm.o tsc210x.o
730
OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
731
OBJS+= tsc2005.o bt-hci-csr.o
732
OBJS+= mst_fpga.o mainstone.o
733
OBJS+= musicpal.o pflash_cfi02.o
734
CPPFLAGS += -DHAS_AUDIO
735
endif
736
ifeq ($(TARGET_BASE_ARCH), sh4)
737
OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
738
OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o sm501.o serial.o
739
endif
740
ifeq ($(TARGET_BASE_ARCH), m68k)
741
OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
742
OBJS+= m68k-semi.o dummy_m68k.o
743
endif
744
ifdef CONFIG_GDBSTUB
745
OBJS+=gdbstub.o gdbstub-xml.o
746
endif
747
ifdef CONFIG_COCOA
748
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
749
ifdef CONFIG_COREAUDIO
750
COCOA_LIBS+=-framework CoreAudio
751
endif
752
endif
753
ifdef CONFIG_SLIRP
754
CPPFLAGS+=-I$(SRC_PATH)/slirp
755
endif
756

    
757
LIBS+=$(AIOLIBS)
758
# specific flags are needed for non soft mmu emulator
759
ifdef CONFIG_STATIC
760
LDFLAGS+=-static
761
endif
762
ifndef CONFIG_DARWIN
763
ifndef CONFIG_WIN32
764
ifndef CONFIG_SOLARIS
765
ifndef CONFIG_AIX
766
LIBS+=-lutil
767
endif
768
endif
769
endif
770
endif
771
ifdef TARGET_GPROF
772
vl.o: CFLAGS+=-p
773
LDFLAGS+=-p
774
endif
775

    
776
ifeq ($(ARCH),ia64)
777
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
778
endif
779

    
780
ifdef CONFIG_WIN32
781
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
782
endif
783

    
784
# profiling code
785
ifdef TARGET_GPROF
786
LDFLAGS+=-p
787
main.o: CFLAGS+=-p
788
endif
789

    
790
$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
791
	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
792

    
793
endif # !CONFIG_USER_ONLY
794

    
795
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
796
	rm -f $@
797
ifeq ($(TARGET_XML_FILES),)
798
	echo > $@
799
else
800
	$(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
801
endif
802

    
803
%.o: %.c
804
	$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
805

    
806
%.o: %.S
807
	$(CC) $(CPPFLAGS) -c -o $@ $<
808

    
809
clean:
810
	rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
811
	rm -f *.d */*.d tcg/*.o
812

    
813
install: all
814
ifneq ($(PROGS),)
815
	$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
816
endif
817

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