blob: 3e1fcaf4b786a1218d15dbb76da6c6c0e9d0ea78 [file] [log] [blame]
Blue Swirl4d904532010-03-21 08:28:47 +00001# Makefile for disassemblers.
2
3include ../config-host.mak
4include config.mak
5include $(SRC_PATH)/rules.mak
6
7.PHONY: all
8
9$(call set-vpath, $(SRC_PATH))
10
11QEMU_CFLAGS+=-I..
12
13include $(SRC_PATH)/Makefile.objs
14
15all: $(libdis-y)
16# Dummy command so that make thinks it has done something
17 @true
18
19clean:
20 rm -f *.o *.d *.a *~
21
22# Include automatically generated dependency files
23-include $(wildcard *.d */*.d)