254bf662f7
which fixes many locking and crashing problems in the previous implementation. kib@ helped a lot by eliminating a source of deadlocks encountered with unionfs with these commits: rev. 1.50 of src/sys/fs/deadfs/dead_vnops.c rev. 1.97 of src/sys/kern/vfs_lookup.c Submitted by: daichi, Masanori OZAWA <ozawa ongs co jp>
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?= 6
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|