mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
27 lines
417 B
Makefile
27 lines
417 B
Makefile
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>
|