]>
Commit | Line | Data |
---|---|---|
1 | # -*- Mode: makefile -*- | |
2 | ||
3 | BUILD_DIR?=$(CURDIR)/.. | |
4 | ||
5 | include ../config-host.mak | |
6 | include config-target.mak | |
7 | include $(SRC_PATH)/rules.mak | |
8 | ||
9 | ifdef CONFIG_SOFTMMU | |
10 | include config-devices.mak | |
11 | endif | |
12 | ||
13 | $(call set-vpath, $(SRC_PATH):$(BUILD_DIR)) | |
14 | ifdef CONFIG_LINUX | |
15 | QEMU_CFLAGS += -I../linux-headers | |
16 | endif | |
17 | QEMU_CFLAGS += -iquote .. -iquote $(SRC_PATH)/target/$(TARGET_BASE_ARCH) -DNEED_CPU_H | |
18 | ||
19 | QEMU_CFLAGS+=-iquote $(SRC_PATH)/include | |
20 | ||
21 | ifdef CONFIG_USER_ONLY | |
22 | # user emulator name | |
23 | QEMU_PROG=qemu-$(TARGET_NAME) | |
24 | QEMU_PROG_BUILD = $(QEMU_PROG) | |
25 | else | |
26 | # system emulator name | |
27 | QEMU_PROG=qemu-system-$(TARGET_NAME)$(EXESUF) | |
28 | ifneq (,$(findstring -mwindows,$(SDL_LIBS))) | |
29 | # Terminate program name with a 'w' because the linker builds a windows executable. | |
30 | QEMU_PROGW=qemu-system-$(TARGET_NAME)w$(EXESUF) | |
31 | $(QEMU_PROG): $(QEMU_PROGW) | |
32 | $(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG),"GEN","$(TARGET_DIR)$(QEMU_PROG)") | |
33 | QEMU_PROG_BUILD = $(QEMU_PROGW) | |
34 | else | |
35 | QEMU_PROG_BUILD = $(QEMU_PROG) | |
36 | endif | |
37 | endif | |
38 | ||
39 | PROGS=$(QEMU_PROG) $(QEMU_PROGW) | |
40 | STPFILES= | |
41 | ||
42 | # Makefile Tests | |
43 | include $(SRC_PATH)/tests/tcg/Makefile.include | |
44 | ||
45 | config-target.h: config-target.h-timestamp | |
46 | config-target.h-timestamp: config-target.mak | |
47 | ||
48 | config-devices.h: config-devices.h-timestamp | |
49 | config-devices.h-timestamp: config-devices.mak | |
50 | ||
51 | ifdef CONFIG_TRACE_SYSTEMTAP | |
52 | stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp $(QEMU_PROG)-log.stp | |
53 | ||
54 | ifdef CONFIG_USER_ONLY | |
55 | TARGET_TYPE=user | |
56 | else | |
57 | TARGET_TYPE=system | |
58 | endif | |
59 | ||
60 | tracetool-y = $(SRC_PATH)/scripts/tracetool.py | |
61 | tracetool-y += $(shell find $(SRC_PATH)/scripts/tracetool -name "*.py") | |
62 | ||
63 | $(QEMU_PROG).stp-installed: $(BUILD_DIR)/trace-events-all $(tracetool-y) | |
64 | $(call quiet-command,$(TRACETOOL) \ | |
65 | --group=all \ | |
66 | --format=stap \ | |
67 | --backends=$(TRACE_BACKENDS) \ | |
68 | --binary=$(bindir)/$(QEMU_PROG) \ | |
69 | --target-name=$(TARGET_NAME) \ | |
70 | --target-type=$(TARGET_TYPE) \ | |
71 | $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp-installed") | |
72 | ||
73 | $(QEMU_PROG).stp: $(BUILD_DIR)/trace-events-all $(tracetool-y) | |
74 | $(call quiet-command,$(TRACETOOL) \ | |
75 | --group=all \ | |
76 | --format=stap \ | |
77 | --backends=$(TRACE_BACKENDS) \ | |
78 | --binary=$(realpath .)/$(QEMU_PROG) \ | |
79 | --target-name=$(TARGET_NAME) \ | |
80 | --target-type=$(TARGET_TYPE) \ | |
81 | $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp") | |
82 | ||
83 | $(QEMU_PROG)-simpletrace.stp: $(BUILD_DIR)/trace-events-all $(tracetool-y) | |
84 | $(call quiet-command,$(TRACETOOL) \ | |
85 | --group=all \ | |
86 | --format=simpletrace-stap \ | |
87 | --backends=$(TRACE_BACKENDS) \ | |
88 | --probe-prefix=qemu.$(TARGET_TYPE).$(TARGET_NAME) \ | |
89 | $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG)-simpletrace.stp") | |
90 | ||
91 | $(QEMU_PROG)-log.stp: $(BUILD_DIR)/trace-events-all $(tracetool-y) | |
92 | $(call quiet-command,$(TRACETOOL) \ | |
93 | --group=all \ | |
94 | --format=log-stap \ | |
95 | --backends=$(TRACE_BACKENDS) \ | |
96 | --probe-prefix=qemu.$(TARGET_TYPE).$(TARGET_NAME) \ | |
97 | $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG)-log.stp") | |
98 | ||
99 | else | |
100 | stap: | |
101 | endif | |
102 | .PHONY: stap | |
103 | ||
104 | all: $(PROGS) stap | |
105 | ||
106 | # Dummy command so that make thinks it has done something | |
107 | @true | |
108 | ||
109 | obj-y += trace/ | |
110 | ||
111 | ######################################################### | |
112 | # cpu emulator library | |
113 | obj-y += exec.o | |
114 | obj-y += accel/ | |
115 | obj-$(CONFIG_TCG) += tcg/tcg.o tcg/tcg-op.o tcg/tcg-op-vec.o tcg/tcg-op-gvec.o | |
116 | obj-$(CONFIG_TCG) += tcg/tcg-common.o tcg/optimize.o | |
117 | obj-$(CONFIG_TCG_INTERPRETER) += tcg/tci.o | |
118 | obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o | |
119 | obj-$(CONFIG_TCG) += fpu/softfloat.o | |
120 | obj-y += target/$(TARGET_BASE_ARCH)/ | |
121 | obj-y += disas.o | |
122 | obj-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o | |
123 | LIBS := $(libs_cpu) $(LIBS) | |
124 | ||
125 | ######################################################### | |
126 | # Linux user emulator target | |
127 | ||
128 | ifdef CONFIG_LINUX_USER | |
129 | ||
130 | QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \ | |
131 | -I$(SRC_PATH)/linux-user/host/$(ARCH) \ | |
132 | -I$(SRC_PATH)/linux-user | |
133 | ||
134 | obj-y += linux-user/ | |
135 | obj-y += gdbstub.o thunk.o | |
136 | ||
137 | endif #CONFIG_LINUX_USER | |
138 | ||
139 | ######################################################### | |
140 | # BSD user emulator target | |
141 | ||
142 | ifdef CONFIG_BSD_USER | |
143 | ||
144 | QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \ | |
145 | -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR) | |
146 | ||
147 | obj-y += bsd-user/ | |
148 | obj-y += gdbstub.o | |
149 | ||
150 | endif #CONFIG_BSD_USER | |
151 | ||
152 | ######################################################### | |
153 | # System emulator target | |
154 | ifdef CONFIG_SOFTMMU | |
155 | obj-y += arch_init.o cpus.o gdbstub.o balloon.o ioport.o | |
156 | obj-y += qtest.o | |
157 | obj-y += dump/ | |
158 | obj-y += hw/ | |
159 | obj-y += monitor/ | |
160 | obj-y += qapi/ | |
161 | obj-y += memory.o | |
162 | obj-y += memory_mapping.o | |
163 | obj-y += migration/ram.o | |
164 | LIBS := $(libs_softmmu) $(LIBS) | |
165 | ||
166 | # Hardware support | |
167 | ifeq ($(TARGET_NAME), sparc64) | |
168 | obj-y += hw/sparc64/ | |
169 | else | |
170 | obj-y += hw/$(TARGET_BASE_ARCH)/ | |
171 | endif | |
172 | ||
173 | generated-files-y += hmp-commands.h hmp-commands-info.h | |
174 | generated-files-y += config-devices.h | |
175 | ||
176 | endif # CONFIG_SOFTMMU | |
177 | ||
178 | dummy := $(call unnest-vars,,obj-y) | |
179 | all-obj-y := $(obj-y) | |
180 | ||
181 | include $(SRC_PATH)/Makefile.objs | |
182 | dummy := $(call unnest-vars,.., \ | |
183 | authz-obj-y \ | |
184 | block-obj-y \ | |
185 | block-obj-m \ | |
186 | chardev-obj-y \ | |
187 | crypto-obj-y \ | |
188 | crypto-user-obj-y \ | |
189 | qom-obj-y \ | |
190 | io-obj-y \ | |
191 | common-obj-y \ | |
192 | common-obj-m) | |
193 | all-obj-y += $(common-obj-y) | |
194 | all-obj-y += $(qom-obj-y) | |
195 | all-obj-$(CONFIG_SOFTMMU) += $(authz-obj-y) | |
196 | all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y) $(chardev-obj-y) | |
197 | all-obj-$(CONFIG_USER_ONLY) += $(crypto-user-obj-y) | |
198 | all-obj-$(CONFIG_SOFTMMU) += $(crypto-obj-y) | |
199 | all-obj-$(CONFIG_SOFTMMU) += $(io-obj-y) | |
200 | ||
201 | ifdef CONFIG_SOFTMMU | |
202 | $(QEMU_PROG_BUILD): config-devices.mak | |
203 | endif | |
204 | ||
205 | COMMON_LDADDS = ../libqemuutil.a | |
206 | ||
207 | # build either PROG or PROGW | |
208 | $(QEMU_PROG_BUILD): $(all-obj-y) $(COMMON_LDADDS) | |
209 | $(call LINK, $(filter-out %.mak, $^)) | |
210 | ifdef CONFIG_DARWIN | |
211 | $(call quiet-command,Rez -append $(SRC_PATH)/pc-bios/qemu.rsrc -o $@,"REZ","$(TARGET_DIR)$@") | |
212 | $(call quiet-command,SetFile -a C $@,"SETFILE","$(TARGET_DIR)$@") | |
213 | endif | |
214 | ||
215 | gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh | |
216 | $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"GEN","$(TARGET_DIR)$@") | |
217 | ||
218 | hmp-commands.h: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool | |
219 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@") | |
220 | ||
221 | hmp-commands-info.h: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool | |
222 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@") | |
223 | ||
224 | clean: clean-target | |
225 | rm -f *.a *~ $(PROGS) | |
226 | rm -f $(shell find . -name '*.[od]') | |
227 | rm -f hmp-commands.h gdbstub-xml.c | |
228 | rm -f trace/generated-helpers.c trace/generated-helpers.c-timestamp | |
229 | ifdef CONFIG_TRACE_SYSTEMTAP | |
230 | rm -f *.stp | |
231 | endif | |
232 | ||
233 | install: all | |
234 | ifneq ($(PROGS),) | |
235 | $(call install-prog,$(PROGS),$(DESTDIR)$(bindir)) | |
236 | endif | |
237 | ifdef CONFIG_TRACE_SYSTEMTAP | |
238 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset" | |
239 | $(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp" | |
240 | $(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp" | |
241 | $(INSTALL_DATA) $(QEMU_PROG)-log.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-log.stp" | |
242 | endif | |
243 | ||
244 | generated-files-y += config-target.h | |
245 | Makefile: $(generated-files-y) | |
246 | ||
247 | # Reports/Analysis | |
248 | # | |
249 | # The target specific coverage report only cares about target specific | |
250 | # blobs and not the shared code. | |
251 | # | |
252 | ||
253 | %/coverage-report.html: | |
254 | @mkdir -p $* | |
255 | $(call quiet-command,\ | |
256 | gcovr -r $(SRC_PATH) --object-directory $(CURDIR) \ | |
257 | -p --html --html-details -o $@, \ | |
258 | "GEN", "coverage-report.html") | |
259 | ||
260 | .PHONY: coverage-report | |
261 | coverage-report: $(CURDIR)/reports/coverage/coverage-report.html |