Statistics
| Branch: | Revision:

root / Makefile.target @ f878d2d2

History | View | Annotate | Download (9.9 kB)

1 562593aa Anthony Liguori
# -*- Mode: makefile -*-
2 562593aa Anthony Liguori
3 626df76a bellard
include config.mak
4 17759187 aliguori
include $(SRC_PATH)/rules.mak
5 626df76a bellard
6 0b0babc6 bellard
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
7 4fb240a4 bellard
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
8 6c90361a Juan Quintela
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
9 40293e58 bellard
10 40293e58 bellard
ifdef CONFIG_USER_ONLY
11 40293e58 bellard
# user emulator name
12 40293e58 bellard
QEMU_PROG=qemu-$(TARGET_ARCH2)
13 40293e58 bellard
else
14 1e43adfc bellard
# system emulator name
15 a541f297 bellard
ifeq ($(TARGET_ARCH), i386)
16 40293e58 bellard
QEMU_PROG=qemu$(EXESUF)
17 0db63474 bellard
else
18 40293e58 bellard
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
19 a541f297 bellard
endif
20 de5eaa64 bellard
endif
21 626df76a bellard
22 40293e58 bellard
PROGS=$(QEMU_PROG)
23 626df76a bellard
24 d19076fa malc
ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc)
25 ed69c30d Juan Quintela
translate.o: QEMU_CFLAGS += $(call cc-option, $(QEMU_CFLAGS), -fno-unit-at-a-time,)
26 d19076fa malc
endif
27 d19076fa malc
28 626df76a bellard
LIBS+=-lm
29 831b7825 ths
30 b248a85d Juan Quintela
kvm.o kvm-all.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
31 7ba1e619 aliguori
32 40293e58 bellard
all: $(PROGS)
33 c2fb2637 Paul Brook
# Dummy command so that make thinks it has done something
34 c2fb2637 Paul Brook
	@true
35 626df76a bellard
36 40293e58 bellard
#########################################################
37 626df76a bellard
# cpu emulator library
38 facd2857 Blue Swirl
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
39 943e0a31 Juan Quintela
libobj-$(CONFIG_KQEMU) += kqemu.o
40 c9e0df73 Juan Quintela
libobj-y += tcg/tcg.o tcg/tcg-runtime.o
41 d6b38939 Juan Quintela
libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
42 d6b38939 Juan Quintela
libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
43 c9e0df73 Juan Quintela
libobj-y += op_helper.o helper.o
44 471857dd Juan Quintela
libobj-$(CONFIG_NEED_MMU) += mmu.o
45 e18ea868 Juan Quintela
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
46 e18ea868 Juan Quintela
libobj-$(TARGET_ALPHA) += alpha_palcode.o
47 cf6c1b16 j_mayer
48 626df76a bellard
# NOTE: the disassembler code is only needed for debugging
49 c9e0df73 Juan Quintela
libobj-y += disas.o
50 64656024 Juan Quintela
libobj-$(CONFIG_ALPHA_DIS) += alpha-dis.o
51 64656024 Juan Quintela
libobj-$(CONFIG_ARM_DIS) += arm-dis.o
52 64656024 Juan Quintela
libobj-$(CONFIG_CRIS_DIS) += cris-dis.o
53 64656024 Juan Quintela
libobj-$(CONFIG_HPPA_DIS) += hppa-dis.o
54 64656024 Juan Quintela
libobj-$(CONFIG_I386_DIS) += i386-dis.o
55 64656024 Juan Quintela
libobj-$(CONFIG_M68K_DIS) += m68k-dis.o
56 64656024 Juan Quintela
libobj-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
57 64656024 Juan Quintela
libobj-$(CONFIG_MIPS_DIS) += mips-dis.o
58 64656024 Juan Quintela
libobj-$(CONFIG_PPC_DIS) += ppc-dis.o
59 64656024 Juan Quintela
libobj-$(CONFIG_S390_DIS) += s390-dis.o
60 64656024 Juan Quintela
libobj-$(CONFIG_SH4_DIS) += sh4-dis.o
61 64656024 Juan Quintela
libobj-$(CONFIG_SPARC_DIS) += sparc-dis.o
62 626df76a bellard
63 40293e58 bellard
# libqemu
64 40293e58 bellard
65 c9e0df73 Juan Quintela
libqemu.a: $(libobj-y)
66 40293e58 bellard
67 86e840ee aurel32
translate.o: translate.c cpu.h
68 40293e58 bellard
69 86e840ee aurel32
translate-all.o: translate-all.c cpu.h
70 40293e58 bellard
71 86e840ee aurel32
tcg/tcg.o: cpu.h
72 40293e58 bellard
73 40293e58 bellard
# HELPER_CFLAGS is used for all the code compiled with static register
74 40293e58 bellard
# variables
75 864de24a Juan Quintela
op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
76 40293e58 bellard
77 c81da56e Juan Quintela
# Note: this is a workaround. The real fix is to avoid compiling
78 c81da56e Juan Quintela
# cpu_signal_handler() in cpu-exec.c.
79 c81da56e Juan Quintela
signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
80 c81da56e Juan Quintela
81 40293e58 bellard
#########################################################
82 40293e58 bellard
# Linux user emulator target
83 40293e58 bellard
84 40293e58 bellard
ifdef CONFIG_LINUX_USER
85 40293e58 bellard
86 3ebdd119 aurel32
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
87 a558ee17 Juan Quintela
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
88 40293e58 bellard
89 37022086 Blue Swirl
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
90 6af5a252 Blue Swirl
      elfload.o linuxload.o uaccess.o gdbstub.o gdbstub-xml.o
