Makefile.target 17.3 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
T
ths 已提交
7 8 9
ifeq ($(TARGET_ARCH), mips64)
TARGET_BASE_ARCH:=mips
endif
B
bellard 已提交
10 11 12
ifeq ($(TARGET_ARCH), ppc64)
TARGET_BASE_ARCH:=ppc
endif
13 14 15
ifeq ($(TARGET_ARCH), ppcemb)
TARGET_BASE_ARCH:=ppc
endif
B
bellard 已提交
16 17 18
ifeq ($(TARGET_ARCH), sparc64)
TARGET_BASE_ARCH:=sparc
endif
B
bellard 已提交
19
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
B
bellard 已提交
20
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw:$(SRC_PATH)/audio
21
CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH)
22 23 24 25 26
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 已提交
27
VPATH+=:$(SRC_PATH)/linux-user
28
CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH)
B
bellard 已提交
29
endif
30 31
BASE_CFLAGS=
BASE_LDFLAGS=
B
bellard 已提交
32
#CFLAGS+=-Werror
B
bellard 已提交
33 34
LIBS=
HELPER_CFLAGS=$(CFLAGS)
B
bellard 已提交
35
DYNGEN=../dyngen$(EXESUF)
36
# user emulator name
B
bellard 已提交
37
TARGET_ARCH2=$(TARGET_ARCH)
38 39
ifeq ($(TARGET_ARCH),arm)
  ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
B
bellard 已提交
40
    TARGET_ARCH2=armeb
41
  endif
B
bellard 已提交
42
endif
P
pbrook 已提交
43 44 45 46 47
ifeq ($(TARGET_ARCH),sh4)
  ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
    TARGET_ARCH2=sh4eb
  endif
endif
B
bellard 已提交
48
ifeq ($(TARGET_ARCH),mips)
B
bellard 已提交
49 50
  ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
    TARGET_ARCH2=mipsel
B
bellard 已提交
51 52
  endif
endif
T
ths 已提交
53 54 55 56 57
ifeq ($(TARGET_ARCH),mips64)
  ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
    TARGET_ARCH2=mips64el
  endif
endif
B
bellard 已提交
58
QEMU_USER=qemu-$(TARGET_ARCH2)
59 60
# system emulator name
ifdef CONFIG_SOFTMMU
61
ifeq ($(TARGET_ARCH), i386)
B
bellard 已提交
62
QEMU_SYSTEM=qemu$(EXESUF)
63
else
B
bellard 已提交
64
QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF)
65 66
endif
else
67
QEMU_SYSTEM=qemu-fast
68 69
endif

B
bellard 已提交
70
ifdef CONFIG_USER_ONLY
71
PROGS=$(QEMU_USER)
B
bellard 已提交
72
else
73
PROGS+=$(QEMU_SYSTEM)
B
bellard 已提交
74 75 76
ifndef CONFIG_SOFTMMU
CONFIG_STATIC=y
endif
B
update  
bellard 已提交
77
endif # !CONFIG_USER_ONLY
B
bellard 已提交
78 79

ifdef CONFIG_STATIC
80
BASE_LDFLAGS+=-static
B
bellard 已提交
81 82
endif

83
# We require -O2 to avoid the stack setup prologue in EXIT_TB
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
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, ""))
100
OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
101

B
bellard 已提交
102
ifeq ($(ARCH),i386)
103 104
HELPER_CFLAGS+=-fomit-frame-pointer
OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
B
bellard 已提交
105
ifdef TARGET_GPROF
B
bellard 已提交
106 107 108 109 110 111
USE_I386_LD=y
endif
ifdef CONFIG_STATIC
USE_I386_LD=y
endif
ifdef USE_I386_LD
112
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
113
else
114
ifdef CONFIG_LINUX_USER
B
bellard 已提交
115 116 117
# 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!
118
BASE_LDFLAGS+=-Wl,-shared
B
bellard 已提交
119 120
endif
endif
121
endif
B
bellard 已提交
122

B
bellard 已提交
123
ifeq ($(ARCH),x86_64)
124
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
125 126
endif

B
bellard 已提交
127
ifeq ($(ARCH),ppc)
128
CPPFLAGS+= -D__powerpc__
129
ifdef CONFIG_LINUX_USER
130
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
131
endif
132
endif
B
bellard 已提交
133 134

