[BACK]Return to Makefile.inc CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc

Annotation of src/lib/libc/Makefile.inc, Revision 1.19

1.19    ! christos    1: #      $NetBSD: Makefile.inc,v 1.18 2015/08/28 11:45:02 joerg Exp $
1.1       christos    2: #      @(#)Makefile    8.2 (Berkeley) 2/3/94
                      3: #
                      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.
                      9: #
                     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.
                     13: #
                     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.
                     16: #
                     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:
1.19    ! christos   20: NOSANITIZER=   # defined
1.3       christos   21: USE_FORT?=     yes
1.2       tls        22:
1.1       christos   23: USE_SHLIBDIR=  yes
                     24:
                     25: .include <bsd.own.mk>
                     26:
1.17      pooka      27: # build libc suitable for rumprun software stack, i.e. are system calls
                     28: # rump kernel function calls instead of kernel traps?
                     29: RUMPRUN?=      no
                     30:
1.14      christos   31: WARNS=5
1.13      matt       32: CPPFLAGS+=     -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
1.18      joerg      33: CPPFLAGS+=     -D_DIAGNOSTIC
                     34: .if defined(MLIBDIR)
                     35: CPPFLAGS+=     -DMLIBDIR=\"${MLIBDIR}\"
                     36: .endif
1.1       christos   37:
                     38: .if (${USE_HESIOD} != "no")
                     39: CPPFLAGS+=     -DHESIOD
                     40: .endif
                     41:
                     42: .if (${USE_INET6} != "no")
                     43: CPPFLAGS+=     -DINET6
                     44: .endif
                     45:
                     46: CPPFLAGS+=     -DNLS
                     47:
                     48: .if (${USE_YP} != "no")
                     49: CPPFLAGS+=     -DYP
                     50: .endif
                     51:
                     52: # Set lint to exit on warnings
1.15      joerg      53: #LINTFLAGS+=   -w
1.1       christos   54: # ignore 'empty translation unit' warnings.
                     55: LINTFLAGS+=    -X 272
                     56:
1.4       mrg        57: .include "libcincludes.mk"
1.1       christos   58:
                     59: ARCHDIR=       ${.CURDIR}/arch/${ARCHSUBDIR}
                     60: AFLAGS+=       -I${ARCHDIR}
                     61: CLEANFILES+=   tags
                     62:
                     63: # Don't try to lint the C library against itself when creating llib-lc.ln
                     64: LLIBS=
                     65:
                     66: INCSDIR=       /usr/include

CVSweb <webmaster@jp.NetBSD.org>