Makefile.target 16.0 KB
Newer Older
B
bellard 已提交
1 2
include config.mak

B
bellard 已提交
3 4 5 6
TARGET_BASE_ARCH:=$(TARGET_ARCH)
ifeq ($(TARGET_ARCH), x86_64)
TARGET_BASE_ARCH:=i386
endif
7 8 9
ifeq ($(TARGET_ARCH), mipsn32)
TARGET_BASE_ARCH:=mips
endif
T
ths 已提交
10 11 12
ifeq ($(TARGET_ARCH), mips64)
TARGET_BASE_ARCH:=mips
endif
B
bellard 已提交
13 14 15
ifeq ($(TARGET_ARCH), ppc64)
TARGET_BASE_ARCH:=ppc
endif
16 17 18
ifeq ($(TARGET_ARCH), ppc64h)
TARGET_BASE_ARCH:=ppc
endif
19 20 21
ifeq ($(TARGET_ARCH), ppcemb)
TARGET_BASE_ARCH:=ppc
endif
B
bellard 已提交
22 23 24
ifeq ($(TARGET_ARCH), sparc64)
TARGET_BASE_ARCH:=sparc
endif
B
bellard 已提交
25
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
B
bellard 已提交
26
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
P
pbrook 已提交
27
CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MP -DNEED_CPU_H
28 29 30 31 32
ifdef CONFIG_DARWIN_USER
VPATH+=:$(SRC_PATH)/darwin-user
CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
endif
ifdef CONFIG_LINUX_USER
B
bellard 已提交
33
VPATH+=:$(SRC_PATH)/linux-user
34 35 36 37
ifndef TARGET_ABI_DIR
  TARGET_ABI_DIR=$(TARGET_ARCH)
endif
CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
B
bellard 已提交
38
endif
39 40
BASE_CFLAGS=
BASE_LDFLAGS=
B
bellard 已提交
41
#CFLAGS+=-Werror
B
bellard 已提交
42 43
LIBS=
HELPER_CFLAGS=$(CFLAGS)
B
bellard 已提交
44
DYNGEN=../dyngen$(EXESUF)
45
# user emulator name
B
bellard 已提交
46
ifndef TARGET_ARCH2
B
bellard 已提交
47
TARGET_ARCH2=$(TARGET_ARCH)
B
bellard 已提交
48
endif
49 50
ifeq ($(TARGET_ARCH),arm)
  ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
B
bellard 已提交
51
    TARGET_ARCH2=armeb
52
  endif
B
bellard 已提交
53
endif
P
pbrook 已提交
54 55 56 57 58
ifeq ($(TARGET_ARCH),sh4)
  ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
    TARGET_ARCH2=sh4eb
  endif
endif
B
bellard 已提交
59
ifeq ($(TARGET_ARCH),mips)
B
bellard 已提交
60 61
  ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
    TARGET_ARCH2=mipsel
B
bellard 已提交
62 63
  endif
endif
64 65 66 67 68
ifeq ($(TARGET_ARCH),mipsn32)
  ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
    TARGET_ARCH2=mipsn32el
  endif
endif
T
ths 已提交
69 70 71 72 73
ifeq ($(TARGET_ARCH),mips64)
  ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
    TARGET_ARCH2=mips64el
  endif
endif
B
bellard 已提交
74
QEMU_USER=qemu-$(TARGET_ARCH2)
75 76
# system emulator name
ifdef CONFIG_SOFTMMU
77
ifeq ($(TARGET_ARCH), i386)
B
bellard 已提交
78
QEMU_SYSTEM=qemu$(EXESUF)
79
else
B
bellard 已提交
80
QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF)
81 82
endif
else
83
QEMU_SYSTEM=qemu-fast
84 85
endif

B
bellard 已提交
86
ifdef CONFIG_USER_ONLY
87
PROGS=$(QEMU_USER)
B
bellard 已提交
88
else
89
PROGS+=$(QEMU_SYSTEM)
B
bellard 已提交
90 91 92
ifndef CONFIG_SOFTMMU
CONFIG_STATIC=y
endif
B
update  
bellard 已提交
93
endif # !CONFIG_USER_ONLY
B
bellard 已提交
94 95

