aboutsummaryrefslogtreecommitdiff
path: root/share/examples/kld/syscall/module/Makefile
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2001-09-18 12:03:42 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2001-09-18 12:03:42 +0000
commit6990ffd8a95caaba6858ad44ff1b3157d1efba8f (patch)
treef70859cc894ab5b996863569da2458c698a0f179 /share/examples/kld/syscall/module/Makefile
parent6c053bebf96f1174479367373ac8dd2679cfaf3c (diff)
Style.
Notes
Notes: svn path=/head/; revision=83608
Diffstat (limited to 'share/examples/kld/syscall/module/Makefile')
-rw-r--r--share/examples/kld/syscall/module/Makefile16
1 files changed, 3 insertions, 13 deletions
diff --git a/share/examples/kld/syscall/module/Makefile b/share/examples/kld/syscall/module/Makefile
index 44406f429f3c..17066d141fce 100644
--- a/share/examples/kld/syscall/module/Makefile
+++ b/share/examples/kld/syscall/module/Makefile
@@ -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>