ko/Makefile

11 lines
150 B
Makefile

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