mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-25 07:49:18 +00:00
22289a8c3d
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
15 lines
230 B
Makefile
15 lines
230 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 3/27/94
|
|
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
PROG= mount_unionfs
|
|
SRCS= mount_unionfs.c getmntopts.c
|
|
MAN= mount_unionfs.8
|
|
|
|
MOUNT= ${.CURDIR:H}/mount
|
|
CFLAGS+=-I${MOUNT}
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|