14 lines
196 B
Makefile
14 lines
196 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PROG= mount_ntfs
|
|
SRCS= mount_ntfs.c getmntopts.c
|
|
MAN8= mount_ntfs.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+= -I${.CURDIR}/../../sys -I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|