This commit is contained in:
2025-01-01 21:04:13 +02:00
parent 8d1b1537be
commit dcf7056a24
7 changed files with 260 additions and 0 deletions

11
lab_5/Makefile Normal file
View File

@@ -0,0 +1,11 @@
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