created first version

This commit is contained in:
2022-10-24 11:49:04 +09:00
parent bc5deb649b
commit 1cf29b71ed
3 changed files with 195 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
obj-m += module.o
PWD := $(CURDIR)
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean