Merge tag 'v2.7.0' into develop_qemu_2.7
[sdk/emulator/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 += -I.. -I$(SRC_PATH)/target-$(TARGET_BASE_ARCH) -DNEED_CPU_H
15
16 QEMU_CFLAGS+=-I$(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,$(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 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 config-target.h: config-target.h-timestamp
40 config-target.h-timestamp: config-target.mak
41
42 ifdef CONFIG_TRACE_SYSTEMTAP
43 stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp
44
45 ifdef CONFIG_USER_ONLY
46 TARGET_TYPE=user
47 else
48 TARGET_TYPE=system
49 endif
50
51 $(QEMU_PROG).stp-installed: $(BUILD_DIR)/trace-events-all
52         $(call quiet-command,$(TRACETOOL) \
53                 --format=stap \
54                 --backends=$(TRACE_BACKENDS) \
55                 --binary=$(bindir)/$(QEMU_PROG) \
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         $(call quiet-command,$(TRACETOOL) \
62                 --format=stap \
63                 --backends=$(TRACE_BACKENDS) \
64                 --binary=$(realpath .)/$(QEMU_PROG) \
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         $(call quiet-command,$(TRACETOOL) \
71                 --format=simpletrace-stap \
72                 --backends=$(TRACE_BACKENDS) \
73                 --probe-prefix=qemu.$(TARGET_TYPE).$(TARGET_NAME) \
74                 < $< > $@,"  GEN   $(TARGET_DIR)$(QEMU_PROG)-simpletrace.stp")
75
76 else
77 stap:
78 endif
79
80 all: $(PROGS) stap
81
82 # Dummy command so that make thinks it has done something
83         @true
84
85 #########################################################
86 # cpu emulator library
87 obj-y = exec.o translate-all.o cpu-exec.o
88 obj-y += translate-common.o
89 obj-y += cpu-exec-common.o
90 obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o
91 obj-$(CONFIG_TCG_INTERPRETER) += tci.o
92 obj-y += tcg/tcg-common.o
93 obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o
94 obj-y += fpu/softfloat.o
95 obj-y += target-$(TARGET_BASE_ARCH)/
96 obj-y += disas.o
97 obj-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o
98 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
99
100 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decContext.o
101 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decNumber.o
102 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal32.o
103 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal64.o
104 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal128.o
105
106 #########################################################
107 # Linux user emulator target
108
109 ifdef CONFIG_LINUX_USER
110
111 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
112              -I$(SRC_PATH)/linux-user/host/$(ARCH) \
113              -I$(SRC_PATH)/linux-user
114
115 obj-y += linux-user/
116 obj-y += gdbstub.o thunk.o user-exec.o
117
118 endif #CONFIG_LINUX_USER
119
120 #########################################################
121 # BSD user emulator target
122
123 ifdef CONFIG_BSD_USER
124
125 QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \
126                          -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR)
127
128 obj-y += bsd-user/
129 obj-y += gdbstub.o user-exec.o
130
131 endif #CONFIG_BSD_USER
132
133 #########################################################
134 # System emulator target
135 ifdef CONFIG_SOFTMMU
136 obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
137 obj-y += qtest.o bootdevice.o
138 obj-y += hw/
139 obj-$(CONFIG_KVM) += kvm-all.o
140 obj-y += memory.o cputlb.o
141 obj-y += memory_mapping.o
142 obj-y += dump.o
143 obj-y += migration/ram.o migration/savevm.o
144 LIBS := $(libs_softmmu) $(LIBS)
145
146 # xen support
147 obj-$(CONFIG_XEN) += xen-common.o
148 obj-$(CONFIG_XEN_I386) += xen-hvm.o xen-mapcache.o
149 obj-$(call lnot,$(CONFIG_XEN)) += xen-common-stub.o
150 obj-$(call lnot,$(CONFIG_XEN_I386)) += xen-hvm-stub.o
151
152 # HAX support
153 ifdef CONFIG_WIN32
154 obj-$(CONFIG_HAX) += target-i386/hax-all.o target-i386/hax-windows.o
155 endif
156 ifdef CONFIG_DARWIN
157 obj-$(CONFIG_HAX) += target-i386/hax-all.o target-i386/hax-darwin.o
158 endif
159 obj-$(call lnot,$(CONFIG_HAX)) += hax-stub.o
160
161 # Hardware support
162 ifeq ($(TARGET_NAME), sparc64)
163 obj-y += hw/sparc64/
164 else
165 obj-y += hw/$(TARGET_BASE_ARCH)/
166 endif
167
168 GENERATED_HEADERS += hmp-commands.h hmp-commands-info.h qmp-commands-old.h
169
170 # Makefile for TIZEN-maru
171 ifdef CONFIG_MARU
172 obj-y += tizen/src/
173 endif
174 ##
175
176 endif # CONFIG_SOFTMMU
177
178 # Workaround for http://gcc.gnu.org/PR55489, see configure.
179 %/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS)
180
181 dummy := $(call unnest-vars,,obj-y)
182 all-obj-y := $(obj-y)
183
184 target-obj-y :=
185 block-obj-y :=
186 common-obj-y :=
187
188 include $(SRC_PATH)/Makefile.objs
189 dummy := $(call unnest-vars,,target-obj-y)
190 target-obj-y-save := $(target-obj-y)
191 dummy := $(call unnest-vars,.., \
192                block-obj-y \
193                block-obj-m \
194                crypto-obj-y \
195                crypto-aes-obj-y \
196                qom-obj-y \
197                io-obj-y \
198                common-obj-y \
199                common-obj-m)
200 target-obj-y := $(target-obj-y-save)
201 all-obj-y += $(common-obj-y)
202 all-obj-y += $(target-obj-y)
203 all-obj-y += $(qom-obj-y)
204 all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y)
205 all-obj-$(CONFIG_USER_ONLY) += $(crypto-aes-obj-y)
206 all-obj-$(CONFIG_SOFTMMU) += $(crypto-obj-y)
207 all-obj-$(CONFIG_SOFTMMU) += $(io-obj-y)
208
209 $(QEMU_PROG_BUILD): config-devices.mak
210
211 # build either PROG or PROGW
212 $(QEMU_PROG_BUILD): $(all-obj-y) ../libqemuutil.a ../libqemustub.a
213         $(call LINK, $(filter-out %.mak, $^))
214 ifdef CONFIG_DARWIN
215         $(call quiet-command,Rez -append $(SRC_PATH)/pc-bios/qemu.rsrc -o $@,"  REZ   $(TARGET_DIR)$@")
216         $(call quiet-command,SetFile -a C $@,"  SETFILE $(TARGET_DIR)$@")
217 endif
218
219 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
220         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
221
222 hmp-commands.h: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
223         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
224
225 hmp-commands-info.h: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
226         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
227
228 qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx $(SRC_PATH)/scripts/hxtool
229         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
230
231 clean:
232         rm -f *.a *~ $(PROGS)
233         rm -f $(shell find . -name '*.[od]')
234         rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c
235 ifdef CONFIG_TRACE_SYSTEMTAP
236         rm -f *.stp
237 endif
238
239 install: all
240 ifneq ($(PROGS),)
241         $(call install-prog,$(PROGS),$(DESTDIR)$(bindir))
242 endif
243 ifdef CONFIG_TRACE_SYSTEMTAP
244         $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
245         $(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp"
246         $(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp"
247 endif
248
249 GENERATED_HEADERS += config-target.h
250 Makefile: $(GENERATED_HEADERS)