Makefile revision 1.8
1#	$NetBSD: Makefile,v 1.8 2005/02/05 15:06:15 xtraeme 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
10MAN=	mount_ntfs.8
11
12WARNS=	3
13
14MOUNT=	${NETBSDSRCDIR}/sbin/mount
15CPPFLAGS+= -I${MOUNT}
16.PATH:	${MOUNT}
17
18DPADD+=${LIBUTIL}
19LDADD+=-lutil
20
21.include <bsd.prog.mk>
22