mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-04-05 02:47:33 +07:00
9 lines
148 B
Makefile
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
|