]>
Commit | Line | Data |
---|---|---|
1 | # -*- Mode: makefile -*- | |
2 | ||
3 | include ../config-host.mak | |
4 | include config-target.mak | |
5 | include config-devices.mak | |
6 | include $(SRC_PATH)/rules.mak | |
7 | ||
8 | $(call set-vpath, $(SRC_PATH)) | |
9 | ifdef CONFIG_LINUX | |
10 | QEMU_CFLAGS += -I../linux-headers | |
11 | endif | |
12 | QEMU_CFLAGS += -I.. -I$(SRC_PATH)/target-$(TARGET_BASE_ARCH) -DNEED_CPU_H | |
13 | ||
14 | QEMU_CFLAGS+=-I$(SRC_PATH)/include | |
15 | ||
16 | ifdef CONFIG_USER_ONLY | |
17 | # user emulator name | |
18 | QEMU_PROG=qemu-$(TARGET_NAME) | |
19 | QEMU_PROG_BUILD = $(QEMU_PROG) | |
20 | else | |
21 | # system emulator name | |
22 | QEMU_PROG=qemu-system-$(TARGET_NAME)$(EXESUF) | |
23 | ifneq (,$(findstring -mwindows,$(libs_softmmu))) | |
24 | # Terminate program name with a 'w' because the linker builds a windows executable. | |
25 | QEMU_PROGW=qemu-system-$(TARGET_NAME)w$(EXESUF) | |
26 | $(QEMU_PROG): $(QEMU_PROGW) | |
27 | $(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG)," GEN $(TARGET_DIR)$(QEMU_PROG)") | |
28 | QEMU_PROG_BUILD = $(QEMU_PROGW) | |
29 | else | |
30 | QEMU_PROG_BUILD = $(QEMU_PROG) | |
31 | endif | |
32 | endif | |
33 | ||
34 | PROGS=$(QEMU_PROG) $(QEMU_PROGW) | |
35 | STPFILES= | |
36 | ||
37 | config-target.h: config-target.h-timestamp | |
38 | config-target.h-timestamp: config-target.mak | |
39 | ||
40 | ifdef CONFIG_TRACE_SYSTEMTAP | |
41 | stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp | |
42 | ||
43 | ifdef CONFIG_USER_ONLY | |
44 | TARGET_TYPE=user | |
45 | else | |
46 | TARGET_TYPE=system | |
47 | endif | |
48 | ||
49 | $(QEMU_PROG).stp-installed: $(SRC_PATH)/trace-events | |
50 | $(call quiet-command,$(TRACETOOL) \ | |
51 | --format=stap \ | |
52 | --backends=$(TRACE_BACKENDS) \ | |
53 | --binary=$(bindir)/$(QEMU_PROG) \ | |
54 | --target-name=$(TARGET_NAME) \ | |
55 | --target-type=$(TARGET_TYPE) \ | |
56 | < $< > $@," GEN $(TARGET_DIR)$(QEMU_PROG).stp-installed") | |
57 | ||
58 | $(QEMU_PROG).stp: $(SRC_PATH)/trace-events | |
59 | $(call quiet-command,$(TRACETOOL) \ | |
60 | --format=stap \ | |
61 | --backends=$(TRACE_BACKENDS) \ | |
62 | --binary=$(realpath .)/$(QEMU_PROG) \ | |
63 | --target-name=$(TARGET_NAME) \ | |
64 | --target-type=$(TARGET_TYPE) \ | |
65 | < $< > $@," GEN $(TARGET_DIR)$(QEMU_PROG).stp") | |
66 | ||
67 | $(QEMU_PROG)-simpletrace.stp: $(SRC_PATH)/trace-events | |
68 | $(call quiet-command,$(TRACETOOL) \ | |
69 | --format=simpletrace-stap \ | |
70 | --backends=$(TRACE_BACKENDS) \ | |
71 | --probe-prefix=qemu.$(TARGET_TYPE).$(TARGET_NAME) \ | |
72 | < $< > $@," GEN $(TARGET_DIR)$(QEMU_PROG)-simpletrace.stp") | |
73 | ||
74 | else | |
75 | stap: | |
76 | endif | |
77 | ||
78 | all: $(PROGS) stap | |
79 | ||
80 | # Dummy command so that make thinks it has done something | |
81 | @true | |
82 | ||
83 | ######################################################### | |
84 | # cpu emulator library | |
85 | obj-y = exec.o translate-all.o cpu-exec.o | |
86 | obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o | |
87 | obj-$(CONFIG_TCG_INTERPRETER) += tci.o | |
88 | obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o | |
89 | obj-y += fpu/softfloat.o | |
90 | obj-y += target-$(TARGET_BASE_ARCH)/ | |
91 | obj-y += disas.o | |
92 | obj-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o | |
93 | obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o | |
94 | ||
95 | obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decContext.o | |
96 | obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decNumber.o | |
97 | obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal32.o | |
98 | obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal64.o | |
99 | obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal128.o | |
100 | ||
101 | ######################################################### | |
102 | # Linux user emulator target | |
103 | ||
104 | ifdef CONFIG_LINUX_USER | |
105 | ||
106 | QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user | |
107 | ||
108 | obj-y += linux-user/ | |
109 | obj-y += gdbstub.o thunk.o user-exec.o | |
110 | ||
111 | endif #CONFIG_LINUX_USER | |
112 | ||
113 | ######################################################### | |
114 | # BSD user emulator target | |
115 | ||
116 | ifdef CONFIG_BSD_USER | |
117 | ||
118 | QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \ | |
119 | -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR) | |
120 | ||
121 | obj-y += bsd-user/ | |
122 | obj-y += gdbstub.o user-exec.o | |
123 | ||
124 | endif #CONFIG_BSD_USER | |
125 | ||
126 | ######################################################### | |
127 | # System emulator target | |
128 | ifdef CONFIG_SOFTMMU | |
129 | obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o | |
130 | obj-y += qtest.o bootdevice.o | |
131 | obj-y += hw/ | |
132 | obj-$(CONFIG_FDT) += device_tree.o | |
133 | obj-$(CONFIG_KVM) += kvm-all.o | |
134 | obj-y += memory.o savevm.o cputlb.o | |
135 | obj-y += memory_mapping.o | |
136 | obj-y += dump.o | |
137 | LIBS := $(libs_softmmu) $(LIBS) | |
138 | ||
139 | # xen support | |
140 | obj-$(CONFIG_XEN) += xen-common.o | |
141 | obj-$(CONFIG_XEN_I386) += xen-hvm.o xen-mapcache.o | |
142 | obj-$(call lnot,$(CONFIG_XEN)) += xen-common-stub.o | |
143 | obj-$(call lnot,$(CONFIG_XEN_I386)) += xen-hvm-stub.o | |
144 | ||
145 | # Hardware support | |
146 | ifeq ($(TARGET_NAME), sparc64) | |
147 | obj-y += hw/sparc64/ | |
148 | else | |
149 | obj-y += hw/$(TARGET_BASE_ARCH)/ | |
150 | endif | |
151 | ||
152 | GENERATED_HEADERS += hmp-commands.h qmp-commands-old.h | |
153 | ||
154 | endif # CONFIG_SOFTMMU | |
155 | ||
156 | # Workaround for http://gcc.gnu.org/PR55489, see configure. | |
157 | %/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS) | |
158 | ||
159 | dummy := $(call unnest-vars,,obj-y) | |
160 | all-obj-y := $(obj-y) | |
161 | ||
162 | target-obj-y := | |
163 | block-obj-y := | |
164 | common-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 | common-obj-y \ | |
172 | common-obj-m) | |
173 | target-obj-y := $(target-obj-y-save) | |
174 | all-obj-y += $(common-obj-y) | |
175 | all-obj-y += $(target-obj-y) | |
176 | all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y) | |
177 | ||
178 | $(QEMU_PROG_BUILD): config-devices.mak | |
179 | ||
180 | # build either PROG or PROGW | |
181 | $(QEMU_PROG_BUILD): $(all-obj-y) ../libqemuutil.a ../libqemustub.a | |
182 | $(call LINK, $(filter-out %.mak, $^)) | |
183 | ||
184 | gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh | |
185 | $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") | |
186 | ||
187 | hmp-commands.h: $(SRC_PATH)/hmp-commands.hx | |
188 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") | |
189 | ||
190 | qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx | |
191 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") | |
192 | ||
193 | clean: | |
194 | rm -f *.a *~ $(PROGS) | |
195 | rm -f $(shell find . -name '*.[od]') | |
196 | rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c | |
197 | ifdef CONFIG_TRACE_SYSTEMTAP | |
198 | rm -f *.stp | |
199 | endif | |
200 | ||
201 | install: all | |
202 | ifneq ($(PROGS),) | |
203 | $(call install-prog,$(PROGS),$(DESTDIR)$(bindir)) | |
204 | endif | |
205 | ifdef CONFIG_TRACE_SYSTEMTAP | |
206 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset" | |
207 | $(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp" | |
208 | $(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp" | |
209 | endif | |
210 | ||
211 | GENERATED_HEADERS += config-target.h | |
212 | Makefile: $(GENERATED_HEADERS) |