Makefile.target 11.4 KB
Newer Older
B
bellard 已提交
1
include config.mak
A
aliguori 已提交
2
include $(SRC_PATH)/rules.mak
B
bellard 已提交
3

B
bellard 已提交
4
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
B
bellard 已提交
5
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
6
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
7 8 9 10 11

ifdef CONFIG_USER_ONLY
# user emulator name
QEMU_PROG=qemu-$(TARGET_ARCH2)
else
12
# system emulator name
13
ifeq ($(TARGET_ARCH), i386)
14
QEMU_PROG=qemu$(EXESUF)
15
else
16
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
17
endif
B
bellard 已提交
18
endif
B
bellard 已提交
19

20
PROGS=$(QEMU_PROG)
B
bellard 已提交
21

M
malc 已提交
22
ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
J
Juan Quintela 已提交
23
translate.o: QEMU_CFLAGS := $(QEMU_CFLAGS) $(call cc-option, $(QEMU_CFLAGS), -fno-unit-at-a-time,)
M
malc 已提交
24 25
endif

B
bellard 已提交
26
LIBS+=-lm
B
bellard 已提交
27
ifdef CONFIG_SOLARIS
28
ifdef CONFIG_NEEDS_LIBSUNMATH
T
ths 已提交
29 30
LIBS+=-lsunmath
LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
J
Juan Quintela 已提交
31
QEMU_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
B
bellard 已提交
32
endif
33 34
endif

J
Juan Quintela 已提交
35 36
kvm.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
kvm-all.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
A
aliguori 已提交
37

38
all: $(PROGS)
P
Paul Brook 已提交
39 40
# Dummy command so that make thinks it has done something
	@true
B
bellard 已提交
41

42
#########################################################
B
bellard 已提交
43
# cpu emulator library
J
Juan Quintela 已提交
44
libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o
45
libobj-$(CONFIG_KQEMU) += kqemu.o
J
Juan Quintela 已提交
46
libobj-y += tcg/tcg.o tcg/tcg-runtime.o
47 48
libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
J
Juan Quintela 已提交
49
libobj-y += op_helper.o helper.o
50
libobj-$(CONFIG_NEED_MMU) += mmu.o
51

B
bellard 已提交
52
ifeq ($(TARGET_BASE_ARCH), arm)
J
Juan Quintela 已提交
53
libobj-y += neon_helper.o iwmmxt_helper.o
P
pbrook 已提交
54 55
endif

56
ifeq ($(TARGET_BASE_ARCH), alpha)
J
Juan Quintela 已提交
57
libobj-y += alpha_palcode.o
58 59
endif

60
ifeq ($(TARGET_BASE_ARCH), cris)
J
Juan Quintela 已提交
61
libobj-y += cris-dis.o
62 63
endif

B
bellard 已提交
64
# NOTE: the disassembler code is only needed for debugging
J
Juan Quintela 已提交
65
libobj-y += disas.o
B
bellard 已提交
66
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
67 68
USE_I386_DIS=y
endif
B
bellard 已提交
69
ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
70 71
USE_I386_DIS=y
endif
72
libobj-$(USE_I386_DIS) += i386-dis.o
B
bellard 已提交
73
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
J
Juan Quintela 已提交
74
libobj-y += alpha-dis.o
B
bellard 已提交
75
endif
B
bellard 已提交
76
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
J
Juan Quintela 已提交
77
libobj-y += ppc-dis.o
B
bellard 已提交
78
endif
79
ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze)
J
Juan Quintela 已提交
80
libobj-y += microblaze-dis.o
81
endif
T
ths 已提交
82
ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
J
Juan Quintela 已提交
83
libobj-y += mips-dis.o
B
bellard 已提交
84
endif
B
bellard 已提交
85
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
J
Juan Quintela 已提交
86
libobj-y += sparc-dis.o
B
bellard 已提交
87 88
endif
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
J
Juan Quintela 已提交
89
libobj-y += arm-dis.o
B
bellard 已提交
90
endif
B
bellard 已提交
91
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
J
Juan Quintela 已提交
92
libobj-y += m68k-dis.o
B
bellard 已提交
93
endif
B
bellard 已提交
94
ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
J
Juan Quintela 已提交
95
libobj-y += sh4-dis.o
B
bellard 已提交
96
endif
A
aurel32 已提交
97
ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
J
Juan Quintela 已提交
98
libobj-y += hppa-dis.o
A
aurel32 已提交
99
endif
100
ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
J
Juan Quintela 已提交
101
libobj-y += s390-dis.o
102
endif
B
bellard 已提交
103

104 105
# libqemu

J
Juan Quintela 已提交
106
libqemu.a: $(libobj-y)
107

108
translate.o: translate.c cpu.h
109

110
translate-all.o: translate-all.c cpu.h
111

112
tcg/tcg.o: cpu.h
113 114 115

# HELPER_CFLAGS is used for all the code compiled with static register
# variables
J
Juan Quintela 已提交
116
op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
117

J
Juan Quintela 已提交
118
cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
119

