307253bb9f
syscall style libc is using otherwise the library can contain calls (like issetugid) that you don't find out until you build X programs.
17 lines
412 B
Makefile
17 lines
412 B
Makefile
LIB= xpg4
|
|
SRCS= setlocale.c setrunelocale.c euc.c mskanji.c utf2.c runetype.c \
|
|
tolower.c toupper.c
|
|
CFLAGS+= -Wall -DXPG4 -I${.CURDIR}/../libc/locale
|
|
.PATH: ${.CURDIR}/../libc/locale
|
|
|
|
#
|
|
# If there is a machine dependent libc makefile, use it:
|
|
#
|
|
.if exists(${.CURDIR}/../libc/${MACHINE_ARCH}/Makefile.inc)
|
|
.include "${.CURDIR}/../libc/${MACHINE_ARCH}/Makefile.inc"
|
|
.endif
|
|
|
|
NOMAN= YES
|
|
|
|
.include <bsd.lib.mk>
|