]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/mount_udf/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.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 WARNS?= 1
13
14 # Needs to be dynamically linked for optional dlopen() access to
15 # userland libiconv
16 NO_SHARED?=     NO
17
18 .include <bsd.prog.mk>