]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sbin/mount_cd9660/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 WARNS?= 6
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>