ifeq ($(ARCH),s390)
135
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
136 137 138
endif

ifeq ($(ARCH),sparc)
139 140 141 142 143 144 145 146 147 148
  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
    HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
    # -static is used to avoid g1/g3 usage by the dynamic linker
    BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
  endif
B
bellard 已提交
149
endif
B
bellard 已提交
150 151

ifeq ($(ARCH),sparc64)
152 153 154 155 156 157
  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 已提交
158 159 160
endif

ifeq ($(ARCH),alpha)
161 162
# -msmall-data is not used for OP_CFLAGS because we want two-instruction
# relocations for the constant constructions
B
bellard 已提交
163
# Ensure there's only a single GP
164 165
BASE_CFLAGS+=-msmall-data
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
166 167 168
endif

ifeq ($(ARCH),ia64)
169 170 171
BASE_CFLAGS+=-mno-sdata
OP_CFLAGS+=-mno-sdata
BASE_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
172 173 174
endif

ifeq ($(ARCH),arm)
175 176
OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
B
bellard 已提交
177 178
endif

B
bellard 已提交
179
ifeq ($(ARCH),m68k)
180 181 182 183 184
OP_CFLAGS+=-fomit-frame-pointer
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
endif

ifeq ($(ARCH),mips)
T
ths 已提交
185
OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
T
ths 已提交
186 187 188 189 190 191 192 193
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 已提交
194
OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
T
ths 已提交
195
ifeq ($(WORDS_BIGENDIAN),yes)
196
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
T
ths 已提交
197 198 199
else
BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
endif
B
bellard 已提交
200 201
endif

202
ifeq ($(CONFIG_DARWIN),yes)
B
bellard 已提交
203
LIBS+=-lmx
204 205
endif

206 207 208 209 210
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

211 212 213 214
BASE_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
BASE_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
OP_LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
215

B
bellard 已提交
216 217
#########################################################

218
CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
B
bellard 已提交
219
LIBS+=-lm
B
bellard 已提交
220 221 222
ifndef CONFIG_USER_ONLY
LIBS+=-lz
endif
B
bellard 已提交
223
ifdef CONFIG_WIN32
224
LIBS+=-lwinmm -lws2_32 -liphlpapi
B
bellard 已提交
225
endif
B
bellard 已提交
226 227
ifdef CONFIG_SOLARIS
LIBS+=-lsocket -lnsl -lresolv
T
ths 已提交
228 229 230 231 232 233
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 已提交
234
endif
B
bellard 已提交
235 236 237

# profiling code
ifdef TARGET_GPROF
238 239
BASE_LDFLAGS+=-p
main.o: BASE_CFLAGS+=-p
B
bellard 已提交
240 241
endif

242
ifdef CONFIG_LINUX_USER
P
pbrook 已提交
243 244
OBJS= main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o \
      elfload.o linuxload.o
245
LIBS+= $(AIOLIBS)
P
pbrook 已提交
246 247 248 249
ifdef TARGET_HAS_BFLT
OBJS+= flatload.o
endif

B
bellard 已提交
250 251 252
ifeq ($(TARGET_ARCH), i386)
OBJS+= vm86.o
endif
B
bellard 已提交
253
ifeq ($(TARGET_ARCH), arm)
B
bellard 已提交
254
OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
B
bellard 已提交
255
nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
256
 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
B
bellard 已提交
257
endif
P
pbrook 已提交
258 259 260
ifeq ($(TARGET_ARCH), m68k)
OBJS+= m68k-sim.o m68k-semi.o
endif
261 262 263 264 265 266
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 已提交
267 268 269 270
SRCS:= $(OBJS:.o=.c)
OBJS+= libqemu.a

# cpu emulator library
B
bellard 已提交
271
LIBOBJS=exec.o kqemu.o translate-op.o translate-all.o cpu-exec.o\
272
        translate.o op.o
B
bellard 已提交
273 274 275 276 277
ifdef CONFIG_SOFTFLOAT
LIBOBJS+=fpu/softfloat.o
else
LIBOBJS+=fpu/softfloat-native.o
endif
278
CPPFLAGS+=-I$(SRC_PATH)/fpu
B
bellard 已提交
279 280

