870039320f
so that all these makefiles can be used to build libc_r too. Added .if ${LIB} == "c" tests to restrict man page builds to libc to avoid needlessly building them with libc_r too. Split libc Makefile into Makefile and Makefile.inc to allow the libc_r Makefile to include Makefile.inc too.
12 lines
262 B
Makefile
12 lines
262 B
Makefile
# from $NetBSD: Makefile.inc,v 1.7 1995/02/27 13:06:20 cgd Exp $
|
|
# $Id$
|
|
|
|
.PATH: ${.CURDIR}/../libc/nls
|
|
|
|
SRCS+= catclose.c catgets.c catopen.c msgcat.c
|
|
|
|
# Only build man pages with libc.
|
|
.if ${LIB} == "c"
|
|
MAN3+= nls/catclose.3 nls/catgets.3 nls/catopen.3
|
|
.endif
|