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 | |
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.
-rw-r--r-- | sys/modules/if_ef/Makefile | 6 | ||||
-rw-r--r-- | sys/modules/ncp/Makefile | 9 | ||||
-rw-r--r-- | sys/modules/nwfs/Makefile | 9 | ||||
-rw-r--r-- | sys/modules/smbfs/Makefile | 3 |
4 files changed, 0 insertions, 27 deletions
diff --git a/sys/modules/if_ef/Makefile b/sys/modules/if_ef/Makefile index ff84ced..03e1e50 100644 --- a/sys/modules/if_ef/Makefile +++ b/sys/modules/if_ef/Makefile @@ -29,10 +29,4 @@ opt_ef.h: .endif .endfor -load: all - /sbin/kldload ./${PROG} - -unload: - /sbin/kldunload ${PROG} - .include <bsd.kmod.mk> diff --git a/sys/modules/ncp/Makefile b/sys/modules/ncp/Makefile index dfcedb9..fb9d993 100644 --- a/sys/modules/ncp/Makefile +++ b/sys/modules/ncp/Makefile @@ -12,13 +12,4 @@ SRCS+= ncp_burst.c CFLAGS+= -DNCPBURST .endif -load: ${KMOD}.ko - kldload ./${KMOD}.ko - -unload: - @(if kldunload ${KMOD}; then true; else true; fi) - -deinstall: - rm -f /modules/ncp.ko - .include <bsd.kmod.mk> 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> diff --git a/sys/modules/smbfs/Makefile b/sys/modules/smbfs/Makefile index 885c3c4..44a6a9e 100644 --- a/sys/modules/smbfs/Makefile +++ b/sys/modules/smbfs/Makefile @@ -60,7 +60,4 @@ opt_netsmb.h: echo "#define NETSMBCRYPTO 1" >> ${.TARGET} .endif -unload: - @(if kldunload ${KMOD}; then true; else true; fi) - .include <bsd.kmod.mk> |