freebsd-dev/sbin/mount_ntfs/Makefile
Max Khon c4f02a891f - Support for multibyte charsets in LIBICONV.
- 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>
2003-09-26 20:26:25 +00:00

22 lines
317 B
Makefile

#
# $FreeBSD$
#
PROG= mount_ntfs
SRCS= mount_ntfs.c getmntopts.c
MAN= mount_ntfs.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>