J
Juan Quintela 已提交
120 121 122 123
# Note: this is a workaround. The real fix is to avoid compiling
# cpu_signal_handler() in cpu-exec.c.
signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)

124 125 126 127 128
#########################################################
# Linux user emulator target

ifdef CONFIG_LINUX_USER

129
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
J
Juan Quintela 已提交
130
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
131

J
Juan Quintela 已提交
132
obj-y = main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
133 134
      elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o \
      ioport-user.o
135 136
obj-$(TARGET_HAS_BFLT) += flatload.o
obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
137 138

ifeq ($(TARGET_ARCH), i386)
J
Juan Quintela 已提交
139
obj-y += vm86.o
140
endif
141

J
Juan Quintela 已提交
142 143
nwfpe-obj-y := fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
144 145 146 147
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
obj-arm-y += arm-semi.o

obj-m68k-y += m68k-sim.o m68k-semi.o
148

149
ARLIBS=../libqemu_user.a libqemu.a
150 151 152 153 154 155 156 157
endif #CONFIG_LINUX_USER

#########################################################
# Darwin user emulator target

ifdef CONFIG_DARWIN_USER

VPATH+=:$(SRC_PATH)/darwin-user
J
Juan Quintela 已提交
158
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
159 160 161 162 163 164

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

LIBS+=-lmx

J
Juan Quintela 已提交
165
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
166
        gdbstub.o gdbstub-xml.o ioport-user.o
167

168
ARLIBS=libqemu.a
169 170 171

endif #CONFIG_DARWIN_USER

B
blueswir1 已提交
172 173 174 175 176 177
#########################################################
# BSD user emulator target

ifdef CONFIG_BSD_USER

VPATH+=:$(SRC_PATH)/bsd-user
J
Juan Quintela 已提交
178
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
B
blueswir1 已提交
179

J
Juan Quintela 已提交
180
obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \
181
        gdbstub.o gdbstub-xml.o ioport-user.o
J
Juan Quintela 已提交
182
obj-y += uaccess.o
B
blueswir1 已提交
183

184
ARLIBS=libqemu.a ../libqemu_user.a
B
blueswir1 已提交
185 186 187

endif #CONFIG_BSD_USER

188 189
#########################################################
# System emulator target
190
ifdef CONFIG_SOFTMMU
191

J
Juan Quintela 已提交
192
obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
G
Gerd Hoffmann 已提交
193
        gdbstub.o gdbstub-xml.o msix.o ioport.o qemu-config.o
A
aliguori 已提交
194 195
# virtio has to be here due to weird dependency between PCI and virtio-net.
# need to fix this properly
J
Juan Quintela 已提交
196 197
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
198

199
LIBS+=-lz
B
bellard 已提交
200

201 202 203 204 205 206
sound-obj-y =
sound-obj-$(CONFIG_SB16) += sb16.o
sound-obj-$(CONFIG_ES1370) += es1370.o
sound-obj-$(CONFIG_AC97) += ac97.o
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
M
malc 已提交
207
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
208

J
Juan Quintela 已提交
209
adlib.o fmopl.o: QEMU_CFLAGS := ${QEMU_CFLAGS} -DBUILD_Y8950=0
B
bellard 已提交
210

J
Juan Quintela 已提交
211 212
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
213

214
# xen backend driver support
215
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
216

B
bellard 已提交
217
# USB layer
J
Juan Quintela 已提交
218
obj-y += usb-ohci.o
B
bellard 已提交
219

220
# PCI network cards
J
Juan Quintela 已提交
221 222 223 224 225
obj-y += eepro100.o
obj-y += ne2000.o
obj-y += pcnet.o
obj-y += rtl8139.o
obj-y += e1000.o
226

R
Richard W.M. Jones 已提交
227
# Generic watchdog support and some watchdog devices
J
Juan Quintela 已提交
228
obj-y += wdt_ib700.o wdt_i6300esb.o
R
Richard W.M. Jones 已提交
229

230
# Hardware support
231
obj-i386-y = ide.o pckbd.o vga.o $(sound-obj-y) dma.o isa-bus.o
232 233 234 235 236 237
obj-i386-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o

ifeq ($(TARGET_BASE_ARCH), i386)
J
Juan Quintela 已提交
238
QEMU_CFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
B
bellard 已提交
239
endif
240

J
j_mayer 已提交
241
# shared objects
242
obj-ppc-y = ppc.o ide.o vga.o $(sound-obj-y) dma.o isa-bus.o openpic.o
J
j_mayer 已提交
243
# PREP target
244 245
obj-ppc-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
obj-ppc-y += prep_pci.o ppc_prep.o
J
j_mayer 已提交
246
# Mac shared devices
247
obj-ppc-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
J
j_mayer 已提交
248
# OldWorld PowerMac
249
obj-ppc-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
J
j_mayer 已提交
250
# NewWorld PowerMac
251
obj-ppc-y += unin_pci.o ppc_newworld.o
J
j_mayer 已提交
252
# PowerPC 4xx boards
253 254
obj-ppc-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
obj-ppc-y += ppc440.o ppc440_bamboo.o
255
# PowerPC E500 boards
256 257 258 259
obj-ppc-y += ppce500_pci.o ppce500_mpc8544ds.o
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o

