a7b5a3d486
All of them are needed to be able to boot to single user and be able to repair a existing FreeBSD installation so put them directly into FreeBSD-runtime. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21503
29 lines
430 B
Makefile
29 lines
430 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
LIB= kiconv
|
|
SRCS= kiconv_sysctl.c xlat16_iconv.c xlat16_sysctl.c
|
|
SRCS+= quirks.c
|
|
|
|
SHLIB_MAJOR= 4
|
|
|
|
MAN= kiconv.3
|
|
|
|
MLINKS+= kiconv.3 kiconv_add_xlat16_cspair.3 \
|
|
kiconv.3 kiconv_add_xlat16_cspairs.3 \
|
|
kiconv.3 kiconv_add_xlat16_table.3
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys
|
|
|
|
WARNS?= 1
|
|
|
|
.if ${MK_ICONV} == "no"
|
|
CFLAGS+= -DICONV_DLOPEN
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|