a69497d73f
rundown script 'reboot' or 'single'. ISO support (which never worked) has been removed from mount_nfs. mount_nfs and umount now use mounttab, which allows umntall to work properly. The rc scripts now call umntall as appropriate. Submitted by: Martin Blapp <mb@imp.ch>
15 lines
276 B
Makefile
15 lines
276 B
Makefile
# @(#)Makefile 8.4 (Berkeley) 6/22/95
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PROG= umount
|
|
SRCS= umount.c vfslist.c mounttab.c
|
|
MAN8= umount.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
UMNTALL= ${.CURDIR}/../../usr.sbin/rpc.umntall
|
|
CFLAGS+= -I${MOUNT} -I${UMNTALL}
|
|
.PATH: ${MOUNT} ${UMNTALL}
|
|
|
|
.include <bsd.prog.mk>
|