segmentless smp fixes
[minix3.git] / lib / libc / Makefile.inc
bloba6e22ad1cb46c6bb9806aaee901a648c1ee93557
1 #       $NetBSD: Makefile.inc,v 1.6 2010/05/30 08:28:53 tnozaki 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.
20 USE_FORT?=      yes
22 USE_SHLIBDIR=   yes
24 CITRUS?=        yes
26 .include <bsd.own.mk>
28 WARNS=4
29 .if defined(__MINIX)
30 CPPFLAGS+=      -D_LIBC
31 .else
32 CPPFLAGS+=      -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
33 .endif
35 .if (${USE_HESIOD} != "no")
36 CPPFLAGS+=      -DHESIOD
37 .endif
39 .if (${USE_INET6} != "no")
40 CPPFLAGS+=      -DINET6
41 .endif
43 CPPFLAGS+=      -DNLS
45 .if (${USE_YP} != "no")
46 CPPFLAGS+=      -DYP
47 .endif
49 .if ${MACHINE_ARCH} == "i386"
50 # Set lint to exit on warnings
51 LINTFLAGS+=     -w
52 .endif
53 # ignore 'empty translation unit' warnings.
54 LINTFLAGS+=     -X 272
56 .include "libcincludes.mk"
58 ARCHDIR=        ${.CURDIR}/arch/${ARCHSUBDIR}
59 AFLAGS+=        -I${ARCHDIR}
60 .if defined(DESTDIR)
61 AFLAGS+=        -nostdinc -isystem ${DESTDIR}/usr/include
62 .endif
63 CLEANFILES+=    tags
65 # Don't try to lint the C library against itself when creating llib-lc.ln
66 LLIBS=
68 INCSDIR=        /usr/include