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
|
|
|
|
2016-02-09 15:19:31 -05:00
|
|
|
PACKAGE=runtime
|
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
|
2014-11-25 06:23:12 -05:00
|
|
|
LIBADD= kiconv
|
1994-05-26 02:35:07 -04:00
|
|
|
|
2017-03-04 06:33:01 -05:00
|
|
|
MOUNT= ${.CURDIR:H}/mount
|
1994-05-26 02:35:07 -04:00
|
|
|
CFLAGS+= -I${MOUNT}
|
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>
|