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