aboutsummaryrefslogtreecommitdiff
path: root/tas5825m-module/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tas5825m-module/Makefile')
-rw-r--r--tas5825m-module/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/tas5825m-module/Makefile b/tas5825m-module/Makefile
new file mode 100644
index 0000000..2147d32
--- /dev/null
+++ b/tas5825m-module/Makefile
@@ -0,0 +1,21 @@
+ifneq ($(KERNELRELEASE),)
+# kbuild part of makefile
+obj-m := tas5825m.o
+else
+
+# Normal Makefile
+
+KERNELDIR := /lib/modules/`uname -r`/build
+all:
+ $(MAKE) -C $(KERNELDIR) M=`pwd` modules
+
+debug:
+ $(MAKE) -C $(KERNELDIR) EXTRA_CFLAGS=-DDEBUG M=`pwd` modules
+
+modules_install:
+ $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
+
+clean:
+ rm -rf *.o *.ko *.mod.c *.mod .*.cmd Module.symvers modules.order .tmp_versions
+
+endif