summaryrefslogtreecommitdiff
path: root/kernel-devel/char-device/example/kernel/Makefile
diff options
context:
space:
mode:
authorChristian Eppler <c.eppler@linutonix.de>2013-05-13 16:22:27 +0200
committerChristian Eppler <c.eppler@linutonix.de>2013-05-13 16:22:27 +0200
commit9e05689406c83ae3020ca32a6ec6387466209138 (patch)
tree20a95a65df7e46b584c666ec74850df6d62b3045 /kernel-devel/char-device/example/kernel/Makefile
parentcea5039322781f6085dd47954af5584ca3f78911 (diff)
Implement Kconfig build system
Signed-off-by: Christian Eppler <c.eppler@linutonix.de>
Diffstat (limited to 'kernel-devel/char-device/example/kernel/Makefile')
-rw-r--r--kernel-devel/char-device/example/kernel/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/kernel-devel/char-device/example/kernel/Makefile b/kernel-devel/char-device/example/kernel/Makefile
deleted file mode 100644
index 822c7d7..0000000
--- a/kernel-devel/char-device/example/kernel/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-# If KERNELRELEASE is defined, we've been invoked from the
-# kernel build system and can use its language.
-ifneq ($(KERNELRELEASE),)
- obj-m := huhu.o
-
-# Otherwise we were called directly from the command
-# line; invoke the kernel build system.
-else
- KERNELDIR ?= /lib/modules/$(shell uname -r)/build
- PWD := $(shell pwd)
-default:
- $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
-endif