aboutsummaryrefslogtreecommitdiff
path: root/sbin/umount/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/umount/Makefile')
-rw-r--r--sbin/umount/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/sbin/umount/Makefile b/sbin/umount/Makefile
index e2ea52194e25..0ffd0f7251f1 100644
--- a/sbin/umount/Makefile
+++ b/sbin/umount/Makefile
@@ -1,11 +1,14 @@
# @(#)Makefile 8.4 (Berkeley) 6/22/95
+#
+# $FreeBSD$
PROG= umount
-SRCS= umount.c vfslist.c
+SRCS= umount.c vfslist.c mounttab.c
MAN8= umount.8
MOUNT= ${.CURDIR}/../mount
-CFLAGS+= -I${MOUNT}
-.PATH: ${MOUNT}
+UMNTALL= ${.CURDIR}/../../usr.sbin/rpc.umntall
+CFLAGS+= -I${MOUNT} -I${UMNTALL}
+.PATH: ${MOUNT} ${UMNTALL}
.include <bsd.prog.mk>