ifdef CONFIG_STATIC
96
BASE_LDFLAGS+=-static
B
bellard 已提交
97 98
endif

99
# We require -O2 to avoid the stack setup prologue in EXIT_TB
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing

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

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

OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
116
OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
117

B
bellard 已提交
118
ifeq ($(ARCH),i386)
119 120
HELPER_CFLAGS+=-fomit-frame-pointer
OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
B
bellard 已提交
121
ifdef TARGET_GPROF
B
bellard 已提交
122 123 124 125 126 127
USE_I386_LD=y
endif
ifdef CONFIG_STATIC
USE_I386_LD=y
endif
ifdef USE_I386_LD
128
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
129
else
130
ifdef CONFIG_LINUX_USER
B
bellard 已提交
131 132 133
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
# that the kernel ELF loader considers as an executable. I think this
# is the simplest way to make it self virtualizable!
134
BASE_LDFLAGS+=-Wl,-shared
B
bellard 已提交
135 136
endif
endif
137
endif
B
bellard 已提交
138

B
bellard 已提交
139
ifeq ($(ARCH),x86_64)
140 141 142
  ifneq ($(CONFIG_SOLARIS),yes)
    BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
  endif
143 144
endif

B
bellard 已提交
145
ifeq ($(ARCH),ppc)
146 147
CPPFLAGS+= -D__powerpc__
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
148 149 150
endif

ifeq ($(ARCH),s390)
151
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
152 153 154
endif

ifeq ($(ARCH),sparc)
155 156 157 158 159 160
  BASE_CFLAGS+=-ffixed-g2 -ffixed-g3
  OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
  ifeq ($(CONFIG_SOLARIS),yes)
    OP_CFLAGS+=-fno-omit-frame-pointer
  else
    BASE_CFLAGS+=-ffixed-g1 -ffixed-g6
161
    HELPER_CFLAGS=$(CFLAGS) -ffixed-i0
162 163 164
    # -static is used to avoid g1/g3 usage by the dynamic linker
    BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
  endif
B
bellard 已提交
165
endif
B
bellard 已提交
166 167

ifeq ($(ARCH),sparc64)
168 169 170 171 172 173
  BASE_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
  OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
  ifneq ($(CONFIG_SOLARIS),yes)
    BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
    OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
  endif
B
bellard 已提交
174 175 176
endif

ifeq ($(ARCH),alpha)
177 178
# -msmall-data is not used for OP_CFLAGS because we want two-instruction
# relocations for the constant constructions
B
bellard 已提交
179
# Ensure there's only a single GP
180 181
BASE_CFLAGS+=-msmall-data
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
182 183 184
endif

ifeq ($(ARCH),ia64)
185 186 187
BASE_CFLAGS+=-mno-sdata
OP_CFLAGS+=-mno-sdata
BASE_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
188 189 190
endif

ifeq ($(ARCH),arm)
191 192
OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
193 194
endif

B
bellard 已提交
195
ifeq ($(ARCH),m68k)
196 197 198 199 200
OP_CFLAGS+=-fomit-frame-pointer
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
endif

ifeq ($(ARCH),mips)
T
ths 已提交
201
OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
T
ths 已提交
202 203 204 205 206 207 208 209
ifeq ($(WORDS_BIGENDIAN),yes)
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
else
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
endif
endif

ifeq ($(ARCH),mips64)
T
ths 已提交
210
OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
T
ths 已提交
211
ifeq ($(WORDS_BIGENDIAN),yes)
212
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
T
ths 已提交
213 214 215
else
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
endif
B
bellard 已提交
216 217
endif

218
ifeq ($(CONFIG_DARWIN),yes)
B
bellard 已提交
219
LIBS+=-lmx
220 221
endif

222 223 224 225 226
ifdef CONFIG_DARWIN_USER
# Leave some space for the regular program loading zone
BASE_LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
endif

227 228 229 230
BASE_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
BASE_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
OP_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
231

B
bellard 已提交
232 233
#########################################################

