wxx: Update NSIS configuration
[qemu/ar7.git] / Makefile.target
bloba5d6e470823ff19666497e1aa6f8d415acc74bc8
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-$(call notempty,$(TARGET_XML_FILES)) += gdbstub-xml.o
113 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
115 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decContext.o
116 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/decNumber.o
117 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal32.o
118 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal64.o
119 obj-$(CONFIG_LIBDECNUMBER) += libdecnumber/dpd/decimal128.o
121 #########################################################
122 # Linux user emulator target
124 ifdef CONFIG_LINUX_USER
126 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) \
127              -I$(SRC_PATH)/linux-user/host/$(ARCH) \
128              -I$(SRC_PATH)/linux-user
130 obj-y += linux-user/
131 obj-y += gdbstub.o thunk.o user-exec.o
133 endif #CONFIG_LINUX_USER
135 #########################################################
136 # BSD user emulator target
138 ifdef CONFIG_BSD_USER
140 QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ABI_DIR) \
141                          -I$(SRC_PATH)/bsd-user/$(HOST_VARIANT_DIR)
143 obj-y += bsd-user/
144 obj-y += gdbstub.o user-exec.o
146 endif #CONFIG_BSD_USER
148 #########################################################
149 # System emulator target
150 ifdef CONFIG_SOFTMMU
151 obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
152 obj-y += qtest.o bootdevice.o
153 obj-y += hw/
154 obj-$(CONFIG_KVM) += kvm-all.o
155 obj-y += memory.o cputlb.o
156 obj-y += memory_mapping.o
157 obj-y += dump.o
158 obj-y += migration/ram.o migration/savevm.o
159 LIBS := $(libs_softmmu) $(LIBS)
161 # xen support
162 obj-$(CONFIG_XEN) += xen-common.o
163 obj-$(CONFIG_XEN_I386) += xen-hvm.o xen-mapcache.o
164 obj-$(call lnot,$(CONFIG_XEN)) += xen-common-stub.o
165 obj-$(call lnot,$(CONFIG_XEN_I386)) += xen-hvm-stub.o
167 # Hardware support
168 ifeq ($(TARGET_NAME), sparc64)
169 obj-y += hw/sparc64/
170 else
171 obj-y += hw/$(TARGET_BASE_ARCH)/
172 endif
174 ifdef QEMU_RUBY
175 $(QEMU_RUBY): $(OBJS) libqemu.a
176         $(CC) -shared $(VL_LDFLAGS) -o $(QEMU_RUBY) $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
177 endif
179 GENERATED_HEADERS += hmp-commands.h hmp-commands-info.h
181 endif # CONFIG_SOFTMMU
183 # Workaround for http://gcc.gnu.org/PR55489, see configure.
184 %/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS)
186 dummy := $(call unnest-vars,,obj-y)
187 all-obj-y := $(obj-y)
189 target-obj-y :=
190 block-obj-y :=
191 common-obj-y :=
192 include $(SRC_PATH)/Makefile.objs
193 dummy := $(call unnest-vars,,target-obj-y)
194 target-obj-y-save := $(target-obj-y)
195 dummy := $(call unnest-vars,.., \
196                block-obj-y \
197                block-obj-m \
198                crypto-obj-y \
199                crypto-aes-obj-y \
200                qom-obj-y \
201                io-obj-y \
202                common-obj-y \
203                common-obj-m)
204 target-obj-y := $(target-obj-y-save)
205 all-obj-y += $(common-obj-y)
206 all-obj-y += $(target-obj-y)
207 all-obj-y += $(qom-obj-y)
208 all-obj-$(CONFIG_SOFTMMU) += $(block-obj-y)
209 all-obj-$(CONFIG_USER_ONLY) += $(crypto-aes-obj-y)
210 all-obj-$(CONFIG_SOFTMMU) += $(crypto-obj-y)
211 all-obj-$(CONFIG_SOFTMMU) += $(io-obj-y)
213 $(QEMU_PROG_BUILD): config-devices.mak
215 # build either PROG or PROGW
216 $(QEMU_PROG_BUILD): $(all-obj-y) ../libqemuutil.a ../libqemustub.a
217         $(call LINK, $(filter-out %.mak, $^))
218 ifdef CONFIG_DARWIN
219         $(call quiet-command,Rez -append $(SRC_PATH)/pc-bios/qemu.rsrc -o $@,"REZ","$(TARGET_DIR)$@")
220         $(call quiet-command,SetFile -a C $@,"SETFILE","$(TARGET_DIR)$@")
221 endif
223 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
224         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"GEN","$(TARGET_DIR)$@")
226 hmp-commands.h: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
227         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
229 hmp-commands-info.h: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
230         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$(TARGET_DIR)$@")
232 clean: clean-target
233         rm -f *.a *~ $(PROGS)
234         rm -f $(shell find . -name '*.[od]')
235         rm -f hmp-commands.h gdbstub-xml.c
236 ifdef CONFIG_TRACE_SYSTEMTAP
237         rm -f *.stp
238 endif
240 install: all
241 ifneq ($(PROGS),)
242         $(call install-prog,$(PROGS),$(DESTDIR)$(bindir))
243 endif
244 ifdef CONFIG_TRACE_SYSTEMTAP
245         $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
246         $(INSTALL_DATA) $(QEMU_PROG).stp-installed "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG).stp"
247         $(INSTALL_DATA) $(QEMU_PROG)-simpletrace.stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset/$(QEMU_PROG)-simpletrace.stp"
248 endif
250 GENERATED_HEADERS += config-target.h
251 Makefile: $(GENERATED_HEADERS)