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}
|
2005-11-12 20:40:36 -05:00
|
|
|
WARNS?= 6
|
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
|
2004-12-21 04:59:45 -05:00
|
|
|
NO_SHARED?= NO
|
2003-09-26 16:26:25 -04:00
|
|
|
|
1994-05-26 02:35:07 -04:00
|
|
|
.PATH: ${MOUNT}
|
|
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|