# TARGET:= hello.ko all: ${TARGET} hello.ko: hello.c make -C /usr/src/linux-`uname -r` M=`pwd` V=1 modules clean: make -C /usr/src/linux-`uname -r` M=`pwd` V=1 clean obj-m:= hello.o clean-files := *.o *.ko *.mod.[co] *~