7f471a3289
- Cast delimiter width to integer [1] - Solve name conflicts against system header - Constify parameters to avoid qualifier conflict PR: bin/140017 [1] Submitted by: Ulrich Spörlein <uqs spoerlein net> [1] MFC after: 1 month Sponsored by: iXsystems, Inc
16 lines
276 B
Makefile
16 lines
276 B
Makefile
# @(#)Makefile 8.4 (Berkeley) 6/22/95
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PROG= umount
|
|
SRCS= umount.c vfslist.c mounttab.c
|
|
MAN= umount.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
UMNTALL= ${.CURDIR}/../../usr.sbin/rpc.umntall
|
|
CFLAGS+= -I${MOUNT} -I${UMNTALL}
|
|
|
|
.PATH: ${MOUNT} ${UMNTALL}
|
|
|
|
.include <bsd.prog.mk>
|