diff options
author | Joursoir <chat@joursoir.net> | 2023-04-25 16:39:54 +0400 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2023-04-25 16:39:54 +0400 |
commit | 21cbc15a690e7c82d778de3eff973084f4198b4e (patch) | |
tree | 4317d7ea1432e89a820e1218861e415e560ec907 /Makefile | |
download | cpui-drv-21cbc15a690e7c82d778de3eff973084f4198b4e.tar.gz cpui-drv-21cbc15a690e7c82d778de3eff973084f4198b4e.tar.bz2 cpui-drv-21cbc15a690e7c82d778de3eff973084f4198b4e.zip |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
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 |