add opendir alias
[minix.git] / lib / libc / Makefile.inc
blob11019198c3c1246fe380a85ac869501ce12307c1
1 #       $NetBSD: Makefile.inc,v 1.14 2012/03/21 14:52:40 christos 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 USE_INET6=no
21 MKYP=no #requires RPC
22 USE_JEMALLOC=no
23 USE_MINIXMALLOC=yes
24 USE_FORT=no
25 USE_LIBTRE=no
26 .endif # defined(__MINIX)
28 USE_FORT?=      yes
30 USE_SHLIBDIR=   yes
32 .include <bsd.own.mk>
34 WARNS=5
35 .if defined(__MINIX)
36 CPPFLAGS+=      -D_LIBC
37 .else
38 CPPFLAGS+=      -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
39 CPPFLAGS+=      -D_DIAGNOSTIC
40 .endif
42 .if (${USE_HESIOD} != "no")
43 CPPFLAGS+=      -DHESIOD
44 .endif
46 .if (${USE_INET6} != "no")
47 CPPFLAGS+=      -DINET6
48 .endif
50 CPPFLAGS+=      -DNLS
52 .if (${USE_YP} != "no")
53 CPPFLAGS+=      -DYP
54 .endif
56 # Set lint to exit on warnings
57 LINTFLAGS+=     -w
58 # ignore 'empty translation unit' warnings.
59 LINTFLAGS+=     -X 272
61 .include "libcincludes.mk"
63 ARCHDIR=        ${.CURDIR}/arch/${ARCHSUBDIR}
64 AFLAGS+=        -I${ARCHDIR}
65 CLEANFILES+=    tags
67 # Don't try to lint the C library against itself when creating llib-lc.ln
68 LLIBS=
70 INCSDIR=        /usr/include