Makefile.inc revision 1.6 1 1.6 tnozaki # $NetBSD: Makefile.inc,v 1.6 2010/05/30 08:28:53 tnozaki 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.3 christos USE_FORT?= yes
21 1.2 tls
22 1.1 christos USE_SHLIBDIR= yes
23 1.1 christos
24 1.6 tnozaki CITRUS?= yes
25 1.6 tnozaki
26 1.1 christos .include <bsd.own.mk>
27 1.1 christos
28 1.1 christos WARNS=4
29 1.1 christos CPPFLAGS+= -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
30 1.1 christos
31 1.1 christos .if (${USE_HESIOD} != "no")
32 1.1 christos CPPFLAGS+= -DHESIOD
33 1.1 christos .endif
34 1.1 christos
35 1.1 christos .if (${USE_INET6} != "no")
36 1.1 christos CPPFLAGS+= -DINET6
37 1.1 christos .endif
38 1.1 christos
39 1.1 christos CPPFLAGS+= -DNLS
40 1.1 christos
41 1.1 christos .if (${USE_YP} != "no")
42 1.1 christos CPPFLAGS+= -DYP
43 1.1 christos .endif
44 1.1 christos
45 1.1 christos .if ${MACHINE_ARCH} == "i386"
46 1.1 christos # Set lint to exit on warnings
47 1.1 christos LINTFLAGS+= -w
48 1.1 christos .endif
49 1.1 christos # ignore 'empty translation unit' warnings.
50 1.1 christos LINTFLAGS+= -X 272
51 1.1 christos
52 1.4 mrg .include "libcincludes.mk"
53 1.1 christos
54 1.1 christos ARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR}
55 1.1 christos AFLAGS+= -I${ARCHDIR}
56 1.1 christos .if defined(DESTDIR)
57 1.5 mrg AFLAGS+= -nostdinc -isystem ${DESTDIR}/usr/include
58 1.1 christos .endif
59 1.1 christos CLEANFILES+= tags
60 1.1 christos
61 1.1 christos # Don't try to lint the C library against itself when creating llib-lc.ln
62 1.1 christos LLIBS=
63 1.1 christos
64 1.1 christos INCSDIR= /usr/include
65