commit 6e9d7dc6ef630f72fe50e8d6f0c8df2a738378b8 Author: NJL <23+njl@noreply.git.churchofmalware.org> Date: Fri Jun 26 22:42:40 2026 +0000 Add Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dd7f12b --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +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