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