mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
modules. Note that in the case of 'mii' the API is not clearly defined, and the symbols exported represent a subset defined by current usage.
18 lines
339 B
Makefile
18 lines
339 B
Makefile
# $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
|
|
|
|
EXPORT_SYMS= iconv_open \
|
|
iconv_close \
|
|
iconv_conv \
|
|
iconv_convstr \
|
|
iconv_convmem
|
|
|
|
.include <bsd.kmod.mk>
|