https://github.com/qemu/qemu
Raw File
Tip revision: ff0245dea25937a93878069b15eee245344eb6b9 authored by Michael Roth on 11 December 2012, 21:09:44 UTC
update VERSION for v1.2.2
Tip revision: ff0245d
Makefile.dis
# Makefile for disassemblers.

include ../config-host.mak
include config.mak
include $(SRC_PATH)/rules.mak

.PHONY: all

$(call set-vpath, $(SRC_PATH))

QEMU_CFLAGS+=-I..

include $(SRC_PATH)/Makefile.objs

all: $(libdis-y)
# Dummy command so that make thinks it has done something
	@true

clean:
	rm -f *.o *.d *.a *~
back to top