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