Statistics
| Branch: | Revision:

root / Makefile.target @ 52d94620

History | View | Annotate | Download (10.3 kB)

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

    
3
include config.mak
4
include $(SRC_PATH)/rules.mak
5

    
6
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
7
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
8
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
9

    
10
ifdef CONFIG_USER_ONLY
11
# user emulator name
12
QEMU_PROG=qemu-$(TARGET_ARCH2)
13
else
14
# system emulator name
15
ifeq ($(TARGET_ARCH), i386)
16
QEMU_PROG=qemu$(EXESUF)
17
else
18
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
19
endif
20
endif
21

    
22
PROGS=$(QEMU_PROG)
23

    
24
LIBS+=-lm
25

    
26
kvm.o kvm-all.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
27

    
28
all: $(PROGS)
29
# Dummy command so that make thinks it has done something
30
	@true
31

    
32
#########################################################
33
# cpu emulator library
34
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
35
libobj-y += tcg/tcg.o
36
libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
37
libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
38
libobj-y += op_helper.o helper.o
39
libobj-$(CONFIG_NEED_MMU) += mmu.o
40
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
41
libobj-$(TARGET_ALPHA) += alpha_palcode.o
42

    
43
# NOTE: the disassembler code is only needed for debugging
44
libobj-y += disas.o
45
libobj-$(CONFIG_ALPHA_DIS) += alpha-dis.o
46
libobj-$(CONFIG_ARM_DIS) += arm-dis.o
47
libobj-$(CONFIG_CRIS_DIS) += cris-dis.o
48
libobj-$(CONFIG_HPPA_DIS) += hppa-dis.o
49
libobj-$(CONFIG_I386_DIS) += i386-dis.o
50
libobj-$(CONFIG_M68K_DIS) += m68k-dis.o
51
libobj-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
52
libobj-$(CONFIG_MIPS_DIS) += mips-dis.o
53
libobj-$(CONFIG_PPC_DIS) += ppc-dis.o
54
libobj-$(CONFIG_S390_DIS) += s390-dis.o
55
libobj-$(CONFIG_SH4_DIS) += sh4-dis.o
56
libobj-$(CONFIG_SPARC_DIS) += sparc-dis.o
57

    
58
# libqemu
59

    
60
libqemu.a: $(libobj-y)
61

    
62
translate.o: translate.c cpu.h
63

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

    
66
tcg/tcg.o: cpu.h
67

    
68
# HELPER_CFLAGS is used for all the code compiled with static register
69
# variables
70
op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
71

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

    
76
#########################################################
77
# Linux user emulator target
78

    
79
ifdef CONFIG_LINUX_USER
80

    
81
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
82
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
83
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
84
      elfload.o linuxload.o uaccess.o gdbstub.o gdbstub-xml.o
85
obj-y += envlist.o path.o
86
obj-y += tcg-runtime.o host-utils.o
87

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

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

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

    
95
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
96
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
97
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
98
obj-arm-y += arm-semi.o
99

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

    
102
ARLIBS=libqemu.a
103
endif #CONFIG_LINUX_USER
104

    
105
#########################################################
106
# Darwin user emulator target
107

    
108
ifdef CONFIG_DARWIN_USER
109

    
110
VPATH+=:$(SRC_PATH)/darwin-user
111
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
112

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

    
116
LIBS+=-lmx
117

    
118
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
119
        gdbstub.o gdbstub-xml.o
120
obj-y += envlist.o path.o
121
obj-y += tcg-runtime.o host-utils.o
122

    
123
obj-i386-y += ioport-user.o
124

    
125
ARLIBS=libqemu.a
126

    
127
endif #CONFIG_DARWIN_USER
128

    
129
#########################################################
130
# BSD user emulator target
131

    
132
ifdef CONFIG_BSD_USER
133

    
134
VPATH+=:$(SRC_PATH)/bsd-user
135
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
136

    
137
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
138
        gdbstub.o gdbstub-xml.o uaccess.o
139
obj-y += envlist.o path.o
140
obj-y += tcg-runtime.o host-utils.o
141

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

    
144
ARLIBS=libqemu.a
145

    
146
endif #CONFIG_BSD_USER
147

    
148
ifdef CONFIG_USER_ONLY
149
# hack to compile with -fpie for *-user targets
150
obj-y += cutils-user.o cache-utils-user.o
151
cutils-user.c cache-utils-user.c:
152
	@echo "  LN	$(TARGET_DIR)$@"
