freebsd-dev/sbin/umount/Makefile
Bruce Evans d499a0ef65 Merge from Lite2.
- use new getvfsbyname() interface.
- new -A option, like -a except only mounted file systems are unmounted.

All non-cosmetic FreeBSD changes in umount.c, except ignoring of
realpath() failures, went away because they are done better in Lite2.
realpath() failures must be ignored so that non-pathnames like
"<above>:/foo" and "host:/bar" get as far as mount(2).

Reviewed by:	dfr
1997-06-16 11:20:05 +00:00

14 lines
205 B
Makefile

# @(#)Makefile 8.4 (Berkeley) 6/22/95
PROG= umount
SRCS= umount.c vfslist.c
MAN8= umount.8
MOUNT= ${.CURDIR}/../mount
CFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
CFLAGS+= -D_NEW_VFSCONF
.include <bsd.prog.mk>