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

3 4
BUILD_DIR?=$(CURDIR)/..

5
include ../config-host.mak
6
include config-target.mak
7
include config-devices.mak
A
aliguori 已提交
8
include $(SRC_PATH)/rules.mak
B
bellard 已提交
9

10
$(call set-vpath, $(SRC_PATH):$(BUILD_DIR))
11 12 13
ifdef CONFIG_LINUX
QEMU_CFLAGS += -I../linux-headers
endif
14
QEMU_CFLAGS += -I.. -I$(SRC_PATH)/target/$(TARGET_BASE_ARCH) -DNEED_CPU_H
15

16 17
QEMU_CFLAGS+=-I$(SRC_PATH)/include

18 19
ifdef CONFIG_USER_ONLY
# user emulator name
20
QEMU_PROG=qemu-$(TARGET_NAME)
21
QEMU_PROG_BUILD = $(QEMU_PROG)
22
else
23
# system emulator name
24
QEMU_PROG=qemu-system-$(TARGET_NAME)$(EXESUF)
25
ifneq (,$(findstring -mwindows,$(libs_softmmu)))
26
# Terminate program name with a 'w' because the linker builds a windows executable.
27
QEMU_PROGW=qemu-system-$(TARGET_NAME)w$(EXESUF)
28
$(QEMU_PROG): $(QEMU_PROGW)
29
	$(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG),"GEN","$(TARGET_DIR)$(QEMU_PROG)")
30 31 32
QEMU_PROG_BUILD = $(QEMU_PROGW)
else
QEMU_PROG_BUILD = $(QEMU_PROG)
33
endif
34
endif
35 36

PROGS=$(QEMU_PROG) $(QEMU_PROGW)
37
STPFILES=
B
bellard 已提交
38

39 40 41
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak

42
ifdef CONFIG_TRACE_SYSTEMTAP
43
stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp
44 45 46 47 48 49 50

ifdef CONFIG_USER_ONLY
TARGET_TYPE=user
else
TARGET_TYPE=system
endif

51
$(QEMU_PROG).stp-installed: $(BUILD_DIR)/trace-events-all
52
	$(call quiet-command,$(TRACETOOL) \
53
		--format=stap \
L
Lluís Vilanova 已提交
54
		--backends=$(TRACE_BACKENDS) \
55
		--binary=$(bindir)/$(QEMU_PROG) \
P
Paolo Bonzini 已提交
56
		--target-name=$(TARGET_NAME) \
57
		--target-type=$(TARGET_TYPE) \
58
		$< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp-installed")
59

60
$(QEMU_PROG).stp: $(BUILD_DIR)/trace-events-all
61 62
	$(call quiet-command,$(TRACETOOL) \
		--format=stap \
L
Lluís Vilanova 已提交
63
		--backends=$(TRACE_BACKENDS) \
64
		--binary=$(realpath .)/$(QEMU_PROG) \
P
Paolo Bonzini 已提交
65
		--target-name=$(TARGET_NAME) \
66
		--target-type=$(TARGET_TYPE) \
67
		$< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp")
68

69
$(QEMU_PROG)-simpletrace.stp: $(BUILD_DIR)/trace-events-all
70 71 72 73
	$(call quiet-command,$(TRACETOOL) \
		--format=simpletrace-stap \
		--backends=$(TRACE_BACKENDS) \
		--probe-prefix=qemu.$(TARGET_TYPE).$(TARGET_NAME) \
74
		$< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG)-simpletrace.stp")
75

76 77 78
else
stap:
endif
79
.PHONY: stap
80 81

all: $(PROGS) stap
82

P
Paul Brook 已提交
83 84
# Dummy command so that make thinks it has done something
	@true
B
bellard 已提交
85

86
#########################################################
B
bellard 已提交
87
# cpu emulator library
88
obj-y = exec.o translate-all.o cpu-exec.o
89
obj-y += translate-common.o
90
obj-y += cpu-exec-common.o
91
obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o
92
obj-$(CONFIG_TCG_INTERPRETER) += tci.o
93
obj-y += tcg/tcg-common.o
94
obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o
95
obj-y += fpu/softfloat.o
96
obj-y += target/$(TARGET_BASE_ARCH)/
97
obj-y += disas.o
R
Richard Henderson 已提交
98
obj-y += tcg-runtime.o
99
obj-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o
100
obj-$(call lnot,$(CONFIG_HAX)) += hax-stub.o
101
obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
102

103 104 105 106 107 108
obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decContext.o
obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decNumber.o
obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal32.o
obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal64.o
obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal128.o

109 110 111 112 113
#########################################################
# Linux user emulator target

ifdef CONFIG_LINUX_USER

114
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
115
             -I$(SRC_PATH)/linux-user/host/$(ARCH) \
116
             -I$(SRC_PATH)/linux-user
117

118
obj-y += linux-user/
119
obj-y += gdbstub.o thunk.o user-exec.o user-exec-stub.o
120 121 122

endif #CONFIG_LINUX_USER

B
blueswir1 已提交
123 124 125 126 127
#########################################################
# BSD user emulator target

ifdef CONFIG_BSD_USER

128 129
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \
			 -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR)
B
blueswir1 已提交
130

131
obj-y += bsd-user/
132
obj-y += gdbstub.o user-exec.o user-exec-stub.o
B
blueswir1 已提交
133 134 135

endif #CONFIG_BSD_USER

136 137
#########################################################
# System emulator target
138
ifdef CONFIG_SOFTMMU
139
obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
140
obj-y += qtest.o bootdevice.o
141
obj-y += hw/
142
obj-$(CONFIG_KVM) += kvm-all.o
143
obj-y += memory.o cputlb.o
144
obj-y += memory_mapping.o
145
obj-y += dump.o
146
obj-y += migration/ram.o migration/savevm.o
147
LIBS := $(libs_softmmu) $(LIBS)
B
bellard 已提交
148

A
Anthony PERARD 已提交
149
# xen support
W
Wei Liu 已提交
150 151 152 153
obj-$(CONFIG_XEN) += xen-common.o
obj-$(CONFIG_XEN_I386) += xen-hvm.o xen-mapcache.o
obj-$(call lnot,$(CONFIG_XEN)) += xen-common-stub.o
obj-$(call lnot,$(CONFIG_XEN_I386)) += xen-hvm-stub.o
A
Anthony PERARD 已提交
154

155
# Hardware support
P
Paolo Bonzini 已提交
156
ifeq ($(TARGET_NAME), sparc64)
157
obj-y += hw/sparc64/
B
bellard 已提交
158
else
159
obj-y += hw/$(TARGET_BASE_ARCH)/
160 161
endif

162
GENERATED_HEADERS += hmp-commands.h hmp-commands-info.h
163

164
endif # CONFIG_SOFTMMU
165

166 167 168
# Workaround for http://gcc.gnu.org/PR55489, see configure.
%/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS)