153
	@ln -s $(SRC_PATH)/$(@:%-user.c=%.c) $@
154
endif
155

    
156

    
157
#########################################################
158
# System emulator target
159
ifdef CONFIG_SOFTMMU
160

    
161
obj-y = vl.o monitor.o pci.o isa_mmio.o machine.o \
162
        gdbstub.o gdbstub-xml.o
163
# virtio has to be here due to weird dependency between PCI and virtio-net.
164
# need to fix this properly
165
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o virtio-pci.o
166
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
167

    
168
LIBS+=-lz
169

    
170
sound-obj-y =
171
sound-obj-$(CONFIG_SB16) += sb16.o
172
sound-obj-$(CONFIG_ES1370) += es1370.o
173
sound-obj-$(CONFIG_AC97) += ac97.o
174
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
175
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
176
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
177

    
178
adlib.o fmopl.o: QEMU_CFLAGS += -DBUILD_Y8950=0
179

    
180
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
181
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
182

    
183
# xen backend driver support
184
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
185

    
186
# USB layer
187
obj-y += usb-ohci.o
188

    
189
# PCI network cards
190
obj-y += eepro100.o
191
obj-y += pcnet.o
192
obj-y += rtl8139.o
193
obj-y += e1000.o
194

    
195
# Hardware support
196
obj-i386-y = ide/core.o ide/qdev.o ide/isa.o ide/pci.o
197
obj-i386-y += pckbd.o $(sound-obj-y) dma.o
198
obj-i386-y += vga.o vga-pci.o vga-isa.o
199
obj-i386-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
200
obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
201
obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
202
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
203
obj-i386-y += ne2000-isa.o
204

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

    
225
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
226
obj-mips-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
227
obj-mips-y += vga-pci.o vga-isa.o vga-isa-mm.o
228
obj-mips-y += g364fb.o jazz_led.o dp8393x.o
229
obj-mips-y += ide/core.o ide/qdev.o ide/isa.o ide/pci.o
230
obj-mips-y += gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
231
obj-mips-y += piix4.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y)
232
obj-mips-y += mipsnet.o ne2000-isa.o
233
obj-mips-y += pflash_cfi01.o
234
obj-mips-y += vmware_vga.o
235

    
236
obj-microblaze-y = petalogix_s3adsp1800_mmu.o
237

    
238
obj-microblaze-y += microblaze_pic_cpu.o
239
obj-microblaze-y += xilinx_intc.o
240
obj-microblaze-y += xilinx_timer.o
241
obj-microblaze-y += xilinx_uartlite.o
242
obj-microblaze-y += xilinx_ethlite.o
243

    
244
obj-microblaze-y += pflash_cfi02.o
245

    
246
obj-microblaze-$(CONFIG_FDT) += device_tree.o
247

    
248
# Boards
249
obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o
250

    
251
# IO blocks
252
obj-cris-y += etraxfs_dma.o
253
obj-cris-y += etraxfs_pic.o
254
obj-cris-y += etraxfs_eth.o
255
obj-cris-y += etraxfs_timer.o
256
obj-cris-y += etraxfs_ser.o
257

    
258
obj-cris-y += pflash_cfi02.o
259

    
260
ifeq ($(TARGET_ARCH), sparc64)
261
obj-sparc-y = sun4u.o pckbd.o apb_pci.o
262
obj-sparc-y += ide/core.o ide/qdev.o ide/pci.o
263
obj-sparc-y += vga.o vga-pci.o
264
obj-sparc-y += fdc.o mc146818rtc.o serial.o
265
obj-sparc-y += cirrus_vga.o parallel.o
266
else
267
obj-sparc-y = sun4m.o tcx.o iommu.o slavio_intctl.o
268
obj-sparc-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
269
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
270
endif
271

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

    
294
obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
295
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
296
obj-sh4-y += ide/core.o ide/mmio.o
297

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

    
301
main.o vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
302

    
303
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
304

    
305
vl.o: qemu-options.h
306

    
307
monitor.o: qemu-monitor.h
308

    
309
ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
310

    
311
endif # CONFIG_SOFTMMU
312

    
313
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) $(ARLIBS)
314
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
315

    
316

    
317
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
318
ifeq ($(TARGET_XML_FILES),)
319
	$(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
320
else
321
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
322
endif
323

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

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

    
330
clean:
331
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
332
	rm -f *.d */*.d tcg/*.o
333
	rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
334

    
335
install: all
336
ifneq ($(PROGS),)
337
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
338
endif
339

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