c4f02a891f
- CD9660_ICONV, NTFS_ICONV and MSDOSFS_ICONV kernel options (with corresponding modules). - kiconv(3) for loadable charset conversion tables support. Submitted by: Ryuichiro Imura <imura@ryu16.org>
21 lines
358 B
Makefile
21 lines
358 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 3/27/94
|
|
# $FreeBSD$
|
|
|
|
PROG= mount_cd9660
|
|
SRCS= mount_cd9660.c getmntopts.c
|
|
MAN= mount_cd9660.8
|
|
DPADD= ${LIBKICONV}
|
|
LDADD= -lkiconv
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+= -I${MOUNT}
|
|
WARNS= 0
|
|
|
|
# Needs to be dynamically linked for optional dlopen() access to
|
|
# userland libiconv
|
|
NOSHARED?= NO
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|