169
dummy := $(call unnest-vars,,obj-y)
170
all-obj-y := $(obj-y)
171

172
target-obj-y :=
173 174
block-obj-y :=
common-obj-y :=
175
include $(SRC_PATH)/Makefile.objs
176 177
dummy := $(call unnest-vars,,target-obj-y)
target-obj-y-save := $(target-obj-y)
178 179 180
dummy := $(call unnest-vars,.., \
               block-obj-y \
               block-obj-m \
181 182
               crypto-obj-y \
               crypto-aes-obj-y \
183
               qom-obj-y \
184
               io-obj-y \
185 186
               common-obj-y \
               common-obj-m)
187
target-obj-y := $(target-obj-y-save)
188
all-obj-y += $(common-obj-y)
189
all-obj-y += $(target-obj-y)
190
all-obj-y += $(qom-obj-y)
191
all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y)
192 193
all-obj-$(CONFIG_USER_ONLY) += $(crypto-aes-obj-y)
all-obj-$(CONFIG_SOFTMMU) += $(crypto-obj-y)
194
all-obj-$(CONFIG_SOFTMMU) += $(io-obj-y)
195

196 197
$(QEMU_PROG_BUILD): config-devices.mak

198 199
# build either PROG or PROGW
$(QEMU_PROG_BUILD): $(all-obj-y) ../libqemuutil.a ../libqemustub.a
200
	$(call LINK, $(filter-out %.mak, $^))
201
ifdef CONFIG_DARWIN
202 203
	$(call quiet-command,Rez -append $(SRC_PATH)/pc-bios/qemu.rsrc -o $@,"REZ","$(TARGET_DIR)$@")
	$(call quiet-command,SetFile -a C $@,"SETFILE","$(TARGET_DIR)$@")
204
endif
205

B
Blue Swirl 已提交
206
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
207
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"GEN","$(TARGET_DIR)$@")
P
pbrook 已提交
208

209
hmp-commands.h: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
210
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
211

212
hmp-commands-info.h: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
213
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
214

215
clean: clean-target
216 217
	rm -f *.a *~ $(PROGS)
	rm -f $(shell find . -name '*.[od]')
218
	rm -f hmp-commands.h gdbstub-xml.c
219
ifdef CONFIG_TRACE_SYSTEMTAP
220 221
	rm -f *.stp
endif
222

223
install: all
B
bellard 已提交
224
ifneq ($(PROGS),)
225
	$(call install-prog,$(PROGS),$(DESTDIR)$(bindir))
B
bellard 已提交
226
endif
227
ifdef CONFIG_TRACE_SYSTEMTAP
228
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
229
	$(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp"
230
	$(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp"
231
endif
B
bellard 已提交
232

233 234
GENERATED_HEADERS += config-target.h
Makefile: $(GENERATED_HEADERS)