Statistics
| Branch: | Revision:

root / Makefile.target @ b8841706

History | View | Annotate | Download (10.5 kB)

1
# -*- Mode: makefile -*-
2

    
3
GENERATED_HEADERS = config-target.h
4
CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y)
5

    
6
include ../config-host.mak
7
include config-devices.mak
8
include config-target.mak
9
include $(SRC_PATH)/rules.mak
10
ifneq ($(HWDIR),)
11
include $(HWDIR)/config.mak
12
endif
13

    
14
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
15
$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
16
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
17

    
18
include $(SRC_PATH)/Makefile.objs
19

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

    
32
PROGS=$(QEMU_PROG)
33
STPFILES=
34

    
35
ifndef CONFIG_HAIKU
36
LIBS+=-lm
37
endif
38

    
39
kvm.o kvm-all.o vhost.o vhost_net.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
40

    
41
config-target.h: config-target.h-timestamp
42
config-target.h-timestamp: config-target.mak
43

    
44
ifdef CONFIG_SYSTEMTAP_TRACE
45
STPFILES+=$(QEMU_PROG).stp
46

    
47
$(QEMU_PROG).stp:
48
	$(call quiet-command,sh $(SRC_PATH)/tracetool \
49
		--$(TRACE_BACKEND) \
50
		--bindir $(bindir) \
51
		--target $(TARGET_ARCH) \
52
		-s < $(SRC_PATH)/trace-events > $@,"  GEN   $@")
53
endif
54

    
55
all: $(PROGS) $(STPFILES)
56

    
57
# Dummy command so that make thinks it has done something
58
	@true
59

    
60
#########################################################
61
# cpu emulator library
62
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
63
libobj-y += tcg/tcg.o
64
libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
65
libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
66
libobj-y += op_helper.o helper.o
67
ifeq ($(TARGET_BASE_ARCH), i386)
68
libobj-y += cpuid.o
69
endif
70
libobj-$(CONFIG_NEED_MMU) += mmu.o
71
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
72

    
73
libobj-y += disas.o
74

    
75
$(libobj-y): $(GENERATED_HEADERS)
76

    
77
# libqemu
78

    
79
translate.o: translate.c cpu.h
80

    
81
translate-all.o: translate-all.c cpu.h
82

    
83
tcg/tcg.o: cpu.h
84

    
85
# HELPER_CFLAGS is used for all the code compiled with static register
86
# variables
87
op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
88

    
89
# Note: this is a workaround. The real fix is to avoid compiling
90
# cpu_signal_handler() in cpu-exec.c.
91
signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
92

    
93
#########################################################
94
# Linux user emulator target
95

    
96
ifdef CONFIG_LINUX_USER
97

    
98
$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
99

    
100
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
101
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
102
      elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
103
      qemu-malloc.o $(oslib-obj-y)
104

    
105
obj-$(TARGET_HAS_BFLT) += flatload.o
106

    
107
obj-$(TARGET_I386) += vm86.o
108

    
109
obj-i386-y += ioport-user.o
110

    
111
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
112
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
113
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
114
obj-arm-y += arm-semi.o
115

    
116
obj-m68k-y += m68k-sim.o m68k-semi.o
117

    
118
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
119

    
120
obj-y += $(addprefix ../libuser/, $(user-obj-y))
121
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
122
obj-y += $(libobj-y)
123

    
124
endif #CONFIG_LINUX_USER
125

    
126
#########################################################
127
# Darwin user emulator target
128

    
129
ifdef CONFIG_DARWIN_USER
130

    
131
$(call set-vpath, $(SRC_PATH)/darwin-user)
132

    
133
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
134

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

    
138
LIBS+=-lmx
139

    
140
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
141
        gdbstub.o
142

    
143
obj-i386-y += ioport-user.o
144

    
145
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
146

    
147
obj-y += $(addprefix ../libuser/, $(user-obj-y))
148
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
149
obj-y += $(libobj-y)
150

    
151
endif #CONFIG_DARWIN_USER
152

    
153
#########################################################
154
# BSD user emulator target
155

    
156
ifdef CONFIG_BSD_USER
157

    
158
$(call set-vpath, $(SRC_PATH)/bsd-user)
159

    
160
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
161

    
162
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
163
        gdbstub.o uaccess.o
