xref: /netbsd/sbin/mount_ntfs/Makefile (revision 6550d01e)
1#	$NetBSD: Makefile,v 1.10 2008/08/05 20:57:45 pooka Exp $
2#
3#	Id: Makefile,v 1.1.1.1 1999/02/03 03:51:19 semenu Exp
4#
5
6.include <bsd.own.mk>
7
8PROG=	mount_ntfs
9SRCS=	mount_ntfs.c fattr.c pathadj.c
10MAN=	mount_ntfs.8
11
12MOUNT=	${NETBSDSRCDIR}/sbin/mount
13CPPFLAGS+= -I${MOUNT}
14.PATH:	${MOUNT}
15
16DPADD+=${LIBUTIL}
17LDADD+=-lutil
18
19.include <bsd.prog.mk>
20