1#	$NetBSD: Makefile.inc,v 1.7 2011/11/10 00:36:54 joerg Exp $
2#	@(#)Makefile	8.2 (Berkeley) 2/3/94
3#
4# All library objects contain sccsid strings by default; they may be
5# excluded as a space-saving measure.  To produce a library that does
6# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
7# from CPPFLAGS below.  To remove these strings from just the system call
8# stubs, remove just -DSYSLIBC_SCCS from CPPFLAGS.
9#
10# The NLS (message catalog) functions are always in libc.  To choose that
11# strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS
12# functions, put -DNLS on the CPPFLAGS line below.
13#
14# The YP functions are always in libc. To choose that getpwent() and friends
15# actually call the YP functions, put -DYP on the CPPFLAGS line below.
16#
17# The Hesiod functions are always in libc. To choose that getpwent() and friends
18# actually call the Hesiod functions, put -DHESIOD on the CPPFLAGS line below.
19
20USE_FORT?=	yes
21
22USE_SHLIBDIR=	yes
23
24.include <bsd.own.mk>
25
26WARNS=4
27CPPFLAGS+=	-D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
28
29.if (${USE_HESIOD} != "no")
30CPPFLAGS+=	-DHESIOD
31.endif
32
33.if (${USE_INET6} != "no")
34CPPFLAGS+=	-DINET6
35.endif
36
37CPPFLAGS+=	-DNLS
38
39.if (${USE_YP} != "no")
40CPPFLAGS+=	-DYP
41.endif
42
43.if ${MACHINE_ARCH} == "i386"
44# Set lint to exit on warnings
45LINTFLAGS+=	-w
46.endif
47# ignore 'empty translation unit' warnings.
48LINTFLAGS+=	-X 272
49
50.include "libcincludes.mk"
51
52ARCHDIR=	${.CURDIR}/arch/${ARCHSUBDIR}
53AFLAGS+=	-I${ARCHDIR}
54CLEANFILES+=	tags
55
56# Don't try to lint the C library against itself when creating llib-lc.ln
57LLIBS=
58
59INCSDIR=	/usr/include
60