xref: /dragonfly/sbin/mount_ntfs/Makefile (revision 0bb9290e)
1#
2# $FreeBSD: src/sbin/mount_ntfs/Makefile,v 1.2.2.2 2001/10/12 22:08:43 semenu Exp $
3# $DragonFly: src/sbin/mount_ntfs/Makefile,v 1.3 2005/04/03 15:52:40 joerg Exp $
4#
5
6PROG=	mount_ntfs
7SRCS=	mount_ntfs.c getmntopts.c
8MAN=	mount_ntfs.8
9DPADD=	${LIBUTIL}
10LDADD=	-lutil
11WARNS?=	6
12
13MOUNT=	${.CURDIR}/../mount
14CFLAGS+= -I${.CURDIR}/../../sys -I${MOUNT}
15.PATH:	${MOUNT}
16
17.include <bsd.prog.mk>
18