mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Style.
This commit is contained in:
parent
6c053bebf9
commit
6990ffd8a9
1 changed files with 3 additions and 13 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue