]> git.proxmox.com Git - mirror_qemu.git/blob - Makefile.target
Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-3.0-20180622' into staging
[mirror_qemu.git] / Makefile.target
1 # -*- Mode: makefile -*-
2
3 BUILD_DIR?=$(CURDIR)/..
4
5 include ../config-host.mak
6 include config-target.mak
7 include config-devices.mak
8 include $(SRC_PATH)/rules.mak
9
10 $(call set-vpath, $(SRC_PATH):$(BUILD_DIR))
11 ifdef CONFIG_LINUX
12 QEMU_CFLAGS += -I../linux-headers
13 endif
14 QEMU_CFLAGS += -iquote .. -iquote $(SRC_PATH)/target/$(TARGET_BASE_ARCH) -DNEED_CPU_H
15
16 QEMU_CFLAGS+=-iquote $(SRC_PATH)/include
17
18 ifdef CONFIG_USER_ONLY
19 # 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,$(SDL_LIBS)))
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 QEMU_PROG_BUILD = $(QEMU_PROGW)
31 else
32 QEMU_PROG_BUILD = $(QEMU_PROG)
33 endif
34 endif
35
36 PROGS=$(QEMU_PROG) $(QEMU_PROGW)
37 STPFILES=
38
39 # Makefile Tests
40 ifdef CONFIG_USER_ONLY
41 include $(SRC_PATH)/tests/tcg/Makefile.include
42 endif
43
44 config-target.h: config-target.h-timestamp
45 config-target.h-timestamp: config-target.mak
46
47 ifdef CONFIG_TRACE_SYSTEMTAP
48 stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp
49
50 ifdef CONFIG_USER_ONLY
51 TARGET_TYPE=user
52 else
53 TARGET_TYPE=system
54 endif
55
56 tracetool-y = $(SRC_PATH)/scripts/tracetool.py
57 tracetool-y += $(shell find $(SRC_PATH)/scripts/tracetool -name "*.py")
58
59 $(QEMU_PROG).stp-installed: $(BUILD_DIR)/trace-events-all $(tracetool-y)
60 $(call quiet-command,$(TRACETOOL) \
61 --group=all \
62 --format=stap \
63 --backends=$(TRACE_BACKENDS) \
64 --binary=$(bindir)/$(QEMU_PROG) \
65 --target-name=$(TARGET_NAME) \
66 --target-type=$(TARGET_TYPE) \
67 $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp-installed")
68
69 $(QEMU_PROG).stp: $(BUILD_DIR)/trace-events-all $(tracetool-y)
70 $(call quiet-command,$(TRACETOOL) \
71 --group=all \
72 --format=stap \
73 --backends=$(TRACE_BACKENDS) \
74 --binary=$(realpath .)/$(QEMU_PROG) \
75 --target-name=$(TARGET_NAME) \
76 --target-type=$(TARGET_TYPE) \
77 $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp")
78
79 $(QEMU_PROG)-simpletrace.stp: $(BUILD_DIR)/trace-events-all $(tracetool-y)
80 $(call quiet-command,$(TRACETOOL) \
81 --group=all \
82 --format=simpletrace-stap \
83 --backends=$(TRACE_BACKENDS) \
84 --probe-prefix=qemu.$(TARGET_TYPE).$(TARGET_NAME) \
85 $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG)-simpletrace.stp")
86
87 else
88 stap:
89 endif
90 .PHONY: stap
91
92 all: $(PROGS) stap
93
94 # Dummy command so that make thinks it has done something
95 @true
96
97 #########################################################
98 # cpu emulator library
99 obj-y += exec.o
100 obj-y += accel/
101 obj-$(CONFIG_TCG) += tcg/tcg.o tcg/tcg-op.o tcg/tcg-op-vec.o tcg/tcg-op-gvec.o
102 obj-$(CONFIG_TCG) += tcg/tcg-common.o tcg/optimize.o
103 obj-$(CONFIG_TCG_INTERPRETER) += tcg/tci.o
104 obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o
105 obj-$(CONFIG_TCG) += fpu/softfloat.o
106 obj-y += target/$(TARGET_BASE_ARCH)/
107 obj-y += disas.o
108 obj-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o
109
110 #########################################################
111 # Linux user emulator target
112
113 ifdef CONFIG_LINUX_USER
114
115 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
116 -I$(SRC_PATH)/linux-user/host/$(ARCH) \
117 -I$(SRC_PATH)/linux-user
118
119 obj-y += linux-user/
120 obj-y += gdbstub.o thunk.o
121
122 endif #CONFIG_LINUX_USER
123
124 #########################################################
125 # BSD user emulator target
126
127 ifdef CONFIG_BSD_USER
128
129 QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \
130 -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR)
131
132 obj-y += bsd-user/
133 obj-y += gdbstub.o
134
135 endif #CONFIG_BSD_USER
136
137 #########################################################
138 # System emulator target
139 ifdef CONFIG_SOFTMMU
140 obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
141 obj-y += qtest.o
142 obj-y += hw/
143 obj-y += memory.o
144 obj-y += memory_mapping.o
145 obj-y += dump.o
146 obj-y += migration/ram.o
147 LIBS := $(libs_softmmu) $(LIBS)
148
149 # Hardware support
150 ifeq ($(TARGET_NAME), sparc64)
151 obj-y += hw/sparc64/
152 else
153 obj-y += hw/$(TARGET_BASE_ARCH)/
154 endif
155
156 GENERATED_FILES += hmp-commands.h hmp-commands-info.h
157
158 endif # CONFIG_SOFTMMU
159
160 # Workaround for http://gcc.gnu.org/PR55489, see configure.
161 %/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS)
162
163 dummy := $(call unnest-vars,,obj-y)
164 all-obj-y := $(obj-y)
165
166 target-obj-y :=
167 block-obj-y :=
168 common-obj-y :=
169 chardev-obj-y :=
170 include $(SRC_PATH)/Makefile.objs
171 dummy := $(call unnest-vars,,target-obj-y)
172 target-obj-y-save := $(target-obj-y)
173 dummy := $(call unnest-vars,.., \
174 block-obj-y \
175 block-obj-m \
176 chardev-obj-y \
177 crypto-obj-y \
178 crypto-aes-obj-y \
179 qom-obj-y \
180 io-obj-y \
181 common-obj-y \
182 common-obj-m)
183 target-obj-y := $(target-obj-y-save)
184 all-obj-y += $(common-obj-y)
185 all-obj-y += $(target-obj-y)
186 all-obj-y += $(qom-obj-y)
187 all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y) $(chardev-obj-y)
188 all-obj-$(CONFIG_USER_ONLY) += $(crypto-aes-obj-y)
189 all-obj-$(CONFIG_SOFTMMU) += $(crypto-obj-y)
190 all-obj-$(CONFIG_SOFTMMU) += $(io-obj-y)
191
192 $(QEMU_PROG_BUILD): config-devices.mak
193
194 COMMON_LDADDS = ../libqemuutil.a
195
196 # build either PROG or PROGW
197 $(QEMU_PROG_BUILD): $(all-obj-y) $(COMMON_LDADDS)
198 $(call LINK, $(filter-out %.mak, $^))
199 ifdef CONFIG_DARWIN
200 $(call quiet-command,Rez -append $(SRC_PATH)/pc-bios/qemu.rsrc -o $@,"REZ","$(TARGET_DIR)$@")
201 $(call quiet-command,SetFile -a C $@,"SETFILE","$(TARGET_DIR)$@")
202 endif
203
204 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
205 $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"GEN","$(TARGET_DIR)$@")
206
207 hmp-commands.h: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
208 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
209
210 hmp-commands-info.h: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
211 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
212
213 clean: clean-target
214 rm -f *.a *~ $(PROGS)
215 rm -f $(shell find . -name '*.[od]')
216 rm -f hmp-commands.h gdbstub-xml.c
217 ifdef CONFIG_TRACE_SYSTEMTAP
218 rm -f *.stp
219 endif
220
221 install: all
222 ifneq ($(PROGS),)
223 $(call install-prog,$(PROGS),$(DESTDIR)$(bindir))
224 endif
225 ifdef CONFIG_TRACE_SYSTEMTAP
226 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
227 $(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp"
228 $(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp"
229 endif
230
231 GENERATED_FILES += config-target.h
232 Makefile: $(GENERATED_FILES)