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