diff options
author | ru <ru@FreeBSD.org> | 2004-01-19 14:00:26 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-01-19 14:00:26 +0000 |
commit | fc6eb88ff293065b8973e0a33349d6ee1547181c (patch) | |
tree | d488356f16e5022c98e0f8619ee8d6af322ccbfd /sys/modules/nwfs | |
parent | 3f8ee0c687dc60c48c1572b6979383bcfa9a7416 (diff) | |
download | FreeBSD-src-fc6eb88ff293065b8973e0a33349d6ee1547181c.zip FreeBSD-src-fc6eb88ff293065b8973e0a33349d6ee1547181c.tar.gz |
Removed custom "load" and "unload" targets.
Removed "deinstall" targets -- the idea is to provide the standard
"deinstall" target.
Diffstat (limited to 'sys/modules/nwfs')
-rw-r--r-- | sys/modules/nwfs/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/modules/nwfs/Makefile b/sys/modules/nwfs/Makefile index 04a5d47..255aabc 100644 --- a/sys/modules/nwfs/Makefile +++ b/sys/modules/nwfs/Makefile @@ -15,13 +15,4 @@ CFLAGS+= -DVNPRINT opt_ncp.h: echo "#define NCP 1" > ${.TARGET} -load: nwfs.ko - kldload ./nwfs.ko - -unload: - @(if kldunload nwfs; then true; else true; fi) - -deinstall: - rm -f /modules/nwfs.ko - .include <bsd.kmod.mk> |