ifeq ($(TARGET_ARCH), i386)
281
LIBOBJS+=helper.o helper2.o
B
bellard 已提交
282 283 284
ifeq ($(ARCH), i386)
LIBOBJS+=translate-copy.o
endif
B
bellard 已提交
285 286
endif

B
bellard 已提交
287 288 289 290
ifeq ($(TARGET_ARCH), x86_64)
LIBOBJS+=helper.o helper2.o
endif

B
bellard 已提交
291
ifeq ($(TARGET_BASE_ARCH), ppc)
B
update  
bellard 已提交
292
LIBOBJS+= op_helper.o helper.o
293 294
endif

T
ths 已提交
295
ifeq ($(TARGET_BASE_ARCH), mips)
B
bellard 已提交
296 297 298
LIBOBJS+= op_helper.o helper.o
endif

B
bellard 已提交
299
ifeq ($(TARGET_BASE_ARCH), sparc)
300 301 302
LIBOBJS+= op_helper.o helper.o
endif

B
bellard 已提交
303
ifeq ($(TARGET_BASE_ARCH), arm)
B
bellard 已提交
304
LIBOBJS+= op_helper.o helper.o
B
bellard 已提交
305 306
endif

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

P
pbrook 已提交
311
ifeq ($(TARGET_BASE_ARCH), m68k)
P
pbrook 已提交
312
LIBOBJS+= op_helper.o helper.o
P
pbrook 已提交
313 314
endif

315 316 317 318
ifeq ($(TARGET_BASE_ARCH), alpha)
LIBOBJS+= op_helper.o helper.o alpha_palcode.o
endif

B
bellard 已提交
319
# NOTE: the disassembler code is only needed for debugging
320
LIBOBJS+=disas.o
B
bellard 已提交
321
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
322 323
USE_I386_DIS=y
endif
B
bellard 已提交
324
ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
325 326 327
USE_I386_DIS=y
endif
ifdef USE_I386_DIS
B
bellard 已提交
328 329 330 331 332
LIBOBJS+=i386-dis.o
endif
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
LIBOBJS+=alpha-dis.o
endif
B
bellard 已提交
333
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
B
bellard 已提交
334 335
LIBOBJS+=ppc-dis.o
endif
T
ths 已提交
336
ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
B
bellard 已提交
337 338
LIBOBJS+=mips-dis.o
endif
B
bellard 已提交
339
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
B
bellard 已提交
340 341 342 343 344
LIBOBJS+=sparc-dis.o
endif
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
LIBOBJS+=arm-dis.o
endif
B
bellard 已提交
345 346 347
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
LIBOBJS+=m68k-dis.o
endif
B
bellard 已提交
348 349 350
ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
LIBOBJS+=sh4-dis.o
endif
351 352 353
ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
LIBOBJS+=s390-dis.o
endif
B
bellard 已提交
354

B
bellard 已提交
355 356 357
ifdef CONFIG_GDBSTUB
OBJS+=gdbstub.o
endif
B
bellard 已提交
358

359
all: $(PROGS)
B
bellard 已提交
360

