ak-labs/lab_4/Makefile

13 lines
188 B
Makefile
Raw Normal View History

2025-01-01 18:04:12 +02:00
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