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