ak-labs/lab_5/Makefile

12 lines
187 B
Makefile
Raw Permalink Normal View History

2025-01-01 21:04:13 +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