ifeq ($(TARGET_BASE_ARCH), ppc)
J
Juan Quintela 已提交
260
QEMU_CFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
261 262
endif

263
obj-ppc-$(CONFIG_FDT) += device_tree.o
264 265 266 267 268

obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
obj-mips-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
obj-mips-y += g364fb.o jazz_led.o dp8393x.o
obj-mips-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
269
obj-mips-y += piix_pci.o parallel.o cirrus_vga.o isa-bus.o pcspk.o $(sound-obj-y)
270 271 272 273
obj-mips-y += mipsnet.o
obj-mips-y += pflash_cfi01.o
obj-mips-y += vmware_vga.o

T
ths 已提交
274
ifeq ($(TARGET_BASE_ARCH), mips)
J
Juan Quintela 已提交
275
QEMU_CFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
B
bellard 已提交
276
endif
277

278 279 280 281 282 283 284 285 286
obj-microblaze-y = petalogix_s3adsp1800_mmu.o

obj-microblaze-y += microblaze_pic_cpu.o
obj-microblaze-y += xilinx_intc.o
obj-microblaze-y += xilinx_timer.o
obj-microblaze-y += xilinx_uartlite.o
obj-microblaze-y += xilinx_ethlite.o

obj-microblaze-y += pflash_cfi02.o
287

288
obj-microblaze-$(CONFIG_FDT) += device_tree.o
289

290
# Boards
291
obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o
292 293

# IO blocks
294 295 296 297 298 299 300
obj-cris-y += etraxfs_dma.o
obj-cris-y += etraxfs_pic.o
obj-cris-y += etraxfs_eth.o
obj-cris-y += etraxfs_timer.o
obj-cris-y += etraxfs_ser.o

obj-cris-y += pflash_cfi02.o
301

B
bellard 已提交
302
ifeq ($(TARGET_ARCH), sparc64)
303
obj-sparc-y = sun4u.o ide.o isa-bus.o pckbd.o vga.o apb_pci.o
304 305
obj-sparc-y += fdc.o mc146818rtc.o serial.o
obj-sparc-y += cirrus_vga.o parallel.o
B
bellard 已提交
306
else
307
obj-sparc-y = sun4m.o tcx.o iommu.o slavio_intctl.o
308
obj-sparc-y += slavio_timer.o slavio_misc.o fdc.o isa-bus.o sparc32_dma.o
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
endif

obj-arm-y = integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
obj-arm-y += versatile_pci.o
obj-arm-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
obj-arm-y += pl061.o
obj-arm-y += arm-semi.o
obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
obj-arm-y += pflash_cfi01.o gumstix.o
obj-arm-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
obj-arm-y += omap2.o omap_dss.o soc_dma.o
obj-arm-y += omap_sx1.o palm.o tsc210x.o
obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
obj-arm-y += mst_fpga.o mainstone.o
obj-arm-y += musicpal.o pflash_cfi02.o
obj-arm-y += framebuffer.o
obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
obj-arm-y += syborg_virtio.o

B
bellard 已提交
334
ifeq ($(TARGET_BASE_ARCH), arm)
J
Juan Quintela 已提交
335
QEMU_CFLAGS += -DHAS_AUDIO
B
bellard 已提交
336
endif
337 338 339 340 341 342 343 344

obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
obj-sh4-y += ide.o

obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
obj-m68k-y += m68k-semi.o dummy_m68k.o

345
ifdef CONFIG_COCOA
346
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
347
endif
B
bellard 已提交
348
ifdef CONFIG_SLIRP
J
Juan Quintela 已提交
349
QEMU_CFLAGS+=-I$(SRC_PATH)/slirp
B
bellard 已提交
350 351
endif

352 353
# profiling code
ifdef TARGET_GPROF
354
main.o vl.o: QEMU_CFLAGS+=-p
B
bellard 已提交
355 356
endif

J
Juan Quintela 已提交
357
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
358

359 360
vl.o: qemu-options.h

361 362
monitor.o: qemu-monitor.h

363
LIBS += $(COCOA_LIBS) $(VDE_LIBS) $(CURL_LIBS)
364
ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
B
bellard 已提交
365

366
endif # CONFIG_SOFTMMU
367

368 369 370 371
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) $(ARLIBS)
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))


P
pbrook 已提交
372 373
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
ifeq ($(TARGET_XML_FILES),)
374
	$(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
P
pbrook 已提交
375
else
376
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
P
pbrook 已提交
377 378
endif

379
qemu-options.h: $(SRC_PATH)/qemu-options.hx
380
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
381

382 383 384
qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")

B
bellard 已提交
385
clean:
386
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
B
bellard 已提交
387
	rm -f *.d */*.d tcg/*.o
388
	rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
389

390
install: all
B
bellard 已提交
391
ifneq ($(PROGS),)
392
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
B
bellard 已提交
393
endif
B
bellard 已提交
394

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