mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
22289a8c3d
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
17 lines
284 B
Makefile
17 lines
284 B
Makefile
# @(#)Makefile 8.4 (Berkeley) 6/22/95
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
PROG= umount
|
|
SRCS= umount.c vfslist.c mounttab.c
|
|
MAN= umount.8
|
|
|
|
MOUNT= ${.CURDIR:H}/mount
|
|
UMNTALL= ${SRCTOP}/usr.sbin/rpc.umntall
|
|
CFLAGS+= -I${MOUNT} -I${UMNTALL}
|
|
|
|
.PATH: ${MOUNT} ${UMNTALL}
|
|
|
|
.include <bsd.prog.mk>
|