This commit is contained in:
Ruslan Ermilov 2001-09-18 12:03:42 +00:00
parent 6c053bebf9
commit 6990ffd8a9

View File

@ -1,17 +1,7 @@
# Makefile for building the sample syscall module
# $FreeBSD$
SRCS = syscall.c
KMOD = syscall
KO = ${KMOD}.ko
KLDMOD = t
KLDLOAD = /sbin/kldload
KLDUNLOAD = /sbin/kldunload
load: ${KO}
${KLDLOAD} -v ./${KO}
unload: ${KO}
${KLDUNLOAD} -v -n ${KO}
KMOD= syscall
SRCS= syscall.c
.include <bsd.kmod.mk>