99d300a1ec
systems were repo-copied from sys/miscfs to sys/fs. - Renamed the following file systems and their modules: fdesc -> fdescfs, portal -> portalfs, union -> unionfs. - Renamed corresponding kernel options: FDESC -> FDESCFS, PORTAL -> PORTALFS, UNION -> UNIONFS. - Install header files for the above file systems. - Removed bogus -I${.CURDIR}/../../sys CFLAGS from userland Makefiles.
13 lines
205 B
Makefile
13 lines
205 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 3/27/94
|
|
# $FreeBSD$
|
|
|
|
PROG= mount_umap
|
|
SRCS= mount_umap.c getmntopts.c
|
|
MAN= mount_umap.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+=-I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|