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