This commit is contained in:
firmianay
2018-04-20 21:00:41 +08:00
parent 41440f5629
commit d07a110725
12 changed files with 476 additions and 2 deletions

View File

@ -0,0 +1,8 @@
BUILDPATH := ~/kernelbuild/linux-4.16.3/
obj-m += hello.o
all:
make -C $(BUILDPATH) M=$(PWD) modules
clean:
make -C $(BUILDPATH) M=$(PWD) clean