234
CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
B
bellard 已提交
235
LIBS+=-lm
B
bellard 已提交
236 237 238
ifndef CONFIG_USER_ONLY
LIBS+=-lz
endif
B
bellard 已提交
239
ifdef CONFIG_WIN32
240
LIBS+=-lwinmm -lws2_32 -liphlpapi
B
bellard 已提交
241
endif
B
bellard 已提交
242 243
ifdef CONFIG_SOLARIS
LIBS+=-lsocket -lnsl -lresolv
T
ths 已提交
244 245 246 247 248 249
ifdef NEEDS_LIBSUNMATH
LIBS+=-lsunmath
LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
BASE_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
endif
B
bellard 已提交
250
endif
B
bellard 已提交
251 252 253

# profiling code
ifdef TARGET_GPROF
254 255
BASE_LDFLAGS+=-p
main.o: BASE_CFLAGS+=-p
B
bellard 已提交
256 257
endif

258
ifdef CONFIG_LINUX_USER
259
OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
260
      elfload.o linuxload.o uaccess.o
261
LIBS+= $(AIOLIBS)
P
pbrook 已提交
262 263 264
ifdef TARGET_HAS_BFLT
OBJS+= flatload.o
endif
265 266 267 268
ifdef TARGET_HAS_ELFLOAD32
OBJS+= elfload32.o
elfload32.o: elfload.c
endif
P
pbrook 已提交
269

B
bellard 已提交
270 271 272
ifeq ($(TARGET_ARCH), i386)
OBJS+= vm86.o
endif
B
bellard 已提交
273
ifeq ($(TARGET_ARCH), arm)
B
bellard 已提交
274
OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
B
bellard 已提交
275
nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
276
 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
B
bellard 已提交
277
endif
P
pbrook 已提交
278 279 280
ifeq ($(TARGET_ARCH), m68k)
OBJS+= m68k-sim.o m68k-semi.o
endif
281 282 283 284 285 286
endif #CONFIG_LINUX_USER

ifdef CONFIG_DARWIN_USER
OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
endif

B
bellard 已提交
287 288 289 290
SRCS:= $(OBJS:.o=.c)
OBJS+= libqemu.a

# cpu emulator library
B
bellard 已提交
291
LIBOBJS=exec.o kqemu.o translate-op.o translate-all.o cpu-exec.o\
292
        translate.o op.o host-utils.o
B
bellard 已提交
293 294 295 296 297
ifdef CONFIG_SOFTFLOAT
LIBOBJS+=fpu/softfloat.o
else
LIBOBJS+=fpu/softfloat-native.o
endif
298
CPPFLAGS+=-I$(SRC_PATH)/fpu
B
bellard 已提交
299 300

ifeq ($(TARGET_ARCH), i386)
301
LIBOBJS+=helper.o helper2.o
B
bellard 已提交
302 303
endif

B
bellard 已提交
304 305 306 307
ifeq ($(TARGET_ARCH), x86_64)
LIBOBJS+=helper.o helper2.o
endif

B
bellard 已提交
308
ifeq ($(TARGET_BASE_ARCH), ppc)
B
update  
bellard 已提交
309
LIBOBJS+= op_helper.o helper.o
310 311
endif

T
ths 已提交
312
ifeq ($(TARGET_BASE_ARCH), mips)
B
bellard 已提交
313 314 315
LIBOBJS+= op_helper.o helper.o
endif

B
bellard 已提交
316
ifeq ($(TARGET_BASE_ARCH), sparc)
317 318 319
LIBOBJS+= op_helper.o helper.o
endif

B
bellard 已提交
320
ifeq ($(TARGET_BASE_ARCH), arm)
B
bellard 已提交
321
LIBOBJS+= op_helper.o helper.o
B
bellard 已提交
322 323
endif

B
bellard 已提交
324 325 326 327
ifeq ($(TARGET_BASE_ARCH), sh4)
LIBOBJS+= op_helper.o helper.o
endif

P
pbrook 已提交
328
ifeq ($(TARGET_BASE_ARCH), m68k)
P
pbrook 已提交
329
LIBOBJS+= op_helper.o helper.o
P
pbrook 已提交
330 331
endif

332 333 334 335
ifeq ($(TARGET_BASE_ARCH), alpha)
LIBOBJS+= op_helper.o helper.o alpha_palcode.o
endif

336 337 338 339 340 341 342 343 344
ifeq ($(TARGET_BASE_ARCH), cris)
LIBOBJS+= op_helper.o helper.o
LIBOBJS+= cris-dis.o

ifndef CONFIG_USER_ONLY
LIBOBJS+= mmu.o
endif
endif

B
bellard 已提交
345
# NOTE: the disassembler code is only needed for debugging
346
LIBOBJS+=disas.o
B
bellard 已提交
347
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
348 349
USE_I386_DIS=y
endif
B
bellard 已提交
350
ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
351 352 353
USE_I386_DIS=y
endif
ifdef USE_I386_DIS
B
bellard 已提交
354 355 356 357 358
LIBOBJS+=i386-dis.o
endif
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
LIBOBJS+=alpha-dis.o
endif
B
bellard 已提交
359
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
B
bellard 已提交
360 361
LIBOBJS+=ppc-dis.o
endif
T
ths 已提交
362
ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
B
bellard 已提交
363 364
LIBOBJS+=mips-dis.o
endif
B
bellard 已提交
365
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
B
bellard 已提交
366 367 368 369 370
LIBOBJS+=sparc-dis.o
endif
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
LIBOBJS+=arm-dis.o
endif
B
bellard 已提交
371 372 373
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
LIBOBJS+=m68k-dis.o
endif
B
bellard 已提交
374 375 376
ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
LIBOBJS+=sh4-dis.o
endif
377 378 379
ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
LIBOBJS+=s390-dis.o
endif
B
bellard 已提交
380

B
bellard 已提交
381 382 383
ifdef CONFIG_GDBSTUB
OBJS+=gdbstub.o
endif
B
bellard 已提交
384

385
all: $(PROGS)
B
bellard 已提交
386