91 5ba65319 Blue Swirl
92 943e0a31 Juan Quintela
obj-$(TARGET_HAS_BFLT) += flatload.o
93 943e0a31 Juan Quintela
obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
94 40293e58 bellard
95 e18ea868 Juan Quintela
obj-$(TARGET_I386) += vm86.o
96 1c872672 Juan Quintela
97 e27b27b3 Blue Swirl
obj-i386-y += ioport-user.o
98 5ba65319 Blue Swirl
99 ed69c30d Juan Quintela
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
100 9c1dd99b Juan Quintela
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
101 1c872672 Juan Quintela
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
102 1c872672 Juan Quintela
obj-arm-y += arm-semi.o
103 1c872672 Juan Quintela
104 1c872672 Juan Quintela
obj-m68k-y += m68k-sim.o m68k-semi.o
105 40293e58 bellard
106 16394485 Juan Quintela
ARLIBS=../libqemu_user.a libqemu.a
107 40293e58 bellard
endif #CONFIG_LINUX_USER
108 40293e58 bellard
109 40293e58 bellard
#########################################################
110 40293e58 bellard
# Darwin user emulator target
111 40293e58 bellard
112 40293e58 bellard
ifdef CONFIG_DARWIN_USER
113 40293e58 bellard
114 40293e58 bellard
VPATH+=:$(SRC_PATH)/darwin-user
115 a558ee17 Juan Quintela
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
116 40293e58 bellard
117 40293e58 bellard
# Leave some space for the regular program loading zone
118 40293e58 bellard
LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
119 40293e58 bellard
120 40293e58 bellard
LIBS+=-lmx
121 40293e58 bellard
122 a8e492c0 Juan Quintela
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
123 5ba65319 Blue Swirl
        gdbstub.o gdbstub-xml.o
124 5ba65319 Blue Swirl
125 e27b27b3 Blue Swirl
obj-i386-y += ioport-user.o
126 40293e58 bellard
127 16394485 Juan Quintela
ARLIBS=libqemu.a
128 40293e58 bellard
129 40293e58 bellard
endif #CONFIG_DARWIN_USER
130 40293e58 bellard
131 40293e58 bellard
#########################################################
132 84778508 blueswir1
# BSD user emulator target
133 84778508 blueswir1
134 84778508 blueswir1
ifdef CONFIG_BSD_USER
135 84778508 blueswir1
136 84778508 blueswir1
VPATH+=:$(SRC_PATH)/bsd-user
137 a558ee17 Juan Quintela
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
138 84778508 blueswir1
139 37022086 Blue Swirl
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
140 5ba65319 Blue Swirl
        gdbstub.o gdbstub-xml.o uaccess.o
