xref: /freebsd/share/examples/kld/syscall/module/Makefile (revision 10534a60e8a62e6e70320bfa2e7fbe5ffe5ee4ba)
1# Makefile for building the sample syscall module
2
3SRCS	= syscall.c
4KMOD	= syscall
5KO	= ${KMOD}.ko
6KLDMOD	= t
7
8KLDLOAD		= /sbin/kldload
9KLDUNLOAD	= /sbin/kldunload
10
11load: ${KO}
12	${KLDLOAD} -v ./${KO}
13
14unload: ${KO}
15	${KLDUNLOAD} -v -n ${KO}
16
17.include <bsd.kmod.mk>
18