1
0
mirror of https://github.com/nganhkhoa/CTF-All-In-One.git synced 2025-04-30 13:47:33 +07:00
CTF-All-In-One/src/Others/4.1_linux_kernel_debug/Makefile
2018-04-20 21:00:41 +08:00

9 lines
148 B
Makefile

BUILDPATH := ~/kernelbuild/linux-4.16.3/
obj-m += hello.o
all:
make -C $(BUILDPATH) M=$(PWD) modules
clean:
make -C $(BUILDPATH) M=$(PWD) clean