13 lines
245 B
Makefile
13 lines
245 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 3/27/94
|
|
|
|
PROG= mount_union
|
|
SRCS= mount_union.c getmntopts.c
|
|
MAN8= mount_union.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+= -D_NEW_VFSCONF
|
|
CFLAGS+= -I${.CURDIR}/../../sys -I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|