Makefile.target 7.0 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
		--group=all \
54
		--format=stap \
L
Lluís Vilanova 已提交
55
		--backends=$(TRACE_BACKENDS) \
56
		--binary=$(bindir)/$(QEMU_PROG) \
P
Paolo Bonzini 已提交
57
		--target-name=$(TARGET_NAME) \
58
		--target-type=$(TARGET_TYPE) \
59
		$< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp-installed")
60

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

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

79 80 81
else
stap:
endif
82
.PHONY: stap
83 84

all: $(PROGS) stap
85

P
Paul Brook 已提交
86 87
# Dummy command so that make thinks it has done something
	@true
B
bellard 已提交
88

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

106 107 108 109 110 111
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

112 113 114 115 116
#########################################################
# Linux user emulator target

ifdef CONFIG_LINUX_USER

117
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
118
             -I$(SRC_PATH)/linux-user/host/$(ARCH) \
119
             -I$(SRC_PATH)/linux-user
120

121
obj-y += linux-user/
122
obj-y += gdbstub.o thunk.o user-exec.o user-exec-stub.o
123 124 125

endif #CONFIG_LINUX_USER

B
blueswir1 已提交
126 127 128 129 130
#########################################################
# BSD user emulator target

ifdef CONFIG_BSD_USER

131 132
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 已提交
133

134
obj-y += bsd-user/
135
obj-y += gdbstub.o user-exec.o user-exec-stub.o
B
blueswir1 已提交
136 137 138

endif #CONFIG_BSD_USER

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

A
Anthony PERARD 已提交
152
# xen support
W
Wei Liu 已提交
153 154 155 156
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 已提交
157

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

165
GENERATED_HEADERS += hmp-commands.h hmp-commands-info.h
166

167
endif # CONFIG_SOFTMMU
168

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

172
dummy := $(call unnest-vars,,obj-y)
173
all-obj-y := $(obj-y)
174

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

199 200
$(QEMU_PROG_BUILD): config-devices.mak

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

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

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

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

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

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

236 237
GENERATED_HEADERS += config-target.h
Makefile: $(GENERATED_HEADERS)