]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sbin/mount_msdosfs/Makefile
MFC r368207,368607:
[FreeBSD/stable/10.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>