Merge remote-tracking branch 'qemu/master'
[qemu/ar7.git] / Makefile.target
blob74a9751d2db56c57afe5e2c564f9db8834068300
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
94 .PHONY: stap
96 all: $(PROGS) stap
98 # Dummy command so that make thinks it has done something
99         @true
101 #########################################################
102 # cpu emulator library
103 obj-y = exec.o translate-all.o cpu-exec.o
104 obj-y += translate-common.o
105 obj-y += cpu-exec-common.o
106 obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o
107 obj-$(CONFIG_TCG_INTERPRETER) += tci.o
108 obj-y += tcg/tcg-common.o
109 obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o
110 obj-y += fpu/softfloat.o
111 obj-y += target/$(TARGET_BASE_ARCH)/
112 obj-y += disas.o
113 obj-y += tcg-runtime.o
114 obj-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o
115 obj-$(call lnot,$(CONFIG_HAX)) += hax-stub.o
116 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
118 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decContext.o
119 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decNumber.o
120 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal32.o
121 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal64.o
122 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal128.o
124 #########################################################
125 # Linux user emulator target
127 ifdef CONFIG_LINUX_USER
129 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
130              -I$(SRC_PATH)/linux-user/host/$(ARCH) \
131              -I$(SRC_PATH)/linux-user
133 obj-y += linux-user/
134 obj-y += gdbstub.o thunk.o user-exec.o
136 endif #CONFIG_LINUX_USER
138 #########################################################
139 # BSD user emulator target
141 ifdef CONFIG_BSD_USER
143 QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \
144                          -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR)
146 obj-y += bsd-user/
147 obj-y += gdbstub.o user-exec.o
149 endif #CONFIG_BSD_USER
151 #########################################################
152 # System emulator target
153 ifdef CONFIG_SOFTMMU
154 obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
155 obj-y += qtest.o bootdevice.o
156 obj-y += hw/
157 obj-$(CONFIG_KVM) += kvm-all.o
158 obj-y += memory.o cputlb.o
159 obj-y += memory_mapping.o
160 obj-y += dump.o
161 obj-y += migration/ram.o migration/savevm.o
162 LIBS := $(libs_softmmu) $(LIBS)
164 # xen support
165 obj-$(CONFIG_XEN) += xen-common.o
166 obj-$(CONFIG_XEN_I386) += xen-hvm.o xen-mapcache.o
167 obj-$(call lnot,$(CONFIG_XEN)) += xen-common-stub.o
168 obj-$(call lnot,$(CONFIG_XEN_I386)) += xen-hvm-stub.o
170 # Hardware support
171 ifeq ($(TARGET_NAME), sparc64)
172 obj-y += hw/sparc64/
173 else
174 obj-y += hw/$(TARGET_BASE_ARCH)/
175 endif
177 ifdef QEMU_RUBY
178 $(QEMU_RUBY): $(OBJS) libqemu.a
179         $(CC) -shared $(VL_LDFLAGS) -o $(QEMU_RUBY) $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
180 endif
182 GENERATED_HEADERS += hmp-commands.h hmp-commands-info.h
184 endif # CONFIG_SOFTMMU
186 # Workaround for http://gcc.gnu.org/PR55489, see configure.
187 %/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS)
189 dummy := $(call unnest-vars,,obj-y)
190 all-obj-y := $(obj-y)
192 target-obj-y :=
193 block-obj-y :=
194 common-obj-y :=
195 include $(SRC_PATH)/Makefile.objs
196 dummy := $(call unnest-vars,,target-obj-y)
197 target-obj-y-save := $(target-obj-y)
198 dummy := $(call unnest-vars,.., \
199                block-obj-y \
200                block-obj-m \
201                crypto-obj-y \
202                crypto-aes-obj-y \
203                qom-obj-y \
204                io-obj-y \
205                common-obj-y \
206                common-obj-m)
207 target-obj-y := $(target-obj-y-save)
208 all-obj-y += $(common-obj-y)
209 all-obj-y += $(target-obj-y)
210 all-obj-y += $(qom-obj-y)
211 all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y)
212 all-obj-$(CONFIG_USER_ONLY) += $(crypto-aes-obj-y)
213 all-obj-$(CONFIG_SOFTMMU) += $(crypto-obj-y)
214 all-obj-$(CONFIG_SOFTMMU) += $(io-obj-y)
216 $(QEMU_PROG_BUILD): config-devices.mak
218 # build either PROG or PROGW
219 $(QEMU_PROG_BUILD): $(all-obj-y) ../libqemuutil.a ../libqemustub.a
220         $(call LINK, $(filter-out %.mak, $^))
221 ifdef CONFIG_DARWIN
222         $(call quiet-command,Rez -append $(SRC_PATH)/pc-bios/qemu.rsrc -o $@,"REZ","$(TARGET_DIR)$@")
223         $(call quiet-command,SetFile -a C $@,"SETFILE","$(TARGET_DIR)$@")
224 endif
226 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
227         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"GEN","$(TARGET_DIR)$@")
229 hmp-commands.h: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
230         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
232 hmp-commands-info.h: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
233         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
235 clean: clean-target
236         rm -f *.a *~ $(PROGS)
237         rm -f $(shell find . -name '*.[od]')
238         rm -f hmp-commands.h gdbstub-xml.c
239 ifdef CONFIG_TRACE_SYSTEMTAP
240         rm -f *.stp
241 endif
243 install: all
244 ifneq ($(PROGS),)
245         $(call install-prog,$(PROGS),$(DESTDIR)$(bindir))
246 endif
247 ifdef CONFIG_TRACE_SYSTEMTAP
248         $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
249         $(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp"
250         $(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp"
251 endif
253 GENERATED_HEADERS += config-target.h
254 Makefile: $(GENERATED_HEADERS)