984095a860
which was inadvertently caused by r236185: if SHLIBDIR is set using the ?= operator, it must be done *before* bsd.own.mk is included, otherwise the default value is still used. Note, bsd.lib.mk will take care of removing the copy in /usr/lib upon installation, so no addition to ObsoleteFiles.inc is needed. X-MFC-With: r236185
28 lines
419 B
Makefile
28 lines
419 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
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${.CURDIR}/../../sys
|
|
|
|
WARNS?= 1
|
|
|
|
.if ${MK_ICONV} == "no"
|
|
CFLAGS+= -DICONV_DLOPEN
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|