]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/mount_msdosfs/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.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>