From 2554a1cdb3c1e117ca9e2e5f028a596baaf7c1a4 Mon Sep 17 00:00:00 2001 From: Andi Shyti Date: Sun, 19 May 2013 01:06:38 +0200 Subject: initialized repository Added etzkx device driver files: new file: Makefile new file: etzkx.c new file: etzkx.h Signed-off-by: Andi Shyti --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bbf31a5 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +LINUXDIR= +TARGET_DIR= + +obj-m += etzkx.o + +all: + make -C $(LINUXDIR) modules SUBDIRS=$(shell pwd) + +install: + cp *.ko $(TARGET_DIR) + +clean: + make -C $(LINUXDIR) modules SUBDIRS=$(shell pwd) clean -- cgit v1.2.3