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

Annotation of src/lib/libc/Makefile, Revision 1.139

1.139   ! uebayasi    1: #      $NetBSD$
1.36      cgd         2: #      @(#)Makefile    8.2 (Berkeley) 2/3/94
1.1       cgd         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
1.71      lukem       7: # from CPPFLAGS below.  To remove these strings from just the system call
                      8: # stubs, remove just -DSYSLIBC_SCCS from CPPFLAGS.
1.28      jtc         9: #
                     10: # The NLS (message catalog) functions are always in libc.  To choose that
                     11: # strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS
1.71      lukem      12: # functions, put -DNLS on the CPPFLAGS line below.
1.4       deraadt    13: #
1.6       deraadt    14: # The YP functions are always in libc. To choose that getpwent() and friends
1.71      lukem      15: # actually call the YP functions, put -DYP on the CPPFLAGS line below.
1.79      lukem      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.
1.4       deraadt    19:
1.127     christos   20: .include "Makefile.inc"
1.107     lukem      21:
1.82      tv         22: LIB=           c
1.117     christos   23: CPPFLAGS+=     -I${.CURDIR}/include -I${.CURDIR}
1.104     thorpej    24:
1.136     mrg        25: LIBCDIR=       ${.CURDIR}
                     26:
1.82      tv         27: .if exists (${ARCHDIR}/Makefile.inc)
                     28: .PATH: ${ARCHDIR}
                     29: .include "${ARCHDIR}/Makefile.inc"
1.9       deraadt    30: .endif
1.127     christos   31:
1.114     matt       32: .if exists (${ARCHDIR}/genassym.cf)
                     33: DPSRCS+=       assym.h
                     34: CLEANFILES+=   assym.h assym.h.tmp
                     35:
1.122     thorpej    36: assym.h: ${ARCHDIR}/genassym.cf
1.114     matt       37:        ${_MKTARGET_CREATE}
1.122     thorpej    38:        ${TOOL_GENASSYM} -- ${CC} ${CFLAGS} \
1.121     matt       39:                ${CPPFLAGS} ${CPPFLAGS.assym.h} ${PROF} \
1.114     matt       40:                < ${ARCHDIR}/genassym.cf > assym.h.tmp && \
                     41:        mv -f assym.h.tmp assym.h
                     42: .endif
1.1       cgd        43:
1.127     christos   44: # The following controls how to build compatibility code for old NetBSD
                     45: # binaries. If BUILDCOLD is yes, then we build a separate library; otherwise
                     46: # we include the code in libc.
                     47: BUILDCOLD?= no
                     48: .if "${BUILDCOLD}" == "yes"
                     49: SUBDIR=compat
                     50: .include <bsd.subdir.mk>
                     51: .else
                     52: COMPATDIR=${.CURDIR}/compat
                     53: .include "${.CURDIR}/compat/Makefile.inc"
                     54: .endif
                     55:
1.125     christos   56: .include "${.CURDIR}/../../common/lib/libc/Makefile.inc"
1.135     ad         57: .include "${.CURDIR}/atomic/Makefile.inc"
1.7       cgd        58: .include "${.CURDIR}/db/Makefile.inc"
1.111     tshiozak   59: .include "${.CURDIR}/citrus/Makefile.inc"
1.1       cgd        60: .include "${.CURDIR}/compat-43/Makefile.inc"
1.88      minoura    61: .include "${.CURDIR}/dlfcn/Makefile.inc"
1.126     kleink     62: .include "${.CURDIR}/gdtoa/Makefile.inc"
1.1       cgd        63: .include "${.CURDIR}/gen/Makefile.inc"
1.24      cgd        64: .include "${.CURDIR}/gmon/Makefile.inc"
1.81      explorer   65: .include "${.CURDIR}/hash/Makefile.inc"
1.111     tshiozak   66: .include "${.CURDIR}/iconv/Makefile.inc"
1.117     christos   67: .include "${.CURDIR}/inet/Makefile.inc"
                     68: .include "${.CURDIR}/isc/Makefile.inc"
