ko/Makefile

12 lines
172 B
Makefile

KDIR=/usr/src/kernels/$(shell uname -r)
obj-m += demo.o
obj-m += blk_kprobe.o
all:
make -C $(KDIR) M=$(shell pwd) modules
clean:
make -C $(KDIR) M=$(shell pwd) clean