aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2023-04-25 16:39:54 +0400
committerJoursoir <chat@joursoir.net>2023-04-25 16:39:54 +0400
commit21cbc15a690e7c82d778de3eff973084f4198b4e (patch)
tree4317d7ea1432e89a820e1218861e415e560ec907 /Makefile
downloadcpui-drv-21cbc15a690e7c82d778de3eff973084f4198b4e.tar.gz
cpui-drv-21cbc15a690e7c82d778de3eff973084f4198b4e.tar.bz2
cpui-drv-21cbc15a690e7c82d778de3eff973084f4198b4e.zip
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..006a8f4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+BASE_NAME = cpui-drv
+PATH_TO_KERNEL_SRC := /lib/modules/$(shell uname -r)/build
+obj-m += $(BASE_NAME).o
+
+all:
+ $(MAKE) -C $(PATH_TO_KERNEL_SRC) M=$(PWD) modules
+
+clean:
+ $(MAKE) -C $(PATH_TO_KERNEL_SRC) M=$(PWD) clean