387
$(QEMU_USER): $(OBJS)
388
	$(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^  $(LIBS)
B
bellard 已提交
389 390 391 392 393 394 395
ifeq ($(ARCH),alpha)
# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
# the address space (31 bit so sign extending doesn't matter)
	echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
endif

# must use static linking to avoid leaving stuff in virtual address space
B
bellard 已提交
396 397
VL_OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o
# XXX: suppress QEMU_TOOL tests
398 399 400 401 402
ifdef CONFIG_WIN32
VL_OBJS+=block-raw-win32.o
else
VL_OBJS+=block-raw-posix.o
endif
403

404 405 406 407 408
ifdef CONFIG_ALSA
LIBS += -lasound
endif
ifdef CONFIG_DSOUND
LIBS += -lole32 -ldxguid
B
bellard 已提交
409
endif
B
bellard 已提交
410 411
ifdef CONFIG_FMOD
LIBS += $(CONFIG_FMOD_LIB)
B
bellard 已提交
412
endif
B
bellard 已提交
413 414

SOUND_HW = sb16.o es1370.o
415 416 417
ifdef CONFIG_ADLIB
SOUND_HW += fmopl.o adlib.o
endif
B
bellard 已提交
418

419 420 421 422 423
ifdef CONFIG_VNC_TLS
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
LIBS += $(CONFIG_VNC_TLS_LIBS)
endif

P
pbrook 已提交
424
# SCSI layer
P
pbrook 已提交
425
VL_OBJS+= lsi53c895a.o
P
pbrook 已提交
426

B
bellard 已提交
427
# USB layer
P
pbrook 已提交
428
VL_OBJS+= usb-ohci.o
B
bellard 已提交
429

T
ths 已提交
430 431 432
# EEPROM emulation
VL_OBJS += eeprom93xx.o

433
# PCI network cards
T
ths 已提交
434 435 436 437
VL_OBJS += eepro100.o
VL_OBJS += ne2000.o
VL_OBJS += pcnet.o
VL_OBJS += rtl8139.o
438

B
bellard 已提交
439
ifeq ($(TARGET_BASE_ARCH), i386)
440
# Hardware support
B
bellard 已提交
441
VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
B
bellard 已提交
442
VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
443
VL_OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
P
pbrook 已提交
444
VL_OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o
445
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
B
bellard 已提交
446
endif
B
bellard 已提交
447
ifeq ($(TARGET_BASE_ARCH), ppc)
448
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
J
j_mayer 已提交
449
# shared objects
B
bellard 已提交
450
VL_OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
J
j_mayer 已提交
451 452 453 454 455 456 457 458 459 460 461
# PREP target
VL_OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
VL_OBJS+= prep_pci.o ppc_prep.o
# Mac shared devices
VL_OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
# OldWorld PowerMac
VL_OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
# NewWorld PowerMac
VL_OBJS+= unin_pci.o ppc_chrp.o
# PowerPC 4xx boards
VL_OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
462
endif
T
ths 已提交
463
ifeq ($(TARGET_BASE_ARCH), mips)
T
ths 已提交
464
VL_OBJS+= mips_r4k.o mips_malta.o mips_pica61.o mips_mipssim.o
T
ths 已提交
465
VL_OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o
466
VL_OBJS+= jazz_led.o
T
ths 已提交
467
VL_OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
P
pbrook 已提交
468
VL_OBJS+= piix_pci.o parallel.o cirrus_vga.o $(SOUND_HW)
T
ths 已提交
469
VL_OBJS+= mipsnet.o
T
ths 已提交
470
VL_OBJS+= pflash_cfi01.o
T
ths 已提交
471
CPPFLAGS += -DHAS_AUDIO
B
bellard 已提交
472
endif
473 474 475 476 477 478
ifeq ($(TARGET_BASE_ARCH), cris)
VL_OBJS+= etraxfs.o
VL_OBJS+= ptimer.o
VL_OBJS+= etraxfs_timer.o
VL_OBJS+= etraxfs_ser.o
endif
B
bellard 已提交
479
ifeq ($(TARGET_BASE_ARCH), sparc)
B
bellard 已提交
480
ifeq ($(TARGET_ARCH), sparc64)
P
pbrook 已提交
481
VL_OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
B
bellard 已提交
482
VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
483
VL_OBJS+= cirrus_vga.o parallel.o ptimer.o
B
bellard 已提交
484
else
485 486
VL_OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
VL_OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o sparc32_dma.o
B
blueswir1 已提交
487
VL_OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
B
bellard 已提交
488
endif
489
endif
B
bellard 已提交
490
ifeq ($(TARGET_BASE_ARCH), arm)
491
VL_OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
P
pbrook 已提交
492
VL_OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
P
pbrook 已提交
493
VL_OBJS+= versatile_pci.o ptimer.o
P
pbrook 已提交
494
VL_OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
P
pbrook 已提交
495
VL_OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
P
pbrook 已提交
496
VL_OBJS+= pl061.o
497
VL_OBJS+= arm-semi.o
498
VL_OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
499
VL_OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
500
VL_OBJS+= pflash_cfi01.o gumstix.o
T
ths 已提交
501
VL_OBJS+= spitz.o ide.o serial.o nand.o ecc.o
B
balrog 已提交
502 503
VL_OBJS+= omap.o omap_lcdc.o omap1_clk.o omap_mmc.o omap_i2c.o
VL_OBJS+= palm.o tsc210x.o
T
ths 已提交
504
VL_OBJS+= mst_fpga.o mainstone.o
505
CPPFLAGS += -DHAS_AUDIO
B
bellard 已提交
506
endif
B
bellard 已提交
507
ifeq ($(TARGET_BASE_ARCH), sh4)
T
ths 已提交
508
VL_OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
509
VL_OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
B
bellard 已提交
510
endif
P
pbrook 已提交
511
ifeq ($(TARGET_BASE_ARCH), m68k)
P
pbrook 已提交
512
VL_OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
P
pbrook 已提交
513
VL_OBJS+= m68k-semi.o dummy_m68k.o
P
pbrook 已提交
514
endif
515
ifdef CONFIG_GDBSTUB
516
VL_OBJS+=gdbstub.o
B
update  
bellard 已提交
517
endif
518
ifdef CONFIG_COCOA
519 520 521 522
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
ifdef CONFIG_COREAUDIO
COCOA_LIBS+=-framework CoreAudio
endif
523
endif
B
bellard 已提交
524
ifdef CONFIG_SLIRP
525
CPPFLAGS+=-I$(SRC_PATH)/slirp
B
bellard 已提交
526 527
endif

528
VL_LDFLAGS=$(VL_OS_LDFLAGS)
529
VL_LIBS=$(AIOLIBS)
530 531 532 533
# specific flags are needed for non soft mmu emulator
ifdef CONFIG_STATIC
VL_LDFLAGS+=-static
endif
B
bellard 已提交
534
ifndef CONFIG_SOFTMMU
535
VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld
B
bellard 已提交
536
endif
537
ifndef CONFIG_DARWIN
B
bellard 已提交
538
ifndef CONFIG_WIN32
B
bellard 已提交
539
ifndef CONFIG_SOLARIS
540
VL_LIBS+=-lutil
B
bellard 已提交
541
endif
542
endif
B
bellard 已提交
543
endif
B
bellard 已提交
544
ifdef TARGET_GPROF
545
vl.o: BASE_CFLAGS+=-p
B
bellard 已提交
546 547
VL_LDFLAGS+=-p
endif
548

B
bellard 已提交
549 550 551 552
ifeq ($(ARCH),ia64)
VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
endif

B
bellard 已提交
553
ifeq ($(ARCH),sparc64)
554 555 556 557
  VL_LDFLAGS+=-m64
  ifneq ($(CONFIG_SOLARIS),yes)
    VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
  endif
558 559 560 561 562 563 564
endif

ifeq ($(ARCH),x86_64)
  VL_LDFLAGS+=-m64
  ifneq ($(CONFIG_SOLARIS),yes)
    VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
  endif
B
bellard 已提交
565 566
endif

567 568 569 570
ifdef CONFIG_WIN32
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
endif

B
bellard 已提交
571
$(QEMU_SYSTEM): $(VL_OBJS) ../libqemu_common.a libqemu.a
572
	$(CC) $(VL_LDFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
573

B
bellard 已提交
574
depend: $(SRCS)
575
	$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
B
bellard 已提交
576

577
vldepend: $(VL_OBJS:.o=.c)
578
	$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
579

580
# libqemu
B
bellard 已提交
581 582 583 584 585

libqemu.a: $(LIBOBJS)
	rm -f $@
	$(AR) rcs $@ $(LIBOBJS)

586
translate.o: translate.c gen-op.h opc.h cpu.h
B
bellard 已提交
587

B
bellard 已提交
588 589 590
translate-all.o: translate-all.c opc.h cpu.h

translate-op.o: translate-all.c op.h opc.h cpu.h
B
bellard 已提交
591

592
op.h: op.o $(DYNGEN)
B
bellard 已提交
593 594
	$(DYNGEN) -o $@ $<

595
opc.h: op.o $(DYNGEN)
B
bellard 已提交
596 597
	$(DYNGEN) -c -o $@ $<

598
gen-op.h: op.o $(DYNGEN)
B
bellard 已提交
599 600
	$(DYNGEN) -g -o $@ $<

601
op.o: op.c
602
	$(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
B
bellard 已提交
603

B
bellard 已提交
604 605 606 607
# HELPER_CFLAGS is used for all the code compiled with static register
# variables
ifeq ($(TARGET_BASE_ARCH), i386)
# XXX: rename helper.c to op_helper.c
608
helper.o: helper.c
609
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
610 611
else
op_helper.o: op_helper.c
612
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
613 614 615
endif

cpu-exec.o: cpu-exec.c
616
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
617

618 619 620
# Note: this is a workaround. The real fix is to avoid compiling
# cpu_signal_handler() in cpu-exec.c.
signal.o: signal.c
621
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
622

B
bellard 已提交
623
%.o: %.c
624
	$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
625

B
bellard 已提交
626
%.o: %.S
627
	$(CC) $(CPPFLAGS) -c -o $@ $<
B
bellard 已提交
628

B
bellard 已提交
629
clean:
B
bellard 已提交
630
	rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o fpu/*.o
631
	rm -f *.d */*.d
632

633
install: all
B
bellard 已提交
634
ifneq ($(PROGS),)
635
	$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
B
bellard 已提交
636
endif
B
bellard 已提交
637 638 639 640

ifneq ($(wildcard .depend),)
include .depend
endif
641

B
bellard 已提交
642
ifeq (1, 0)
643
audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \
B
bellard 已提交
644
fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \
645 646
CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare
endif
647 648 649

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