1994-05-26 02:35:07 -04:00
|
|
|
# @(#)Makefile 8.3 (Berkeley) 3/27/94
|
2001-03-20 13:13:31 -05:00
|
|
|
# $FreeBSD$
|
1994-05-26 02:35:07 -04:00
|
|
|
|
|
|
|
|
PROG= mount_cd9660
|
|
|
|
|
SRCS= mount_cd9660.c getmntopts.c
|
2001-03-26 09:33:27 -05:00
|
|
|
MAN= mount_cd9660.8
|
2003-09-26 16:26:25 -04:00
|
|
|
DPADD= ${LIBKICONV}
|
|
|
|
|
LDADD= -lkiconv
|
1994-05-26 02:35:07 -04:00
|
|
|
|
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
|
|
|
CFLAGS+= -I${MOUNT}
|
2004-02-23 15:25:27 -05:00
|
|
|
WARNS?= 0
|
2001-12-03 21:19:58 -05:00
|
|
|
|
2003-09-26 16:26:25 -04:00
|
|
|
# Needs to be dynamically linked for optional dlopen() access to
|
|
|
|
|
# userland libiconv
|
|
|
|
|
NOSHARED?= NO
|
|
|
|
|
|
1994-05-26 02:35:07 -04:00
|
|
|
.PATH: ${MOUNT}
|
|
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|