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