Files
Do-Not-Use-WSL2/Makefile
T
2026-06-26 22:42:40 +00:00

7 lines
157 B
Makefile

obj-m := poc.o
KDIR := /lib/modules/$(shell uname -r)/build
all:
$(MAKE) -C $(KDIR) M=$(shell pwd) modules
clean:
$(MAKE) -C $(KDIR) M=$(shell pwd) clean