2009-05-19 17:17:58 +02:00
|
|
|
# Makefile for qemu target independent devices.
|
|
|
|
|
|
|
|
include ../config-host.mak
|
2009-10-07 02:41:02 +02:00
|
|
|
include ../config-all-devices.mak
|
2009-07-27 16:12:50 +02:00
|
|
|
include config.mak
|
2009-05-19 17:17:58 +02:00
|
|
|
include $(SRC_PATH)/rules.mak
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
|
2009-12-21 10:06:55 +01:00
|
|
|
$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
|
2009-05-19 17:17:58 +02:00
|
|
|
|
2009-08-03 14:46:23 +02:00
|
|
|
QEMU_CFLAGS+=-I.. -I$(SRC_PATH)/fpu
|
2009-05-19 17:17:58 +02:00
|
|
|
|
2010-01-06 20:24:05 +01:00
|
|
|
include $(SRC_PATH)/Makefile.objs
|
2009-05-19 17:17:58 +02:00
|
|
|
|
2010-01-06 20:24:05 +01:00
|
|
|
all: $(hw-obj-y)
|
2009-05-25 19:54:53 +02:00
|
|
|
# Dummy command so that make thinks it has done something
|
|
|
|
@true
|
2009-05-19 17:17:58 +02:00
|
|
|
|
|
|
|
clean:
|
2010-05-15 13:03:30 +02:00
|
|
|
rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~
|
2009-05-19 17:17:58 +02:00
|
|
|
|
|
|
|
# Include automatically generated dependency files
|
|
|
|
-include $(wildcard *.d */*.d)
|