1.1       cgd        69: .include "${.CURDIR}/locale/Makefile.inc"
1.52      thorpej    70: .include "${.CURDIR}/md/Makefile.inc"
1.132     ad         71: .include "${.CURDIR}/misc/Makefile.inc"
1.1       cgd        72: .include "${.CURDIR}/net/Makefile.inc"
1.117     christos   73: .include "${.CURDIR}/nameser/Makefile.inc"
1.25      jtc        74: .include "${.CURDIR}/nls/Makefile.inc"
1.78      eeh        75: .if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64")
1.24      cgd        76: .include "${.CURDIR}/quad/Makefile.inc"
1.34      cgd        77: .endif
1.24      cgd        78: .include "${.CURDIR}/regex/Makefile.inc"
1.117     christos   79: .include "${.CURDIR}/resolv/Makefile.inc"
1.24      cgd        80: .include "${.CURDIR}/rpc/Makefile.inc"
1.131     tls        81: .include "${.CURDIR}/ssp/Makefile.inc"
1.1       cgd        82: .include "${.CURDIR}/stdio/Makefile.inc"
                     83: .include "${.CURDIR}/stdlib/Makefile.inc"
                     84: .include "${.CURDIR}/string/Makefile.inc"
1.40      jtc        85: .include "${.CURDIR}/termios/Makefile.inc"
1.108     thorpej    86: .include "${.CURDIR}/thread-stub/Makefile.inc"
1.38      jtc        87: .include "${.CURDIR}/time/Makefile.inc"
1.1       cgd        88: .include "${.CURDIR}/sys/Makefile.inc"
1.119     thorpej    89: .include "${.CURDIR}/uuid/Makefile.inc"
1.104     thorpej    90: .if (${MKYP} != "no")
1.4       deraadt    91: .include "${.CURDIR}/yp/Makefile.inc"
1.104     thorpej    92: .endif
1.41      jtc        93:
1.138     dsl        94: # Remove from SRCS the .c files for any .S files added by the MD makefiles,
                     95: # also remove from SRCS the .c files for the .S and .c files in NO_SRCS.
                     96: # Add the .c file for .S files (in both variables) to LSRCS so that the
                     97: # 'normal' .c file for assembly files is used for the lint librray.
                     98: #
                     99: # Usage:
                    100: # Add .S files to NO_SRSC when another .S file provides the entry points.
                    101: # Add .c files to NO_SRSC when another .c file provides the entry points.
                    102: # (lint is run on all .c files in SRCS)
                    103:
                    104: .for check_file in ${SRCS:M*.S} ${NO_SRCS}
                    105: unwanted_file := ${SRCS:M${check_file:.S=.c}}
1.137     dsl       106: .if "${unwanted_file}" != ""
                    107: SRCS := ${SRCS:N${unwanted_file}}
1.138     dsl       108: .if "${unwanted_file}" != "${check_file}"
                    109: LSRCS := ${LSRCS} ${unwanted_file}
                    110: .endif
1.137     dsl       111: .endif
                    112: .endfor
                    113:
1.109     jmmv      114: NLS=   C.msg Pig.msg ca.msg cs.msg de.msg es.msg fi.msg fr.msg nl.msg \
1.110     salo      115:        no.msg pl.msg sk.msg sv.msg
1.1       cgd       116:
1.139   ! uebayasi  117: realall: ${.OBJDIR}/tags
        !           118: ${.OBJDIR}/tags: ${SRCS}
1.118     lukem     119:        ${_MKTARGET_CREATE}
1.115     ross      120:        -${TOOL_CTAGS} -w ${.ALLSRC:M*.c}
                    121:        -egrep "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" /dev/null ${.ALLSRC:M*.S} | \
1.36      cgd       122:            sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
1.64      christos  123:            >> ${.TARGET}; sort -o ${.TARGET} ${.TARGET}
1.65      christos  124:
1.139   ! uebayasi  125: FILES=         ${.OBJDIR}/tags
1.82      tv        126: FILESNAME=     libc.tags
                    127: FILESDIR=      /var/db
1.32      cgd       128:
1.97      itojun    129:
1.103     tshiozak  130: # workaround for I18N stuffs: build singlebyte setlocale() for libc.a,
1.97      itojun    131: # multibyte for libc.so.  the quirk should be removed when we support
                    132: # dlopen() from within statically linked binaries.
1.130     tnozaki   133: CSHLIBFLAGS+=  -D_I18N_DYNAMIC
1.105     yamt      134:
                    135: .include <bsd.lib.mk>
1.133     ad        136:
                    137: # force the dynamic linker to initialize libc first
1.134     he        138: SHLIB_SHFLAGS+=        -Wl,-z,initfirst
1.133     ad        139:

CVSweb <webmaster@jp.NetBSD.org>