1# Makefile for qemu target independent devices. 2 3include ../config-host.mak 4include ../config-all-devices.mak 5include config.mak 6include $(SRC_PATH)/rules.mak 7 8.PHONY: all 9 10$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw) 11 12QEMU_CFLAGS+=-I.. -I$(SRC_PATH)/fpu 13 14include $(SRC_PATH)/Makefile.objs 15 16all: $(hw-obj-y) 17# Dummy command so that make thinks it has done something 18 @true 19 20clean: 21 rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~ 22 23# Include automatically generated dependency files 24-include $(wildcard *.d */*.d) 25