blob: 61473ea2fd86a4809e38781aeed8fea81d7c4fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile,v 1.5 1995/03/18 14:58:21 cgd Exp $
# @(#)Makefile 8.3 (Berkeley) 3/27/94
PROG= mount_union
SRCS= mount_union.c getmntopts.c
MAN= mount_union.8
MOUNT= ${.CURDIR}/../mount
CFLAGS+= -I${.CURDIR}/../../sys -I${MOUNT}
.PATH: ${MOUNT}
.include <bsd.prog.mk>
|