Statistics
| Branch: | Revision:

root / Makefile.target @ 35da37e1

History | View | Annotate | Download (10.3 kB)

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

    
3
GENERATED_HEADERS = config-target.h
4

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

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

    
17
include $(SRC_PATH)/Makefile.objs
18

    
19
ifdef CONFIG_USER_ONLY
20
# user emulator name
21
QEMU_PROG=qemu-$(TARGET_ARCH2)
22
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
29
endif
30

    
31
PROGS=$(QEMU_PROG)
32

    
33
LIBS+=-lm
34

    
35
kvm.o kvm-all.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
36

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

    
40
all: $(PROGS)
41

    
42
# Dummy command so that make thinks it has done something
43
	@true
44

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

    
58
libobj-y += disas.o
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
# HELPER_CFLAGS is used for all the code compiled with static register
71
# variables
72
op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
73

    
74
# Note: this is a workaround. The real fix is to avoid compiling
75
# cpu_signal_handler() in cpu-exec.c.
76
signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
77

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

    
81
ifdef CONFIG_LINUX_USER
82

    
83
$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
84

    
85
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
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
obj-$(TARGET_HAS_BFLT) += flatload.o
90
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
97
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
98
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
99
obj-arm-y += arm-semi.o
100

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

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

    
105
obj-y += $(addprefix ../libuser/, $(user-obj-y))
106
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
107
obj-y += $(libobj-y)
108

    
109
endif #CONFIG_LINUX_USER
110

    
111
#########################################################
112
# Darwin user emulator target
113

    
114
ifdef CONFIG_DARWIN_USER
115

    
116
$(call set-vpath, $(SRC_PATH)/darwin-user)
117

    
118
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
119

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

    
123
LIBS+=-lmx
124

    
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
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
131

    
132
obj-y += $(addprefix ../libuser/, $(user-obj-y))
133
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
134
obj-y += $(libobj-y)
135

    
136
endif #CONFIG_DARWIN_USER
137

    
138
#########################################################
139
# BSD user emulator target
140

    
141
ifdef CONFIG_BSD_USER
142

    
143
$(call set-vpath, $(SRC_PATH)/bsd-user)
144

    
145
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
146

    
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
151

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

    
154
obj-y += $(addprefix ../libuser/, $(user-obj-y))
155
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
156
obj-y += $(libobj-y)
157

    
158
endif #CONFIG_BSD_USER
159

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

    
164
obj-y = vl.o async.o monitor.o pci.o pci_host.o pcie_host.o machine.o gdbstub.o
165
obj-y += qemu-error.o qemu-timer.o
166
# virtio has to be here due to weird dependency between PCI and virtio-net.
167
# need to fix this properly
168
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-pci.o virtio-serial-bus.o
169
obj-y += rwhandler.o
170
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
171
obj-$(CONFIG_ISA_MMIO) += isa_mmio.o
172
LIBS+=-lz
173

    
174
sound-obj-y =
175
sound-obj-$(CONFIG_SB16) += sb16.o
176
sound-obj-$(CONFIG_ES1370) += es1370.o
177
sound-obj-$(CONFIG_AC97) += ac97.o
178
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
179
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
180
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
181

    
182
adlib.o fmopl.o: QEMU_CFLAGS += -DBUILD_Y8950=0
183

    
184
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
185
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
186

    
187
# xen backend driver support
188
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
189

    
190
# USB layer
191
obj-$(CONFIG_USB_OHCI) += usb-ohci.o
192

    
193
# PCI network cards
194
obj-y += eepro100.o
195
obj-y += pcnet.o
196
obj-y += rtl8139.o
197
obj-y += e1000.o
198

    
199
# Hardware support
200
obj-i386-y = ide/core.o
201
obj-i386-y += pckbd.o $(sound-obj-y) dma.o
202
obj-i386-y += vga.o
203
obj-i386-y += mc146818rtc.o serial.o i8259.o pc.o
204
obj-i386-y += cirrus_vga.o apic.o ioapic.o acpi.o piix_pci.o
205
obj-i386-y += vmmouse.o vmport.o vmware_vga.o hpet.o
206
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
207
obj-i386-y += ne2000-isa.o debugcon.o multiboot.o
208

    
209
# shared objects
210
obj-ppc-y = ppc.o ide/core.o ide/macio.o
211
obj-ppc-y += vga.o $(sound-obj-y) dma.o openpic.o
212
# PREP target
213
obj-ppc-y += pckbd.o serial.o i8259.o mc146818rtc.o
214
obj-ppc-y += prep_pci.o ppc_prep.o ne2000-isa.o
215
# Mac shared devices
216
obj-ppc-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
217
# OldWorld PowerMac
218
obj-ppc-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
219
# NewWorld PowerMac
220
obj-ppc-y += unin_pci.o ppc_newworld.o dec_pci.o
221
# PowerPC 4xx boards
222
obj-ppc-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
223
obj-ppc-y += ppc440.o ppc440_bamboo.o
224
# PowerPC E500 boards
225
obj-ppc-y += ppce500_pci.o ppce500_mpc8544ds.o
226
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
227
obj-ppc-$(CONFIG_FDT) += device_tree.o
228

    
229
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
230
obj-mips-y += mips_addr.o mips_timer.o mips_int.o
231
obj-mips-y += dma.o vga.o serial.o i8259.o rc4030.o
232
obj-mips-y += vga-isa-mm.o
233
obj-mips-y += g364fb.o jazz_led.o dp8393x.o
234
obj-mips-y += ide/core.o
235
obj-mips-y += gt64xxx.o pckbd.o mc146818rtc.o acpi.o ds1225y.o
236
obj-mips-y += piix4.o cirrus_vga.o $(sound-obj-y)
237
obj-mips-y += mipsnet.o ne2000-isa.o
238
obj-mips-y += pflash_cfi01.o
239
obj-mips-y += vmware_vga.o
240

    
241
obj-microblaze-y = petalogix_s3adsp1800_mmu.o
242

    
243
obj-microblaze-y += microblaze_pic_cpu.o
244
obj-microblaze-y += xilinx_intc.o
245
obj-microblaze-y += xilinx_timer.o
246
obj-microblaze-y += xilinx_uartlite.o
247
obj-microblaze-y += xilinx_ethlite.o
248

    
249
obj-microblaze-y += pflash_cfi01.o
250

    
251
obj-microblaze-$(CONFIG_FDT) += device_tree.o
252

    
253
# Boards
254
obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o
255

    
256
# IO blocks
257
obj-cris-y += etraxfs_dma.o
258
obj-cris-y += etraxfs_pic.o
259
obj-cris-y += etraxfs_eth.o
260
obj-cris-y += etraxfs_timer.o
261
obj-cris-y += etraxfs_ser.o
262

    
263
obj-cris-y += pflash_cfi02.o
264

    
265
ifeq ($(TARGET_ARCH), sparc64)
266
obj-sparc-y = sun4u.o pckbd.o apb_pci.o
267
obj-sparc-y += ide/core.o
268
obj-sparc-y += vga.o
269
obj-sparc-y += mc146818rtc.o serial.o
270
obj-sparc-y += cirrus_vga.o
271
else
272
obj-sparc-y = sun4m.o lance.o tcx.o iommu.o slavio_intctl.o
273
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
274
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
275
endif
276

    
277
obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
278
obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
279
obj-arm-y += versatile_pci.o
280
obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
281
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
282
obj-arm-y += pl061.o
283
obj-arm-y += arm-semi.o
284
obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
285
obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
286
obj-arm-y += pflash_cfi01.o gumstix.o
287
obj-arm-y += zaurus.o ide/core.o ide/microdrive.o serial.o spitz.o tosa.o tc6393xb.o
288
obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
289
obj-arm-y += omap2.o omap_dss.o soc_dma.o
290
obj-arm-y += omap_sx1.o palm.o tsc210x.o
291
obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
292
obj-arm-y += mst_fpga.o mainstone.o
293
obj-arm-y += musicpal.o pflash_cfi02.o bitbang_i2c.o marvell_88w8618_audio.o
294
obj-arm-y += framebuffer.o
295
obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
296
obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
297
obj-arm-y += syborg_virtio.o
298

    
299
obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
300
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
301
obj-sh4-y += ide/core.o ide/mmio.o
302

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

    
306
obj-s390x-y = s390-virtio-bus.o s390-virtio.o
307

    
308
obj-alpha-y = alpha_palcode.o
309

    
310
main.o vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
311

    
312
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
313

    
314
vl.o: qemu-options.h
315

    
316
monitor.o: qemu-monitor.h
317

    
318
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
319

    
320
obj-y += $(addprefix ../, $(common-obj-y))
321
obj-y += $(addprefix ../libdis/, $(libdis-y))
322
obj-y += $(libobj-y)
323
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
324

    
325
endif # CONFIG_SOFTMMU
326

    
327
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
328

    
329
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
330
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
331

    
332

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

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

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

    
342
clean:
343
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
344
	rm -f *.d */*.d tcg/*.o ide/*.o
345
	rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
346

    
347
install: all
348
ifneq ($(PROGS),)
349
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
350
endif
351

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