]>
Commit | Line | Data |
---|---|---|
1 | # -*- Mode: makefile -*- | |
2 | ||
3 | include ../config-host.mak | |
4 | include config-target.mak | |
5 | include config-devices.mak | |
6 | include $(SRC_PATH)/rules.mak | |
7 | ||
8 | $(call set-vpath, $(SRC_PATH)) | |
9 | ifdef CONFIG_LINUX | |
10 | QEMU_CFLAGS += -I../linux-headers | |
11 | endif | |
12 | QEMU_CFLAGS += -I.. -I$(SRC_PATH)/target-$(TARGET_BASE_ARCH) -DNEED_CPU_H | |
13 | ||
14 | QEMU_CFLAGS+=-I$(SRC_PATH)/include | |
15 | ||
16 | ifdef CONFIG_USER_ONLY | |
17 | # user emulator name | |
18 | QEMU_PROG=qemu-$(TARGET_ARCH2) | |
19 | else | |
20 | # system emulator name | |
21 | ifneq (,$(findstring -mwindows,$(libs_softmmu))) | |
22 | # Terminate program name with a 'w' because the linker builds a windows executable. | |
23 | QEMU_PROGW=qemu-system-$(TARGET_ARCH2)w$(EXESUF) | |
24 | endif # windows executable | |
25 | QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF) | |
26 | endif | |
27 | ||
28 | PROGS=$(QEMU_PROG) | |
29 | ifdef QEMU_PROGW | |
30 | PROGS+=$(QEMU_PROGW) | |
31 | endif | |
32 | STPFILES= | |
33 | ||
34 | config-target.h: config-target.h-timestamp | |
35 | config-target.h-timestamp: config-target.mak | |
36 | ||
37 | ifdef CONFIG_TRACE_SYSTEMTAP | |
38 | stap: $(QEMU_PROG).stp | |
39 | ||
40 | ifdef CONFIG_USER_ONLY | |
41 | TARGET_TYPE=user | |
42 | else | |
43 | TARGET_TYPE=system | |
44 | endif | |
45 | ||
46 | $(QEMU_PROG).stp: $(SRC_PATH)/trace-events | |
47 | $(call quiet-command,$(TRACETOOL) \ | |
48 | --format=stap \ | |
49 | --backend=$(TRACE_BACKEND) \ | |
50 | --binary=$(bindir)/$(QEMU_PROG) \ | |
51 | --target-arch=$(TARGET_ARCH) \ | |
52 | --target-type=$(TARGET_TYPE) \ | |
53 | < $< > $@," GEN $(TARGET_DIR)$(QEMU_PROG).stp") | |
54 | else | |
55 | stap: | |
56 | endif | |
57 | ||
58 | all: $(PROGS) stap | |
59 | ||
60 | # Dummy command so that make thinks it has done something | |
61 | @true | |
62 | ||
63 | CONFIG_NO_PCI = $(if $(subst n,,$(CONFIG_PCI)),n,y) | |
64 | CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y) | |
65 | CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y) | |
66 | CONFIG_NO_GET_MEMORY_MAPPING = $(if $(subst n,,$(CONFIG_HAVE_GET_MEMORY_MAPPING)),n,y) | |
67 | CONFIG_NO_CORE_DUMP = $(if $(subst n,,$(CONFIG_HAVE_CORE_DUMP)),n,y) | |
68 | ||
69 | ######################################################### | |
70 | # cpu emulator library | |
71 | obj-y = exec.o translate-all.o cpu-exec.o | |
72 | obj-y += tcg/tcg.o tcg/optimize.o | |
73 | obj-$(CONFIG_TCG_INTERPRETER) += tci.o | |
74 | obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o | |
75 | obj-y += fpu/softfloat.o | |
76 | obj-y += target-$(TARGET_BASE_ARCH)/ | |
77 | obj-y += disas.o | |
78 | obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o | |
79 | obj-$(CONFIG_NO_KVM) += kvm-stub.o | |
80 | ||
81 | ######################################################### | |
82 | # Linux user emulator target | |
83 | ||
84 | ifdef CONFIG_LINUX_USER | |
85 | ||
86 | QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user | |
87 | ||
88 | obj-y += linux-user/ | |
89 | obj-y += gdbstub.o thunk.o user-exec.o | |
90 | ||
91 | endif #CONFIG_LINUX_USER | |
92 | ||
93 | ######################################################### | |
94 | # BSD user emulator target | |
95 | ||
96 | ifdef CONFIG_BSD_USER | |
97 | ||
98 | QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) | |
99 | ||
100 | obj-y += bsd-user/ | |
101 | obj-y += gdbstub.o user-exec.o | |
102 | ||
103 | endif #CONFIG_BSD_USER | |
104 | ||
105 | ######################################################### | |
106 | # System emulator target | |
107 | ifdef CONFIG_SOFTMMU | |
108 | obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o | |
109 | obj-y += qtest.o | |
110 | obj-y += hw/ | |
111 | obj-$(CONFIG_FDT) += device_tree.o | |
112 | obj-$(CONFIG_KVM) += kvm-all.o | |
113 | obj-y += memory.o savevm.o cputlb.o | |
114 | obj-$(CONFIG_HAVE_GET_MEMORY_MAPPING) += memory_mapping.o | |
115 | obj-$(CONFIG_HAVE_CORE_DUMP) += dump.o | |
116 | obj-$(CONFIG_NO_GET_MEMORY_MAPPING) += memory_mapping-stub.o | |
117 | obj-$(CONFIG_NO_CORE_DUMP) += dump-stub.o | |
118 | LIBS+=$(libs_softmmu) | |
119 | ||
120 | # xen support | |
121 | obj-$(CONFIG_XEN) += xen-all.o xen-mapcache.o | |
122 | obj-$(CONFIG_NO_XEN) += xen-stub.o | |
123 | ||
124 | # Hardware support | |
125 | ifeq ($(TARGET_ARCH), sparc64) | |
126 | obj-y += hw/sparc64/ | |
127 | else | |
128 | obj-y += hw/$(TARGET_BASE_ARCH)/ | |
129 | endif | |
130 | ||
131 | main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS) | |
132 | ||
133 | GENERATED_HEADERS += hmp-commands.h qmp-commands-old.h | |
134 | ||
135 | endif # CONFIG_SOFTMMU | |
136 | ||
137 | # Workaround for http://gcc.gnu.org/PR55489, see configure. | |
138 | %/translate.o: QEMU_CFLAGS += $(TRANSLATE_OPT_CFLAGS) | |
139 | ||
140 | nested-vars += obj-y | |
141 | ||
142 | # This resolves all nested paths, so it must come last | |
143 | include $(SRC_PATH)/Makefile.objs | |
144 | ||
145 | all-obj-y = $(obj-y) | |
146 | all-obj-y += $(addprefix ../, $(common-obj-y)) | |
147 | ||
148 | ifndef CONFIG_HAIKU | |
149 | LIBS+=-lm | |
150 | endif | |
151 | ||
152 | ifdef QEMU_PROGW | |
153 | # The linker builds a windows executable. Make also a console executable. | |
154 | $(QEMU_PROGW): $(all-obj-y) ../libqemuutil.a ../libqemustub.a | |
155 | $(call LINK,$^) | |
156 | $(QEMU_PROG): $(QEMU_PROGW) | |
157 | $(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG)," GEN $(TARGET_DIR)$(QEMU_PROG)") | |
158 | else | |
159 | $(QEMU_PROG): $(all-obj-y) ../libqemuutil.a ../libqemustub.a | |
160 | $(call LINK,$^) | |
161 | endif | |
162 | ||
163 | gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh | |
164 | $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") | |
165 | ||
166 | hmp-commands.h: $(SRC_PATH)/hmp-commands.hx | |
167 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") | |
168 | ||
169 | qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx | |
170 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") | |
171 | ||
172 | clean: | |
173 | rm -f *.a *~ $(PROGS) | |
174 | rm -f $(shell find . -name '*.[od]') | |
175 | rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c | |
176 | ifdef CONFIG_TRACE_SYSTEMTAP | |
177 | rm -f *.stp | |
178 | endif | |
179 | ||
180 | install: all | |
181 | ifneq ($(PROGS),) | |
182 | $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" | |
183 | ifneq ($(STRIP),) | |
184 | $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS)) | |
185 | endif | |
186 | endif | |
187 | ifdef CONFIG_TRACE_SYSTEMTAP | |
188 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset" | |
189 | $(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset" | |
190 | endif | |
191 | ||
192 | GENERATED_HEADERS += config-target.h | |
193 | Makefile: $(GENERATED_HEADERS) |