d00947d83a
and Daichi GOTO <daichi@FreeBSD.org> for submitting this major rewrite of unionfs. This rewrite was done to try to solve many of the longstanding crashing and locking issues in the existing unionfs implementation. This implementation also adds a 'MASQUERADE mode', which allows the user to set different user, group, and file permission modes in the upper layer. Submitted by: daichi, Masanori OZAWA Reviewed by: rodrigc (modified for minor style issues)
15 lines
225 B
Makefile
15 lines
225 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 3/27/94
|
|
# $FreeBSD$
|
|
|
|
PROG= mount_unionfs
|
|
SRCS= mount_unionfs.c getmntopts.c
|
|
MAN= mount_unionfs.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+=-I${MOUNT}
|
|
WARNS?= 3
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|