Remove building with NOCRYPTO option
[minix.git] / lib / libc / Makefile.inc
blob66e5cb4026783cd89819f899442d2eb9c2f63e82
1 #       $NetBSD: Makefile.inc,v 1.18 2015/08/28 11:45:02 joerg Exp $
2 #       @(#)Makefile    8.2 (Berkeley) 2/3/94
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.
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.
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.
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 .if defined(__MINIX)
20 MKYP=no #requires RPC
21 USE_JEMALLOC=no
22 USE_FORT=no
23 USE_LIBTRE=no
25 # BJG too many warnings
26 NOGCCERROR?=    yes
27 NOCLANGERROR?=  yes
28 .endif # defined(__MINIX)
30 USE_FORT?=      yes
32 USE_SHLIBDIR=   yes
34 .include <bsd.own.mk>
36 # build libc suitable for rumprun software stack, i.e. are system calls
37 # rump kernel function calls instead of kernel traps?
38 RUMPRUN?=       no
40 WARNS=5
41 .if !defined(__MINIX)
42 CPPFLAGS+=      -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
43 CPPFLAGS+=      -D_DIAGNOSTIC
44 .else
45 CPPFLAGS+=      -D_LIBC
46 .if defined(MLIBDIR)
47 CPPFLAGS+=      -DMLIBDIR=\"${MLIBDIR}\"
48 .endif
49 .endif # !defined(__minix)
51 .if (${USE_HESIOD} != "no")
52 CPPFLAGS+=      -DHESIOD
53 .endif
55 .if (${USE_INET6} != "no")
56 CPPFLAGS+=      -DINET6
57 .endif
59 CPPFLAGS+=      -DNLS
61 .if (${USE_YP} != "no")
62 CPPFLAGS+=      -DYP
63 .endif
65 # Set lint to exit on warnings
66 #LINTFLAGS+=    -w
67 # ignore 'empty translation unit' warnings.
68 LINTFLAGS+=     -X 272
70 .include "libcincludes.mk"
72 ARCHDIR=        ${.CURDIR}/arch/${ARCHSUBDIR}
73 AFLAGS+=        -I${ARCHDIR}
74 CLEANFILES+=    tags
76 # Don't try to lint the C library against itself when creating llib-lc.ln
77 LLIBS=
79 INCSDIR=        /usr/include