Makefile.target 9.1 KB
Newer Older
1 2
# -*- Mode: makefile -*-

3
GENERATED_HEADERS = config-target.h
J
Juan Quintela 已提交
4

5
include ../config-host.mak
6
include config-devices.mak
7
include config-target.mak
A
aliguori 已提交
8
include $(SRC_PATH)/rules.mak
9 10 11
ifneq ($(HWDIR),)
include $(HWDIR)/config.mak
endif
B
bellard 已提交
12

B
bellard 已提交
13
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
P
Paolo Bonzini 已提交
14
$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
15
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
16

17 18
include $(SRC_PATH)/Makefile.objs

19 20 21 22
ifdef CONFIG_USER_ONLY
# user emulator name
QEMU_PROG=qemu-$(TARGET_ARCH2)
else
23
# system emulator name
24
ifeq ($(TARGET_ARCH), i386)
25
QEMU_PROG=qemu$(EXESUF)
26
else
27
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
28
endif
B
bellard 已提交
29
endif
B
bellard 已提交
30

31
PROGS=$(QEMU_PROG)
B
bellard 已提交
32 33

LIBS+=-lm
34

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

37 38 39
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak

J
Juan Quintela 已提交
40
all: $(PROGS)
41

P
Paul Brook 已提交
42 43
# Dummy command so that make thinks it has done something
	@true
B
bellard 已提交
44

45
#########################################################
B
bellard 已提交
46
# cpu emulator library
B
Blue Swirl 已提交
47
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
48
libobj-y += tcg/tcg.o
49 50
libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
J
Juan Quintela 已提交
51
libobj-y += op_helper.o helper.o
52 53 54
ifeq ($(TARGET_BASE_ARCH), i386)
libobj-y += cpuid.o
endif
55
libobj-$(CONFIG_NEED_MMU) += mmu.o
56
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
57

J
Juan Quintela 已提交
58
libobj-y += disas.o
B
bellard 已提交
59

60
$(libobj-y): $(GENERATED_HEADERS)
61

62
# libqemu
63

64
translate.o: translate.c cpu.h
65

66
translate-all.o: translate-all.c cpu.h
67

68
tcg/tcg.o: cpu.h
69 70 71

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

J
Juan Quintela 已提交
74 75 76 77
# 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)

78 79 80 81 82
#########################################################
# Linux user emulator target

ifdef CONFIG_LINUX_USER

P
Paolo Bonzini 已提交
83 84
$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))

J
Juan Quintela 已提交
85
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
B
Blue Swirl 已提交
86
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
87
      elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o
88

89 90
obj-$(TARGET_HAS_BFLT) += flatload.o
obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
91

92
obj-$(TARGET_I386) += vm86.o
93

94
obj-i386-y += ioport-user.o
95

96
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
J
Juan Quintela 已提交
97
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
98 99 100 101
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
obj-arm-y += arm-semi.o

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

103 104 105
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
106
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
107
obj-y += $(libobj-y)
108

109 110 111 112 113 114 115
endif #CONFIG_LINUX_USER

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

ifdef CONFIG_DARWIN_USER

P
Paolo Bonzini 已提交
116 117
$(call set-vpath, $(SRC_PATH)/darwin-user)

J
Juan Quintela 已提交
118
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
119 120 121 122 123 124

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

LIBS+=-lmx

J
Juan Quintela 已提交
125
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
126
        gdbstub.o
127

128
obj-i386-y += ioport-user.o
129

130 131 132
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
133
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
134
obj-y += $(libobj-y)
135 136 137

endif #CONFIG_DARWIN_USER

B
blueswir1 已提交
138 139 140 141 142
#########################################################
# BSD user emulator target

ifdef CONFIG_BSD_USER

P
Paolo Bonzini 已提交
143 144
$(call set-vpath, $(SRC_PATH)/bsd-user)

J
Juan Quintela 已提交
145
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
B
blueswir1 已提交
146

B
Blue Swirl 已提交
147
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
148
        gdbstub.o uaccess.o
149

150
obj-i386-y += ioport-user.o
B
blueswir1 已提交
151

152 153 154
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
155
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
156
obj-y += $(libobj-y)
B
blueswir1 已提交
157 158 159

endif #CONFIG_BSD_USER

160 161
#########################################################
# System emulator target
162
ifdef CONFIG_SOFTMMU
163

164
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o
B
Blue Swirl 已提交
165
obj-y += qemu-timer.o
A
aliguori 已提交
166 167
# virtio has to be here due to weird dependency between PCI and virtio-net.
# need to fix this properly
B
Blue Swirl 已提交
168
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
169
obj-y += rwhandler.o
J
Juan Quintela 已提交
170
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
171
LIBS+=-lz
B
bellard 已提交
172

J
Juan Quintela 已提交
173 174
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
175

176
# xen backend driver support
177
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
178

179
# PCI network cards
J
Juan Quintela 已提交
180 181
obj-y += rtl8139.o
obj-y += e1000.o
182