141 5ba65319 Blue Swirl
142 e27b27b3 Blue Swirl
obj-i386-y += ioport-user.o
143 84778508 blueswir1
144 16394485 Juan Quintela
ARLIBS=libqemu.a ../libqemu_user.a
145 84778508 blueswir1
146 84778508 blueswir1
endif #CONFIG_BSD_USER
147 84778508 blueswir1
148 84778508 blueswir1
#########################################################
149 40293e58 bellard
# System emulator target
150 76dfdd24 Juan Quintela
ifdef CONFIG_SOFTMMU
151 40293e58 bellard
152 a8e492c0 Juan Quintela
obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \
153 7282a033 Gerd Hoffmann
        gdbstub.o gdbstub-xml.o msix.o ioport.o qemu-config.o
154 1fd31ad7 aliguori
# virtio has to be here due to weird dependency between PCI and virtio-net.
155 1fd31ad7 aliguori
# need to fix this properly
156 a8e492c0 Juan Quintela
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o
157 a8e492c0 Juan Quintela
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
158 a3392f9b aliguori
159 40293e58 bellard
LIBS+=-lz
160 4fb240a4 bellard
161 b6271b48 Juan Quintela
sound-obj-y =
162 b6271b48 Juan Quintela
sound-obj-$(CONFIG_SB16) += sb16.o
163 b6271b48 Juan Quintela
sound-obj-$(CONFIG_ES1370) += es1370.o
164 b6271b48 Juan Quintela
sound-obj-$(CONFIG_AC97) += ac97.o
165 b6271b48 Juan Quintela
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
166 b6271b48 Juan Quintela
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
167 57a943c4 malc
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
168 b6271b48 Juan Quintela
169 ed69c30d Juan Quintela
adlib.o fmopl.o: QEMU_CFLAGS += -DBUILD_Y8950=0
170 85571bc7 bellard
171 a558ee17 Juan Quintela
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
172 a558ee17 Juan Quintela
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
173 2f9606b3 aliguori
174 e37630ca aliguori
# xen backend driver support
175 943e0a31 Juan Quintela
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
176 e37630ca aliguori
177 a594cfbf bellard
# USB layer
178 a8e492c0 Juan Quintela
obj-y += usb-ohci.o
179 a594cfbf bellard
180 a41b2ff2 pbrook
# PCI network cards
181 a8e492c0 Juan Quintela
obj-y += eepro100.o
182 a8e492c0 Juan Quintela
obj-y += ne2000.o
183 a8e492c0 Juan Quintela
obj-y += pcnet.o
184 a8e492c0 Juan Quintela
obj-y += rtl8139.o
185 a8e492c0 Juan Quintela
obj-y += e1000.o
186 a41b2ff2 pbrook
187 9dd986cc Richard W.M. Jones
# Generic watchdog support and some watchdog devices
188 a8e492c0 Juan Quintela
obj-y += wdt_ib700.o wdt_i6300esb.o
189 9dd986cc Richard W.M. Jones
190 a541f297 bellard
# Hardware support
191 f915a115 Gerd Hoffmann
obj-i386-y = ide.o pckbd.o vga.o $(sound-obj-y) dma.o isa-bus.o
192 9637443f Juan Quintela
obj-i386-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
193 9637443f Juan Quintela
obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
194 9637443f Juan Quintela
obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
195 9637443f Juan Quintela
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o
196 9637443f Juan Quintela
197 3cbee15b j_mayer
# shared objects
198 f915a115 Gerd Hoffmann
obj-ppc-y = ppc.o ide.o vga.o $(sound-obj-y) dma.o isa-bus.o openpic.o
199 3cbee15b j_mayer
# PREP target
200 9637443f Juan Quintela
obj-ppc-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
201 9637443f Juan Quintela
obj-ppc-y += prep_pci.o ppc_prep.o
202 3cbee15b j_mayer
# Mac shared devices
203 9637443f Juan Quintela
obj-ppc-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
204 3cbee15b j_mayer
# OldWorld PowerMac
205 9637443f Juan Quintela
obj-ppc-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
206 3cbee15b j_mayer
# NewWorld PowerMac
207 9637443f Juan Quintela
obj-ppc-y += unin_pci.o ppc_newworld.o
208 3cbee15b j_mayer
# PowerPC 4xx boards
209 9637443f Juan Quintela
obj-ppc-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
210 9637443f Juan Quintela
obj-ppc-y += ppc440.o ppc440_bamboo.o
211 74c62ba8 aurel32
# PowerPC E500 boards
212 9637443f Juan Quintela
obj-ppc-y += ppce500_pci.o ppce500_mpc8544ds.o
213 9637443f Juan Quintela
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
214 3f0855b1 Juan Quintela
obj-ppc-$(CONFIG_FDT) += device_tree.o
215 9637443f Juan Quintela
216 9637443f Juan Quintela
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
217 9637443f Juan Quintela
obj-mips-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
218 9637443f Juan Quintela
obj-mips-y += g364fb.o jazz_led.o dp8393x.o
219 9637443f Juan Quintela
obj-mips-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
220 f915a115 Gerd Hoffmann
obj-mips-y += piix_pci.o parallel.o cirrus_vga.o isa-bus.o pcspk.o $(sound-obj-y)
221 9637443f Juan Quintela
obj-mips-y += mipsnet.o
222 9637443f Juan Quintela
obj-mips-y += pflash_cfi01.o
223 9637443f Juan Quintela
obj-mips-y += vmware_vga.o
224 9637443f Juan Quintela
225 9637443f Juan Quintela
obj-microblaze-y = petalogix_s3adsp1800_mmu.o
226 9637443f Juan Quintela
227 9637443f Juan Quintela
obj-microblaze-y += microblaze_pic_cpu.o
228 9637443f Juan Quintela
obj-microblaze-y += xilinx_intc.o
229 9637443f Juan Quintela
obj-microblaze-y += xilinx_timer.o
230 9637443f Juan Quintela
obj-microblaze-y += xilinx_uartlite.o
231 9637443f Juan Quintela
obj-microblaze-y += xilinx_ethlite.o
232 9637443f Juan Quintela
233 9637443f Juan Quintela
obj-microblaze-y += pflash_cfi02.o
234 72b675ca Edgar E. Iglesias
235 3f0855b1 Juan Quintela
obj-microblaze-$(CONFIG_FDT) += device_tree.o
236 9637443f Juan Quintela
237 10c144e2 edgar_igl
# Boards
238 9637443f Juan Quintela
obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o
239 10c144e2 edgar_igl
240 10c144e2 edgar_igl
# IO blocks
241 9637443f Juan Quintela
obj-cris-y += etraxfs_dma.o
242 9637443f Juan Quintela
obj-cris-y += etraxfs_pic.o
243 9637443f Juan Quintela
obj-cris-y += etraxfs_eth.o
244 9637443f Juan Quintela
obj-cris-y += etraxfs_timer.o
245 9637443f Juan Quintela
obj-cris-y += etraxfs_ser.o
246 9637443f Juan Quintela
247 9637443f Juan Quintela
obj-cris-y += pflash_cfi02.o
248 e62b5b13 edgar_igl
249 3475187d bellard
ifeq ($(TARGET_ARCH), sparc64)
250 f915a115 Gerd Hoffmann
obj-sparc-y = sun4u.o ide.o isa-bus.o pckbd.o vga.o apb_pci.o
251 9637443f Juan Quintela
obj-sparc-y += fdc.o mc146818rtc.o serial.o
252 9637443f Juan Quintela
obj-sparc-y += cirrus_vga.o parallel.o
253 3475187d bellard
else
254 9637443f Juan Quintela
obj-sparc-y = sun4m.o tcx.o iommu.o slavio_intctl.o
255 f915a115 Gerd Hoffmann
obj-sparc-y += slavio_timer.o slavio_misc.o fdc.o isa-bus.o sparc32_dma.o
256 9637443f Juan Quintela
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
257 9637443f Juan Quintela
endif
258 9637443f Juan Quintela
259 9637443f Juan Quintela
obj-arm-y = integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
260 9637443f Juan Quintela
obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
261 9637443f Juan Quintela
obj-arm-y += versatile_pci.o
262 9637443f Juan Quintela
obj-arm-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
263 9637443f Juan Quintela
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
264 9637443f Juan Quintela
obj-arm-y += pl061.o
265 9637443f Juan Quintela
obj-arm-y += arm-semi.o
266 9637443f Juan Quintela
obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
267 9637443f Juan Quintela
obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
268 9637443f Juan Quintela
obj-arm-y += pflash_cfi01.o gumstix.o
269 9637443f Juan Quintela
obj-arm-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o
270 9637443f Juan Quintela
obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
271 9637443f Juan Quintela
obj-arm-y += omap2.o omap_dss.o soc_dma.o
272 9637443f Juan Quintela
obj-arm-y += omap_sx1.o palm.o tsc210x.o
273 9637443f Juan Quintela
obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
274 9637443f Juan Quintela
obj-arm-y += mst_fpga.o mainstone.o
275 9637443f Juan Quintela
obj-arm-y += musicpal.o pflash_cfi02.o
276 9637443f Juan Quintela
obj-arm-y += framebuffer.o
277 9637443f Juan Quintela
obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
278 9637443f Juan Quintela
obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
279 9637443f Juan Quintela
obj-arm-y += syborg_virtio.o
280 9637443f Juan Quintela
281 9637443f Juan Quintela
obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
282 9637443f Juan Quintela
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
283 9637443f Juan Quintela
obj-sh4-y += ide.o
284 9637443f Juan Quintela
285 9637443f Juan Quintela
obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
286 9637443f Juan Quintela
obj-m68k-y += m68k-semi.o dummy_m68k.o
287 9637443f Juan Quintela
288 f622d8a3 Juan Quintela
main.o vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
289 6e1b3e4d bellard
290 a558ee17 Juan Quintela
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
291 537fe2d6 Anthony Liguori
292 5824d651 blueswir1
vl.o: qemu-options.h
293 5824d651 blueswir1
294 2313086a Blue Swirl
monitor.o: qemu-monitor.h
295 2313086a Blue Swirl
296 16394485 Juan Quintela
ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
297 626df76a bellard
298 76dfdd24 Juan Quintela
endif # CONFIG_SOFTMMU
299 00a67ba1 bellard
300 16394485 Juan Quintela
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) $(ARLIBS)
301 16394485 Juan Quintela
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
302 16394485 Juan Quintela
303 16394485 Juan Quintela
304 56aebc89 pbrook
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
305 56aebc89 pbrook
ifeq ($(TARGET_XML_FILES),)
306 1aef4c57 aurel32
	$(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
307 56aebc89 pbrook
else
308 1aef4c57 aurel32
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
309 56aebc89 pbrook
endif
310 56aebc89 pbrook
311 5824d651 blueswir1
qemu-options.h: $(SRC_PATH)/qemu-options.hx
312 0d00e563 aliguori
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
313 5824d651 blueswir1
314 2313086a Blue Swirl
qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
315 2313086a Blue Swirl
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
316 2313086a Blue Swirl
317 626df76a bellard
clean:
318 2313086a Blue Swirl
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
319 57fec1fe bellard
	rm -f *.d */*.d tcg/*.o
320 2313086a Blue Swirl
	rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
321 1e43adfc bellard
322 5fafdf24 ths
install: all
323 9b14bb04 bellard
ifneq ($(PROGS),)
324 1625af87 aliguori
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
325 9b14bb04 bellard
endif
326 626df76a bellard
327 2f96c28d j_mayer
# Include automatically generated dependency files
328 2f96c28d j_mayer
-include $(wildcard *.d */*.d)