first commit

This commit is contained in:
2025-01-01 18:04:12 +02:00
commit 8d1b1537be
3 changed files with 146 additions and 0 deletions

12
lab_4/Makefile Normal file
View File

@@ -0,0 +1,12 @@
ifneq ($(KERNELRELEASE),)
include Kbuild
else
# normal makefile
KDIR ?= /lib/modules/`uname -r`/build
default:
$(MAKE) -C $(KDIR) M=$$PWD
clean:
$(MAKE) -C $(KDIR) M=$$PWD clean
endif