target-arm: Add support for PMU register PMSELR_EL0
[qemu/ar7.git] / Makefile.target
blob924304c9e6f0a4bac7df5c3ddd4d97dfca751408
1 # -*- Mode: makefile -*-
3 BUILD_DIR?=$(CURDIR)/..
5 include ../config-host.mak
6 include config-target.mak
7 include config-devices.mak
8 include $(SRC_PATH)/rules.mak
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
16 QEMU_CFLAGS+=-I$(SRC_PATH)/include
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
36 PROGS=$(QEMU_PROG) $(QEMU_PROGW)
37 STPFILES=
39 config-target.h: config-target.h-timestamp
40 config-target.h-timestamp: config-target.mak
42 ifdef CONFIG_TRACE_SYSTEMTAP
43 stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp
45 ifdef CONFIG_USER_ONLY
46 TARGET_TYPE=user
47 else
48 TARGET_TYPE=system
49 endif
51 $(QEMU_PROG).stp-installed: $(BUILD_DIR)/trace-events-all
52         $(call quiet-command,$(TRACETOOL) \
53                 --group=all \
54                 --format=stap \
55                 --backends=$(TRACE_BACKENDS) \
56                 --binary=$(bindir)/$(QEMU_PROG) \
57                 --target-name=$(TARGET_NAME) \
58                 --target-type=$(TARGET_TYPE) \
59                 $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp-installed")
61 $(QEMU_PROG).stp: $(BUILD_DIR)/trace-events-all
62         $(call quiet-command,$(TRACETOOL) \
63                 --group=all \
64                 --format=stap \
65                 --backends=$(TRACE_BACKENDS) \
66                 --binary=$(realpath .)/$(QEMU_PROG) \
67                 --target-name=$(TARGET_NAME) \
68                 --target-type=$(TARGET_TYPE) \
69                 $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG).stp")
71 $(QEMU_PROG)-simpletrace.stp: $(BUILD_DIR)/trace-events-all
72         $(call quiet-command,$(TRACETOOL) \
73                 --group=all \
74                 --format=simpletrace-stap \
75                 --backends=$(TRACE_BACKENDS) \
76                 --probe-prefix=qemu.$(TARGET_TYPE).$(TARGET_NAME) \
77                 $< > $@,"GEN","$(TARGET_DIR)$(QEMU_PROG)-simpletrace.stp")
79 else
80 stap:
81 endif
82 .PHONY: stap
84 all: $(PROGS) stap
86 # Dummy command so that make thinks it has done something
87         @true
89 #########################################################
90 # cpu emulator library
91 obj-y = exec.o translate-all.o cpu-exec.o
92 obj-y += translate-common.o
93 obj-y += cpu-exec-common.o
94 obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o
95 obj-$(CONFIG_TCG_INTERPRETER) += tci.o
96 obj-y += tcg/tcg-common.o
97 obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o
98 obj-y += fpu/softfloat.o
99 obj-y += target/$(TARGET_BASE_ARCH)/
100 obj-y += disas.o
101 obj-y += tcg-runtime.o
102 obj-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o
103 obj-$(call lnot,$(CONFIG_HAX)) += hax-stub.o
104 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
106 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decContext.o
107 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decNumber.o
108 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal32.o
109 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal64.o
110 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal128.o
112 #########################################################
113 # Linux user emulator target
115 ifdef CONFIG_LINUX_USER
117 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
118              -I$(SRC_PATH)/linux-user/host/$(ARCH) \
119              -I$(SRC_PATH)/linux-user
121 obj-y += linux-user/
122 obj-y += gdbstub.o thunk.o user-exec.o user-exec-stub.o
124 endif #CONFIG_LINUX_USER
126 #########################################################
127 # BSD user emulator target
129 ifdef CONFIG_BSD_USER
131 QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \
132                          -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR)
134 obj-y += bsd-user/
135 obj-y += gdbstub.o user-exec.o user-exec-stub.o
137 endif #CONFIG_BSD_USER
139 #########################################################
140 # System emulator target
141 ifdef CONFIG_SOFTMMU
142 obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
143 obj-y += qtest.o bootdevice.o
144 obj-y += hw/
145 obj-$(CONFIG_KVM) += kvm-all.o
146 obj-y += memory.o cputlb.o
147 obj-y += memory_mapping.o
148 obj-y += dump.o
149 obj-y += migration/ram.o migration/savevm.o
150 LIBS := $(libs_softmmu) $(LIBS)
152 # xen support
153 obj-$(CONFIG_XEN) += xen-common.o
154 obj-$(CONFIG_XEN_I386) += xen-hvm.o xen-mapcache.o
155 obj-$(call lnot,$(CONFIG_XEN)) += xen-common-stub.o
156 obj-$(call lnot,$(CONFIG_XEN_I386)) += xen-hvm-stub.o
158 # Hardware support
159 ifeq ($(TARGET_NAME), sparc64)
160 obj-y += hw/sparc64/
161 else
162 obj-y += hw/$(TARGET_BASE_ARCH)/
163 endif
165 GENERATED_HEADERS += hmp-commands.h hmp-commands-info.h
167 endif # CONFIG_SOFTMMU
169 # Workaround for http://gcc.gnu.org/PR55489, see configure.
170 %/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS)
172 dummy := $(call unnest-vars,,obj-y)
173 all-obj-y := $(obj-y)
175 target-obj-y :=
176 block-obj-y :=
177 common-obj-y :=
178 chardev-obj-y :=
179 include $(SRC_PATH)/Makefile.objs
180 dummy := $(call unnest-vars,,target-obj-y)
181 target-obj-y-save := $(target-obj-y)
182 dummy := $(call unnest-vars,.., \
183                block-obj-y \
184                block-obj-m \
185                chardev-obj-y \
186                crypto-obj-y \
187                crypto-aes-obj-y \
188                qom-obj-y \
189                io-obj-y \
190                common-obj-y \
191                common-obj-m \
192                trace-obj-y)
193 target-obj-y := $(target-obj-y-save)
194 all-obj-y += $(common-obj-y)
195 all-obj-y += $(target-obj-y)
196 all-obj-y += $(qom-obj-y)
197 all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y) $(chardev-obj-y)
198 all-obj-$(CONFIG_USER_ONLY) += $(crypto-aes-obj-y)
199 all-obj-$(CONFIG_SOFTMMU) += $(crypto-obj-y)
200 all-obj-$(CONFIG_SOFTMMU) += $(io-obj-y)
202 $(QEMU_PROG_BUILD): config-devices.mak
204 COMMON_LDADDS = $(trace-obj-y) ../libqemuutil.a ../libqemustub.a
206 # build either PROG or PROGW
207 $(QEMU_PROG_BUILD): $(all-obj-y) $(COMMON_LDADDS)
208         $(call LINK, $(filter-out %.mak, $^))
209 ifdef CONFIG_DARWIN
210         $(call quiet-command,Rez -append $(SRC_PATH)/pc-bios/qemu.rsrc -o $@,"REZ","$(TARGET_DIR)$@")
211         $(call quiet-command,SetFile -a C $@,"SETFILE","$(TARGET_DIR)$@")
212 endif
214 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
215         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"GEN","$(TARGET_DIR)$@")
217 hmp-commands.h: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
218         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
220 hmp-commands-info.h: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
221         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
223 clean: clean-target
224         rm -f *.a *~ $(PROGS)
225         rm -f $(shell find . -name '*.[od]')
226         rm -f hmp-commands.h gdbstub-xml.c
227 ifdef CONFIG_TRACE_SYSTEMTAP
228         rm -f *.stp
229 endif
231 install: all
232 ifneq ($(PROGS),)
233         $(call install-prog,$(PROGS),$(DESTDIR)$(bindir))
234 endif
235 ifdef CONFIG_TRACE_SYSTEMTAP
236         $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
237         $(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp"
238         $(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp"
239 endif
241 GENERATED_HEADERS += config-target.h
242 Makefile: $(GENERATED_HEADERS)