Makefile revision 225736
1#
2# $FreeBSD: stable/9/sbin/mount_ntfs/Makefile 204404 2010-02-27 10:16:14Z uqs $
3#
4
5PROG=	mount_ntfs
6SRCS=	mount_ntfs.c getmntopts.c
7MAN=	mount_ntfs.8
8DPADD=	${LIBKICONV}
9LDADD=	-lkiconv
10
11MOUNT=	${.CURDIR}/../mount
12CFLAGS+= -I${MOUNT}
13
14# Needs to be dynamically linked for optional dlopen() access to
15# userland libiconv
16NO_SHARED?=	NO
17
18.PATH:	${MOUNT}
19
20.include <bsd.prog.mk>
21