Add build infrastructure for a libiconv loadable kernel module.

This should allow the use of the smbfs module without the
requirement to rebuild the kernel with LIBICONV.
This commit is contained in:
Sheldon Hearn 2001-07-25 19:21:06 +00:00
parent 48e417eb5a
commit 81dd89bf46

View File

@ -0,0 +1,12 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../libkern ${.CURDIR}/../../sys
KMOD= libiconv
SRCS= iconv.c iconv_xlat.c
SRCS+= iconv.h
SRCS+= iconv_converter_if.c iconv_converter_if.h
MFILES= libkern/iconv_converter_if.m
NOMAN= true
.include <bsd.kmod.mk>