361
$(QEMU_USER): $(OBJS)
362
	$(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^  $(LIBS)
B
bellard 已提交
363 364 365 366 367 368 369
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
P
pbrook 已提交
370
VL_OBJS=vl.o osdep.o readline.o monitor.o pci.o console.o loader.o isa_mmio.o
B
bellard 已提交
371
VL_OBJS+=cutils.o
372
VL_OBJS+=host-utils.o
B
bellard 已提交
373
VL_OBJS+=block.o block-raw.o
374
VL_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o block-dmg.o block-bochs.o block-vpc.o block-vvfat.o block-qcow2.o block-parallels.o
P
pbrook 已提交
375
VL_OBJS+=irq.o
B
bellard 已提交
376 377 378
ifdef CONFIG_WIN32
VL_OBJS+=tap-win32.o
endif
379

380
SOUND_HW = sb16.o es1370.o
381
AUDIODRV = audio.o noaudio.o wavaudio.o mixeng.o
B
bellard 已提交
382 383 384 385 386 387
ifdef CONFIG_SDL
AUDIODRV += sdlaudio.o
endif
ifdef CONFIG_OSS
AUDIODRV += ossaudio.o
endif
388 389 390 391 392 393 394 395 396 397
ifdef CONFIG_COREAUDIO
AUDIODRV += coreaudio.o
endif
ifdef CONFIG_ALSA
AUDIODRV += alsaaudio.o
LIBS += -lasound
endif
ifdef CONFIG_DSOUND
AUDIODRV += dsoundaudio.o
LIBS += -lole32 -ldxguid
B
bellard 已提交
398
endif
B
bellard 已提交
399
ifdef CONFIG_FMOD
B
bellard 已提交
400
AUDIODRV += fmodaudio.o
401
audio.o fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
B
bellard 已提交
402
LIBS += $(CONFIG_FMOD_LIB)
B
bellard 已提交
403
endif
404 405 406
ifdef CONFIG_ADLIB
SOUND_HW += fmopl.o adlib.o
endif
B
bellard 已提交
407
AUDIODRV+= wavcapture.o
B
bellard 已提交
408

409 410 411 412 413
ifdef CONFIG_VNC_TLS
CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
LIBS += $(CONFIG_VNC_TLS_LIBS)
endif

P
pbrook 已提交
414 415
VL_OBJS += i2c.o smbus.o

P
pbrook 已提交
416
# SCSI layer
P
pbrook 已提交
417
VL_OBJS+= scsi-disk.o cdrom.o lsi53c895a.o
P
pbrook 已提交
418

B
bellard 已提交
419
# USB layer
P
pbrook 已提交
420
VL_OBJS+= usb.o usb-hub.o usb-linux.o usb-hid.o usb-ohci.o usb-msd.o
421
VL_OBJS+= usb-wacom.o
B
bellard 已提交
422

T
ths 已提交
423 424 425
# EEPROM emulation
VL_OBJS += eeprom93xx.o

426
# PCI network cards
T
ths 已提交
427 428 429 430
VL_OBJS += eepro100.o
VL_OBJS += ne2000.o
VL_OBJS += pcnet.o
VL_OBJS += rtl8139.o
431

B
bellard 已提交
432
ifeq ($(TARGET_BASE_ARCH), i386)
433
# Hardware support
434
VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
B
bellard 已提交
435
VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
436
VL_OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
437
VL_OBJS+= usb-uhci.o smbus_eeprom.o vmmouse.o vmport.o vmware_vga.o
438
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
B
bellard 已提交
439
endif
B
bellard 已提交
440
ifeq ($(TARGET_BASE_ARCH), ppc)
441
VL_OBJS+= ppc.o ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
442
VL_OBJS+= mc146818rtc.o serial.o i8259.o i8254.o fdc.o m48t59.o pflash_cfi02.o
443
VL_OBJS+= ppc_prep.o ppc_chrp.o cuda.o adb.o openpic.o heathrow_pic.o
J
j_mayer 已提交
444
VL_OBJS+= grackle_pci.o prep_pci.o unin_pci.o ppc405_uc.o ppc405_boards.o
445
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
446
endif
T
ths 已提交
447
ifeq ($(TARGET_BASE_ARCH), mips)
T
ths 已提交
448 449
VL_OBJS+= mips_r4k.o mips_malta.o mips_pica61.o
VL_OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o
450
VL_OBJS+= jazz_led.o
T
ths 已提交
451
VL_OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
T
ths 已提交
452
VL_OBJS+= piix_pci.o smbus_eeprom.o parallel.o mixeng.o cirrus_vga.o $(SOUND_HW) $(AUDIODRV)
T
ths 已提交
453
CPPFLAGS += -DHAS_AUDIO
B
bellard 已提交
454
endif
B
bellard 已提交
455
ifeq ($(TARGET_BASE_ARCH), sparc)
B
bellard 已提交
456
ifeq ($(TARGET_ARCH), sparc64)
P
pbrook 已提交
457
VL_OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
B
bellard 已提交
458
VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
459
VL_OBJS+= cirrus_vga.o parallel.o ptimer.o
B
bellard 已提交
460
else
461 462
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
463
VL_OBJS+= cs4231.o ptimer.o
B
bellard 已提交
464
endif
465
endif
B
bellard 已提交
466
ifeq ($(TARGET_BASE_ARCH), arm)
467
VL_OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
P
pbrook 已提交
468
VL_OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
469
VL_OBJS+= versatile_pci.o sd.o ptimer.o
P
pbrook 已提交
470
VL_OBJS+= arm_gic.o realview.o arm_sysctl.o
471
VL_OBJS+= arm-semi.o
472
VL_OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
473 474
VL_OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o max111x.o max7310.o
VL_OBJS+= spitz.o ads7846.o ide.o serial.o nand.o $(AUDIODRV) wm8750.o
B
balrog 已提交
475
VL_OBJS+= omap.o omap_lcdc.o omap1_clk.o omap_mmc.o palm.o
476
CPPFLAGS += -DHAS_AUDIO
B
bellard 已提交
477
endif
B
bellard 已提交
478 479 480
ifeq ($(TARGET_BASE_ARCH), sh4)
VL_OBJS+= shix.o sh7750.o sh7750_regnames.o tc58128.o
endif
P
pbrook 已提交
481
ifeq ($(TARGET_BASE_ARCH), m68k)
P
pbrook 已提交
482
VL_OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
P
pbrook 已提交
483
VL_OBJS+= m68k-semi.o
P
pbrook 已提交
484
endif
485
ifdef CONFIG_GDBSTUB
486
VL_OBJS+=gdbstub.o
B
update  
bellard 已提交
487
endif
B
bellard 已提交
488
ifdef CONFIG_SDL
489
VL_OBJS+=sdl.o x_keymap.o
B
bellard 已提交
490
endif
491
VL_OBJS+=vnc.o d3des.o
492 493
ifdef CONFIG_COCOA
VL_OBJS+=cocoa.o
494 495 496 497
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
ifdef CONFIG_COREAUDIO
COCOA_LIBS+=-framework CoreAudio
endif
498
endif
B
bellard 已提交
499
ifdef CONFIG_SLIRP
500
CPPFLAGS+=-I$(SRC_PATH)/slirp
B
bellard 已提交
501 502
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
B
bellard 已提交
503
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
B
bellard 已提交
504
VL_OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
B
bellard 已提交
505 506
endif

507
VL_LDFLAGS=$(VL_OS_LDFLAGS)
508
VL_LIBS=$(AIOLIBS)
509 510 511 512
# specific flags are needed for non soft mmu emulator
ifdef CONFIG_STATIC
VL_LDFLAGS+=-static
endif
B
bellard 已提交
513
ifndef CONFIG_SOFTMMU
514
VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld
B
bellard 已提交
515
endif
516
ifndef CONFIG_DARWIN
B
bellard 已提交
517
ifndef CONFIG_WIN32
B
bellard 已提交
518
ifndef CONFIG_SOLARIS
519
VL_LIBS+=-lutil
B
bellard 已提交
520
endif
521
endif
B
bellard 已提交
522
endif
B
bellard 已提交
523
ifdef TARGET_GPROF
524
vl.o: BASE_CFLAGS+=-p
B
bellard 已提交
525 526
VL_LDFLAGS+=-p
endif
527

B
bellard 已提交
528 529 530 531
ifeq ($(ARCH),ia64)
VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
endif

B
bellard 已提交
532
ifeq ($(ARCH),sparc64)
533 534 535 536
  VL_LDFLAGS+=-m64
  ifneq ($(CONFIG_SOLARIS),yes)
    VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
  endif
B
bellard 已提交
537 538
endif

539 540 541 542
ifdef CONFIG_WIN32
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
endif

543
$(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
544
	$(CC) $(VL_LDFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
545 546

cocoa.o: cocoa.m
547
	$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
548

549
sdl.o: sdl.c keymaps.c sdl_keysym.h
550
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
551

552
vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
553
	$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
554

B
bellard 已提交
555
sdlaudio.o: sdlaudio.c
556
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
557

B
bellard 已提交
558
depend: $(SRCS)
559
	$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
B
bellard 已提交
560

561
vldepend: $(VL_OBJS:.o=.c)
562
	$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
563

564
# libqemu
B
bellard 已提交
565 566 567 568 569

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

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

B
bellard 已提交
572 573 574
translate-all.o: translate-all.c opc.h cpu.h

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

576
op.h: op.o $(DYNGEN)
B
bellard 已提交
577 578
	$(DYNGEN) -o $@ $<

579
opc.h: op.o $(DYNGEN)
B
bellard 已提交
580 581
	$(DYNGEN) -c -o $@ $<

582
gen-op.h: op.o $(DYNGEN)
B
bellard 已提交
583 584
	$(DYNGEN) -g -o $@ $<

585
op.o: op.c
586
	$(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
B
bellard 已提交
587

B
bellard 已提交
588 589 590 591
# 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
592
helper.o: helper.c
593
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
594 595
else
op_helper.o: op_helper.c
596
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
597 598 599
endif

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

602 603 604
# Note: this is a workaround. The real fix is to avoid compiling
# cpu_signal_handler() in cpu-exec.c.
signal.o: signal.c
605
	$(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
606

B
blueswir1 已提交
607 608 609 610
vga.o: pixel_ops.h

tcx.o: pixel_ops.h

B
bellard 已提交
611
ifeq ($(TARGET_BASE_ARCH), i386)
B
bellard 已提交
612
op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h
613 614 615 616
endif

ifeq ($(TARGET_ARCH), arm)
op.o: op.c op_template.h
P
pbrook 已提交
617
pl110.o: pl110_template.h
618
endif
B
bellard 已提交
619

B
bellard 已提交
620
ifeq ($(TARGET_BASE_ARCH), sparc)
B
blueswir1 已提交
621 622 623 624
helper.o: cpu.h exec-all.h
op.o: op.c op_template.h op_mem.h fop_template.h fbranch_template.h exec.h cpu.h
op_helper.o: exec.h softmmu_template.h cpu.h
translate.o: cpu.h exec-all.h disas.h
625
endif
B
bellard 已提交
626

B
bellard 已提交
627
ifeq ($(TARGET_BASE_ARCH), ppc)
B
update  
bellard 已提交
628 629
op.o: op.c op_template.h op_mem.h
op_helper.o: op_helper_mem.h
630
translate.o: translate.c translate_init.c
B
update  
bellard 已提交
631 632
endif

T
ths 已提交
633 634
ifeq ($(TARGET_BASE_ARCH), mips)
helper.o: cpu.h exec-all.h
T
ths 已提交
635 636
op.o: op_template.c fop_template.c op_mem.c exec.h cpu.h
op_helper.o: op_helper_mem.c exec.h softmmu_template.h cpu.h
T
ths 已提交
637
translate.o: translate_init.c exec-all.h disas.h
B
bellard 已提交
638 639
endif

B
bellard 已提交
640 641
loader.o: loader.c elf_ops.h

B
bellard 已提交
642 643 644 645
ifeq ($(TARGET_ARCH), sh4)
op.o: op.c op_mem.c cpu.h
op_helper.o: op_helper.c exec.h cpu.h
helper.o: helper.c exec.h cpu.h
B
bellard 已提交
646 647
sh7750.o: sh7750.c sh7750_regs.h sh7750_regnames.h cpu.h
shix.o: shix.c sh7750_regs.h sh7750_regnames.h
B
bellard 已提交
648
sh7750_regnames.o: sh7750_regnames.c sh7750_regnames.h sh7750_regs.h
B
bellard 已提交
649
tc58128.o: tc58128.c
B
bellard 已提交
650 651
endif

652 653 654 655 656
ifeq ($(TARGET_BASE_ARCH), alpha)
op.o: op.c op_template.h op_mem.h
op_helper.o: op_helper_mem.h
endif

657 658
$(OBJS) $(LIBOBJS) $(VL_OBJS): config.h ../config-host.h

B
bellard 已提交
659
%.o: %.c
660
	$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
B
bellard 已提交
661

B
bellard 已提交
662
%.o: %.S
663
	$(CC) $(CPPFLAGS) -c -o $@ $<
B
bellard 已提交
664

B
bellard 已提交
665
clean:
B
bellard 已提交
666
	rm -f *.o  *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o
667

668
install: all
B
bellard 已提交
669
ifneq ($(PROGS),)
670
	$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
B
bellard 已提交
671
endif
B
bellard 已提交
672 673 674 675

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

B
bellard 已提交
677
ifeq (1, 0)
678
audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \
B
bellard 已提交
679
fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \
680 681
CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare
endif