SRCS = modtest.c KMOD = modtest KO = ${KMOD}.ko KLDMOD = t KLDLOAD = /sbin/kldload KLDUNLOAD = /sbin/kldunload load: ${KO} ${KLDLOAD} -v ./${KO} unload: ${KO} ${KLDUNLOAD} -v -n ${KO} backup: (cd .. && tar zcvf modtest.tgz modtest ) .include