]>
Commit | Line | Data |
---|---|---|
562593aa AL |
1 | # -*- Mode: makefile -*- |
2 | ||
deed3ccf | 3 | include ../config-host.mak |
1f3d3c8f | 4 | include config-devices.mak |
25be210f | 5 | include config-target.mak |
17759187 | 6 | include $(SRC_PATH)/rules.mak |
0e8c9214 AF |
7 | ifneq ($(HWDIR),) |
8 | include $(HWDIR)/config.mak | |
9 | endif | |
626df76a | 10 | |
fec90ff0 | 11 | $(call set-vpath, $(SRC_PATH)) |
af2be207 JK |
12 | ifdef CONFIG_LINUX |
13 | QEMU_CFLAGS += -I../linux-headers | |
14 | endif | |
fec90ff0 | 15 | QEMU_CFLAGS += -I.. -I$(SRC_PATH)/target-$(TARGET_BASE_ARCH) -DNEED_CPU_H |
40293e58 | 16 | |
2f28d2ff AL |
17 | QEMU_CFLAGS+=-I$(SRC_PATH)/include |
18 | ||
40293e58 FB |
19 | ifdef CONFIG_USER_ONLY |
20 | # user emulator name | |
21 | QEMU_PROG=qemu-$(TARGET_ARCH2) | |
22 | else | |
1e43adfc | 23 | # system emulator name |
0fa5491e SW |
24 | ifneq (,$(findstring -mwindows,$(LIBS))) |
25 | # Terminate program name with a 'w' because the linker builds a windows executable. | |
26 | QEMU_PROGW=qemu-system-$(TARGET_ARCH2)w$(EXESUF) | |
27 | endif # windows executable | |
40293e58 | 28 | QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF) |
a541f297 | 29 | endif |
626df76a | 30 | |
40293e58 | 31 | PROGS=$(QEMU_PROG) |
0fa5491e SW |
32 | ifdef QEMU_PROGW |
33 | PROGS+=$(QEMU_PROGW) | |
34 | endif | |
b8841706 | 35 | STPFILES= |
626df76a | 36 | |
aff447c9 | 37 | ifndef CONFIG_HAIKU |
626df76a | 38 | LIBS+=-lm |
aff447c9 | 39 | endif |
831b7825 | 40 | |
91880d96 JQ |
41 | config-target.h: config-target.h-timestamp |
42 | config-target.h-timestamp: config-target.mak | |
43 | ||
6d8a764e | 44 | ifdef CONFIG_TRACE_SYSTEMTAP |
c276b17d DB |
45 | stap: $(QEMU_PROG).stp |
46 | ||
47 | ifdef CONFIG_USER_ONLY | |
48 | TARGET_TYPE=user | |
49 | else | |
50 | TARGET_TYPE=system | |
51 | endif | |
52 | ||
2174e238 | 53 | $(QEMU_PROG).stp: $(SRC_PATH)/trace-events |
c0424934 | 54 | $(call quiet-command,$(TRACETOOL) \ |
650ab98d LV |
55 | --format=stap \ |
56 | --backend=$(TRACE_BACKEND) \ | |
57 | --binary=$(bindir)/$(QEMU_PROG) \ | |
58 | --target-arch=$(TARGET_ARCH) \ | |
59 | --target-type=$(TARGET_TYPE) \ | |
c0424934 | 60 | < $< > $@," GEN $(QEMU_PROG).stp") |
c276b17d DB |
61 | else |
62 | stap: | |
63 | endif | |
64 | ||
65 | all: $(PROGS) stap | |
91880d96 | 66 | |
c2fb2637 PB |
67 | # Dummy command so that make thinks it has done something |
68 | @true | |
626df76a | 69 | |
40293e58 | 70 | ######################################################### |
626df76a | 71 | # cpu emulator library |
fbe37ef3 | 72 | obj-y = exec.o translate-all.o cpu-exec.o |
9cdc8df3 PB |
73 | obj-y += tcg/tcg.o tcg/optimize.o |
74 | obj-$(CONFIG_TCG_INTERPRETER) += tci.o | |
75 | obj-y += fpu/softfloat.o | |
76 | obj-y += disas.o | |
77 | obj-$(CONFIG_TCI_DIS) += tci-dis.o | |
5e8861a0 | 78 | obj-y += target-$(TARGET_BASE_ARCH)/ |
9cdc8df3 | 79 | obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o |
5e8861a0 | 80 | |
9195b2c2 | 81 | tci-dis.o: QEMU_CFLAGS += -I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/tci |
626df76a | 82 | |
0184e266 | 83 | # HELPER_CFLAGS is used for all the legacy code compiled with static register |
40293e58 | 84 | # variables |
0184e266 | 85 | user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
40293e58 | 86 | |
c81da56e | 87 | # Note: this is a workaround. The real fix is to avoid compiling |
42a623c7 | 88 | # cpu_signal_handler() in user-exec.c. |
7fc5152c | 89 | %/signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
c81da56e | 90 | |
40293e58 FB |
91 | ######################################################### |
92 | # Linux user emulator target | |
93 | ||
94 | ifdef CONFIG_LINUX_USER | |
95 | ||
c3109ba1 | 96 | QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user |
1c872672 | 97 | |
7fc5152c | 98 | obj-y += linux-user/ |
dbaf26b3 | 99 | obj-y += gdbstub.o thunk.o user-exec.o $(oslib-obj-y) |
40293e58 | 100 | |
40293e58 FB |
101 | endif #CONFIG_LINUX_USER |
102 | ||
84778508 BS |
103 | ######################################################### |
104 | # BSD user emulator target | |
105 | ||
106 | ifdef CONFIG_BSD_USER | |
107 | ||
a558ee17 | 108 | QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) |
84778508 | 109 | |
7fc5152c | 110 | obj-y += bsd-user/ |
71ea2e01 | 111 | obj-y += gdbstub.o user-exec.o $(oslib-obj-y) |
84778508 | 112 | |
84778508 BS |
113 | endif #CONFIG_BSD_USER |
114 | ||
40293e58 FB |
115 | ######################################################### |
116 | # System emulator target | |
76dfdd24 | 117 | ifdef CONFIG_SOFTMMU |
c353f261 PB |
118 | CONFIG_NO_PCI = $(if $(subst n,,$(CONFIG_PCI)),n,y) |
119 | CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y) | |
120 | CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y) | |
121 | CONFIG_NO_GET_MEMORY_MAPPING = $(if $(subst n,,$(CONFIG_HAVE_GET_MEMORY_MAPPING)),n,y) | |
122 | CONFIG_NO_CORE_DUMP = $(if $(subst n,,$(CONFIG_HAVE_CORE_DUMP)),n,y) | |
40293e58 | 123 | |
fbe37ef3 | 124 | obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o |
c353f261 | 125 | obj-y += hw/ |
fbe37ef3 | 126 | obj-$(CONFIG_KVM) += kvm-all.o |
98c8573e | 127 | obj-$(CONFIG_NO_KVM) += kvm-stub.o |
0cac1b66 | 128 | obj-y += memory.o savevm.o cputlb.o |
fbe37ef3 PB |
129 | obj-$(CONFIG_HAVE_GET_MEMORY_MAPPING) += memory_mapping.o |
130 | obj-$(CONFIG_HAVE_CORE_DUMP) += dump.o | |
5f86146f PB |
131 | obj-$(CONFIG_NO_GET_MEMORY_MAPPING) += memory_mapping-stub.o |
132 | obj-$(CONFIG_NO_CORE_DUMP) += dump-stub.o | |
40293e58 | 133 | LIBS+=-lz |
4fb240a4 | 134 | |
a558ee17 | 135 | QEMU_CFLAGS += $(VNC_TLS_CFLAGS) |
a558ee17 | 136 | QEMU_CFLAGS += $(VNC_SASL_CFLAGS) |
2f6f5c7a | 137 | QEMU_CFLAGS += $(VNC_JPEG_CFLAGS) |
efe556ad | 138 | QEMU_CFLAGS += $(VNC_PNG_CFLAGS) |
2f9606b3 | 139 | |
3285cf4f | 140 | # xen support |
c353f261 | 141 | obj-$(CONFIG_XEN) += xen-all.o xen-mapcache.o |
3285cf4f AP |
142 | obj-$(CONFIG_NO_XEN) += xen-stub.o |
143 | ||
a541f297 | 144 | # Hardware support |
3475187d | 145 | ifeq ($(TARGET_ARCH), sparc64) |
5e8861a0 | 146 | obj-y += hw/sparc64/ |
3475187d | 147 | else |
5e8861a0 | 148 | obj-y += hw/$(TARGET_BASE_ARCH)/ |
9637443f JQ |
149 | endif |
150 | ||
ad96090a | 151 | main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS) |
5824d651 | 152 | |
4115852b | 153 | GENERATED_HEADERS += hmp-commands.h qmp-commands-old.h |
0e8c9214 | 154 | |
76dfdd24 | 155 | endif # CONFIG_SOFTMMU |
00a67ba1 | 156 | |
99100dc3 PB |
157 | nested-vars += obj-y |
158 | ||
159 | # This resolves all nested paths, so it must come last | |
160 | include $(SRC_PATH)/Makefile.objs | |
161 | ||
162 | all-obj-y = $(obj-y) | |
163 | all-obj-y += $(addprefix ../, $(universal-obj-y)) | |
164 | ||
165 | ifdef CONFIG_SOFTMMU | |
99100dc3 PB |
166 | all-obj-y += $(addprefix ../, $(common-obj-y)) |
167 | all-obj-y += $(addprefix ../libdis/, $(libdis-y)) | |
168 | all-obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y)) | |
169 | all-obj-y += $(addprefix ../, $(trace-obj-y)) | |
99100dc3 PB |
170 | else |
171 | all-obj-y += $(addprefix ../libuser/, $(user-obj-y)) | |
172 | all-obj-y += $(addprefix ../libdis-user/, $(libdis-y)) | |
173 | endif #CONFIG_LINUX_USER | |
7fc5152c | 174 | |
0fa5491e SW |
175 | ifdef QEMU_PROGW |
176 | # The linker builds a windows executable. Make also a console executable. | |
99100dc3 | 177 | $(QEMU_PROGW): $(all-obj-y) |
0fa5491e SW |
178 | $(call LINK,$^) |
179 | $(QEMU_PROG): $(QEMU_PROGW) | |
180 | $(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG)," GEN $(TARGET_DIR)$(QEMU_PROG)") | |
181 | else | |
99100dc3 | 182 | $(QEMU_PROG): $(all-obj-y) |
e03b41d4 | 183 | $(call LINK,$^) |
0fa5491e | 184 | endif |
16394485 | 185 | |
4c3b5a48 BS |
186 | gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh |
187 | $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") | |
56aebc89 | 188 | |
acd0a093 | 189 | hmp-commands.h: $(SRC_PATH)/hmp-commands.hx |
4c3b5a48 | 190 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") |
2313086a | 191 | |
e3193601 | 192 | qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx |
4c3b5a48 | 193 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") |
2313086a | 194 | |
626df76a | 195 | clean: |
b54fa7dd PM |
196 | rm -f *.a *~ $(PROGS) |
197 | rm -f $(shell find . -name '*.[od]') | |
e3193601 | 198 | rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c |
6d8a764e | 199 | ifdef CONFIG_TRACE_SYSTEMTAP |
c276b17d DB |
200 | rm -f *.stp |
201 | endif | |
1e43adfc | 202 | |
5fafdf24 | 203 | install: all |
9b14bb04 | 204 | ifneq ($(PROGS),) |
52ba784d HB |
205 | $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" |
206 | ifneq ($(STRIP),) | |
207 | $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS)) | |
208 | endif | |
9b14bb04 | 209 | endif |
6d8a764e | 210 | ifdef CONFIG_TRACE_SYSTEMTAP |
6aae2a2e EH |
211 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset" |
212 | $(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset" | |
c276b17d | 213 | endif |
626df76a | 214 | |
4115852b PB |
215 | GENERATED_HEADERS += config-target.h |
216 | Makefile: $(GENERATED_HEADERS) | |
217 | ||
2f96c28d | 218 | # Include automatically generated dependency files |
a483bdae | 219 | -include $(wildcard *.d fpu/*.d tcg/*.d) |