xref: /dragonfly/sbin/mount_ntfs/Makefile (revision 38c2ea22)
1#
2# $FreeBSD: src/sbin/mount_ntfs/Makefile,v 1.2.2.2 2001/10/12 22:08:43 semenu Exp $
3#
4
5PROG=	mount_ntfs
6SRCS=	mount_ntfs.c getmntopts.c
7MAN=	mount_ntfs.8
8DPADD=	${LIBUTIL} ${LIBKICONV}
9LDADD=	-lutil -lkiconv
10
11MOUNT=	${.CURDIR}/../mount
12CFLAGS+= -I${.CURDIR}/../../sys -I${MOUNT}
13.PATH:	${MOUNT}
14
15.include <bsd.prog.mk>
16