183
# Hardware support
B
Blue Swirl 已提交
184
obj-i386-y = pckbd.o dma.o
B
Blue Swirl 已提交
185
obj-i386-y += vga.o
B
Blue Swirl 已提交
186
obj-i386-y += mc146818rtc.o i8259.o pc.o
B
Blue Swirl 已提交
187
obj-i386-y += cirrus_vga.o apic.o ioapic.o piix_pci.o
B
Blue Swirl 已提交
188
obj-i386-y += vmmouse.o vmport.o hpet.o
M
Markus Armbruster 已提交
189
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
B
Blue Swirl 已提交
190
obj-i386-y += debugcon.o multiboot.o
191

J
j_mayer 已提交
192
# shared objects
B
Blue Swirl 已提交
193
obj-ppc-y = ppc.o ide/macio.o
B
Blue Swirl 已提交
194
obj-ppc-y += vga.o dma.o openpic.o
J
j_mayer 已提交
195
# PREP target
B
Blue Swirl 已提交
196
obj-ppc-y += pckbd.o i8259.o mc146818rtc.o
B
Blue Swirl 已提交
197
obj-ppc-y += prep_pci.o ppc_prep.o
J
j_mayer 已提交
198
# Mac shared devices
199
obj-ppc-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
J
j_mayer 已提交
200
# OldWorld PowerMac
201
obj-ppc-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
J
j_mayer 已提交
202
# NewWorld PowerMac
B
Blue Swirl 已提交
203
obj-ppc-y += unin_pci.o ppc_newworld.o dec_pci.o
J
j_mayer 已提交
204
# PowerPC 4xx boards
B
Blue Swirl 已提交
205
obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
206
obj-ppc-y += ppc440.o ppc440_bamboo.o
207
# PowerPC E500 boards
208 209
obj-ppc-y += ppce500_pci.o ppce500_mpc8544ds.o
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
210
obj-ppc-$(CONFIG_FDT) += device_tree.o
211 212

obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
213
obj-mips-y += mips_addr.o mips_timer.o mips_int.o
B
Blue Swirl 已提交
214 215
obj-mips-y += dma.o vga.o i8259.o
obj-mips-y += g364fb.o jazz_led.o
B
Blue Swirl 已提交
216
obj-mips-y += gt64xxx.o pckbd.o mc146818rtc.o
B
Blue Swirl 已提交
217
obj-mips-y += piix4.o cirrus_vga.o
218 219 220 221 222 223 224 225 226

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

227
obj-microblaze-$(CONFIG_FDT) += device_tree.o
228

229
# Boards
230
obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o
231 232

# IO blocks
233 234 235 236 237 238
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

B
bellard 已提交
239
ifeq ($(TARGET_ARCH), sparc64)
G
Gerd Hoffmann 已提交
240
obj-sparc-y = sun4u.o pckbd.o apb_pci.o
B
Blue Swirl 已提交
241
obj-sparc-y += vga.o
B
Blue Swirl 已提交
242
obj-sparc-y += mc146818rtc.o
B
Blue Swirl 已提交
243
obj-sparc-y += cirrus_vga.o
B
bellard 已提交
244
else
245
obj-sparc-y = sun4m.o lance.o tcx.o iommu.o slavio_intctl.o
B
Blue Swirl 已提交
246
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
247 248 249
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
endif

P
Paul Brook 已提交
250
obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
251 252
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
P
Paul Brook 已提交
253
obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
254 255 256 257 258
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
B
Blue Swirl 已提交
259
obj-arm-y += gumstix.o
B
Blue Swirl 已提交
260
obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
261 262 263 264 265
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
B
Blue Swirl 已提交
266
obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
267 268 269 270 271 272
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

obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
B
Blue Swirl 已提交
273
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
B
Blue Swirl 已提交
274
obj-sh4-y += ide/mmio.o
275 276 277 278

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

279
obj-s390x-y = s390-virtio-bus.o s390-virtio.o
A
Alexander Graf 已提交
280

281 282
obj-alpha-y = alpha_palcode.o

283
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
284

285 286
monitor.o: qemu-monitor.h

287 288 289
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../, $(common-obj-y))
B
Blue Swirl 已提交
290
obj-y += $(addprefix ../libdis/, $(libdis-y))
291 292
obj-y += $(libobj-y)
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
B
bellard 已提交
293

294
endif # CONFIG_SOFTMMU
295

296 297
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o

298
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
299 300 301
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))


302
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/feature_to_c.sh
303
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
P
pbrook 已提交
304

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

B
bellard 已提交
308
clean:
309
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
310
	rm -f *.d */*.d tcg/*.o ide/*.o
311
	rm -f qemu-monitor.h gdbstub-xml.c
312

313
install: all
B
bellard 已提交
314
ifneq ($(PROGS),)
315
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
B
bellard 已提交
316
endif
B
bellard 已提交
317

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