164

    
165
obj-i386-y += ioport-user.o
166

    
167
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
168

    
169
obj-y += $(addprefix ../libuser/, $(user-obj-y))
170
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
171
obj-y += $(libobj-y)
172

    
173
endif #CONFIG_BSD_USER
174

    
175
#########################################################
176
# System emulator target
177
ifdef CONFIG_SOFTMMU
178

    
179
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
180
# virtio has to be here due to weird dependency between PCI and virtio-net.
181
# need to fix this properly
182
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
183
obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
184
obj-y += vhost_net.o
185
obj-$(CONFIG_VHOST_NET) += vhost.o
186
obj-$(CONFIG_VIRTFS) += virtio-9p.o
187
obj-y += rwhandler.o
188
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
189
obj-$(CONFIG_NO_KVM) += kvm-stub.o
190
LIBS+=-lz
191

    
192
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
193
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
194
QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
195
QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
196

    
197
# xen backend driver support
198
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
199

    
200
# USB layer
201
obj-$(CONFIG_USB_OHCI) += usb-ohci.o
202

    
203
# PCI network cards
204
obj-y += rtl8139.o
205
obj-y += e1000.o
206

    
207
# Inter-VM PCI shared memory
208
obj-$(CONFIG_KVM) += ivshmem.o
209

    
210
# Hardware support
211
obj-i386-y += vga.o
212
obj-i386-y += mc146818rtc.o i8259.o pc.o
213
obj-i386-y += cirrus_vga.o apic.o ioapic.o piix_pci.o
214
obj-i386-y += vmmouse.o vmport.o hpet.o applesmc.o
215
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
216
obj-i386-y += debugcon.o multiboot.o
217
obj-i386-y += pc_piix.o
218

    
219
# shared objects
220
obj-ppc-y = ppc.o
221
obj-ppc-y += vga.o
222
# PREP target
223
obj-ppc-y += i8259.o mc146818rtc.o
224
obj-ppc-y += ppc_prep.o
225
# OldWorld PowerMac
226
obj-ppc-y += ppc_oldworld.o
227
# NewWorld PowerMac
228
obj-ppc-y += ppc_newworld.o
229
# PowerPC 4xx boards
230
obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
231
obj-ppc-y += ppc440.o ppc440_bamboo.o
232
# PowerPC E500 boards
233
obj-ppc-y += ppce500_mpc8544ds.o
234
# PowerPC 440 Xilinx ML507 reference board.
235
obj-ppc-y += virtex_ml507.o
236
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
237
obj-ppc-$(CONFIG_FDT) += device_tree.o
238

    
239
# Xilinx PPC peripherals
240
obj-ppc-y += xilinx_intc.o
241
obj-ppc-y += xilinx_timer.o
242
obj-ppc-y += xilinx_uartlite.o
243
obj-ppc-y += xilinx_ethlite.o
244

    
245
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
246
obj-mips-y += mips_addr.o mips_timer.o mips_int.o
247
obj-mips-y += vga.o i8259.o
248
obj-mips-y += g364fb.o jazz_led.o
249
obj-mips-y += gt64xxx.o mc146818rtc.o
250
obj-mips-y += cirrus_vga.o
251
obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
252

    
253
obj-microblaze-y = petalogix_s3adsp1800_mmu.o
254

    
255
obj-microblaze-y += microblaze_pic_cpu.o
256
obj-microblaze-y += xilinx_intc.o
257
obj-microblaze-y += xilinx_timer.o
258
obj-microblaze-y += xilinx_uartlite.o
259
obj-microblaze-y += xilinx_ethlite.o
260

    
261
obj-microblaze-$(CONFIG_FDT) += device_tree.o
262

    
263
# Boards
264
obj-cris-y = cris_pic_cpu.o
265
obj-cris-y += cris-boot.o
266
obj-cris-y += etraxfs.o axis_dev88.o
267
obj-cris-y += axis_dev88.o
268

    
269
# IO blocks
270
obj-cris-y += etraxfs_dma.o
271
obj-cris-y += etraxfs_pic.o
272
obj-cris-y += etraxfs_eth.o
273
obj-cris-y += etraxfs_timer.o
274
obj-cris-y += etraxfs_ser.o
275

    
276
ifeq ($(TARGET_ARCH), sparc64)
277
obj-sparc-y = sun4u.o apb_pci.o
278
obj-sparc-y += vga.o
279
obj-sparc-y += mc146818rtc.o
280
obj-sparc-y += cirrus_vga.o
281
else
282
obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
283
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
284
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
285
endif
286

    
287
obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
288
obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
289
obj-arm-y += versatile_pci.o
290
obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
291
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
292
obj-arm-y += pl061.o
293
obj-arm-y += arm-semi.o
294
obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
295
obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
296
obj-arm-y += gumstix.o
297
obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
298
obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \
299
		omap_gpio.o omap_intc.o omap_uart.o
300
obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \
301
		omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o
302
obj-arm-y += omap_sx1.o palm.o tsc210x.o
303
obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
304
obj-arm-y += mst_fpga.o mainstone.o
305
obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
306
obj-arm-y += framebuffer.o
307
obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
308
obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
309
obj-arm-y += syborg_virtio.o
310

    
311
obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
312
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
313
obj-sh4-y += ide/mmio.o
314

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

    
318
obj-s390x-y = s390-virtio-bus.o s390-virtio.o
319

    
320
obj-alpha-y = alpha_palcode.o
321

    
322
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
323

    
324
monitor.o: hmp-commands.h qmp-commands.h
325

    
326
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
327

    
328
obj-y += $(addprefix ../, $(common-obj-y))
329
obj-y += $(addprefix ../libdis/, $(libdis-y))
330
obj-y += $(libobj-y)
331
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
332

    
333
endif # CONFIG_SOFTMMU
334

    
335
obj-y += $(addprefix ../, $(trace-obj-y))
336
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
337

    
338
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
339
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
340

    
341

    
342
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/feature_to_c.sh
343
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
344

    
345
hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
346
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
347

    
348
qmp-commands.h: $(SRC_PATH)/qmp-commands.hx
349
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
350

    
351
clean:
352
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
353
	rm -f *.d */*.d tcg/*.o ide/*.o
354
	rm -f hmp-commands.h qmp-commands.h gdbstub-xml.c
355

    
356
install: all
357
ifneq ($(PROGS),)
358
	$(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
359
ifneq ($(STRIP),)
360
	$(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
361
endif
362
endif
363
ifdef CONFIG_SYSTEMTAP_TRACE
364
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
365
	$(INSTALL_DATA) $(STPFILES) "$(DESTDIR)$(datadir)/../systemtap/tapset"
366
endif
367

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