]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sbin/mount_ntfs/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sbin / mount_ntfs / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 PROG=   mount_ntfs
6 SRCS=   mount_ntfs.c getmntopts.c
7 MAN=    mount_ntfs.8
8 DPADD=  ${LIBKICONV}
9 LDADD=  -lkiconv
10
11 MOUNT=  ${.CURDIR}/../mount
12 CFLAGS+=-I${MOUNT}
13 WARNS?= 0
14
15 # Needs to be dynamically linked for optional dlopen() access to
16 # userland libiconv
17 NO_SHARED?=     NO
18
19 .PATH:  ${MOUNT}
20
21 .include <bsd.prog.mk>