daaf575910
Similar to libexec/, do the same with lib/. Make WARNS=6 the norm and lower it when needed. I'm setting WARNS?=0 for secure/. It seems secure/ includes the Makefile.inc provided by lib/. I'm not going to touch that directory. Most of the code there is contributed anyway.
21 lines
339 B
Makefile
21 lines
339 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= kiconv
|
|
SHLIBDIR?= /lib
|
|
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${.CURDIR}/../../sys
|
|
|
|
WARNS?= 1
|
|
|
|
.include <bsd.lib.mk>
|