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