From b5ad6caf6c0260c522ec86c30380cd42fa4a32a4 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 18 Sep 2018 20:22:17 +0200 Subject: SPI driver hellouw. --- recipes-kernel/spiaudio-module/files/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 recipes-kernel/spiaudio-module/files/Makefile (limited to 'recipes-kernel/spiaudio-module/files/Makefile') diff --git a/recipes-kernel/spiaudio-module/files/Makefile b/recipes-kernel/spiaudio-module/files/Makefile new file mode 100644 index 0000000..851971b --- /dev/null +++ b/recipes-kernel/spiaudio-module/files/Makefile @@ -0,0 +1,14 @@ +obj-m := at73c213_.o + +SRC := $(shell pwd) + +all: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) + +modules_install: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install + +clean: + rm -f *.o *~ core .depend .*.cmd *.ko *.mod.c + rm -f Module.markers Module.symvers modules.order + rm -rf .tmp_versions Modules.symvers -- cgit v1.2.3