]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sbin/mount_cd9660/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sbin / mount_cd9660 / Makefile
1 #       @(#)Makefile    8.3 (Berkeley) 3/27/94
2 # $FreeBSD$
3
4 PROG=   mount_cd9660
5 SRCS=   mount_cd9660.c getmntopts.c
6 MAN=    mount_cd9660.8
7 DPADD=  ${LIBKICONV}
8 LDADD=  -lkiconv
9
10 MOUNT=  ${.CURDIR}/../mount
11 CFLAGS+= -I${MOUNT}
12
13 # Needs to be dynamically linked for optional dlopen() access to
14 # userland libiconv
15 NO_SHARED?=     NO
16
17 .PATH:  ${MOUNT}
18
19 .include <bsd.prog.mk>