summaryrefslogtreecommitdiff
path: root/schulung_tools/drivers/modules/hellodriver/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'schulung_tools/drivers/modules/hellodriver/Makefile')
-rw-r--r--schulung_tools/drivers/modules/hellodriver/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/schulung_tools/drivers/modules/hellodriver/Makefile b/schulung_tools/drivers/modules/hellodriver/Makefile
deleted file mode 100644
index 764fefd..0000000
--- a/schulung_tools/drivers/modules/hellodriver/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-MNAME = hello
-BDIR = /lib/modules/`uname -r`/build
-
-ifeq ($(KERNELRELEASE),)
-# called from shell
-
-.PHONY: default clean
-
-default:
- make -C $(BDIR) M=$(shell pwd) modules
-
-clean:
- rm -rf $(MNAME).mod.* $(MNAME).*o .$(MNAME)* .tmp* Module.symvers modules.order
-
-else
-# called from kernel Makefile
-
- obj-m := $(MNAME).o
-endif