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