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

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

1.123   ! christos    1: #      $NetBSD: Makefile,v 1.122 2005/05/30 16:04:18 thorpej Exp $
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.107     lukem      20: USE_SHLIBDIR=  yes
                     21:
1.104     thorpej    22: .include <bsd.own.mk>
                     23:
1.82      tv         24: LIB=           c
1.104     thorpej    25: CPPFLAGS+=     -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
1.117     christos   26: CPPFLAGS+=     -I${.CURDIR}/include -I${.CURDIR}
1.104     thorpej    27:
                     28: .if (${USE_HESIOD} != "no")
                     29: CPPFLAGS+=     -DHESIOD
                     30: .endif
                     31:
1.113     matt       32: .if (${USE_INET6} != "no")
1.87      itojun     33: CPPFLAGS+=     -DINET6
1.113     matt       34: .endif
1.120     lukem      35:
1.104     thorpej    36: CPPFLAGS+=     -DNLS
1.100     lukem      37:
1.104     thorpej    38: .if (${USE_YP} != "no")
                     39: CPPFLAGS+=     -DYP
                     40: .endif
1.98      christos   41:
                     42: .if ${MACHINE_ARCH} == "i386"
                     43: # Set lint to exit on warnings
                     44: LINTFLAGS+=    -w
                     45: .endif
                     46: # ignore 'empty translation unit' warnings.
                     47: LINTFLAGS+=    -X 272
1.82      tv         48:
1.95      itojun     49: .if exists(${.CURDIR}/arch/${MACHINE_ARCH})
                     50: ARCHSUBDIR=    ${MACHINE_ARCH}
                     51: .elif exists(${.CURDIR}/arch/${MACHINE_CPU})
                     52: ARCHSUBDIR=    ${MACHINE_CPU}
                     53: .else
                     54: .BEGIN:
                     55:        @echo no ARCHSUBDIR for ${MACHINE_ARCH} nor ${MACHINE_CPU}
                     56:        @false
                     57: .endif
                     58:
1.83      drochner   59: ARCHDIR=       ${.CURDIR}/arch/${ARCHSUBDIR}
1.116     lukem      60: AFLAGS+=       -I${ARCHDIR}
1.27      mycroft    61: .if defined(DESTDIR)
1.116     lukem      62: AFLAGS+=       -nostdinc -idirafter ${DESTDIR}/usr/include
1.27      mycroft    63: .endif
1.102     thorpej    64: CLEANFILES+=   tags
1.51      cgd        65:
1.73      mikel      66: # Don't try to lint the C library against itself when creating llib-lc.ln
1.51      cgd        67: LLIBS=
1.89      fvdl       68:
                     69: INCSDIR=       /usr/include
1.9       deraadt    70:
1.82      tv         71: .if exists (${ARCHDIR}/Makefile.inc)
                     72: .PATH: ${ARCHDIR}
                     73: .include "${ARCHDIR}/Makefile.inc"
1.9       deraadt    74: .endif
1.114     matt       75: .if exists (${ARCHDIR}/genassym.cf)
                     76: DPSRCS+=       assym.h
                     77: CLEANFILES+=   assym.h assym.h.tmp
                     78:
1.122     thorpej    79: assym.h: ${ARCHDIR}/genassym.cf
1.114     matt       80:        ${_MKTARGET_CREATE}
1.122     thorpej    81:        ${TOOL_GENASSYM} -- ${CC} ${CFLAGS} \
1.121     matt       82:                ${CPPFLAGS} ${CPPFLAGS.assym.h} ${PROF} \
1.114     matt       83:                < ${ARCHDIR}/genassym.cf > assym.h.tmp && \
                     84:        mv -f assym.h.tmp assym.h
                     85: .endif
1.1       cgd        86:
1.7       cgd        87: .include "${.CURDIR}/db/Makefile.inc"
1.111     tshiozak   88: .include "${.CURDIR}/citrus/Makefile.inc"
1.1       cgd        89: .include "${.CURDIR}/compat-43/Makefile.inc"
1.123   ! christos   90: .include "${.CURDIR}/compat/Makefile.inc"
1.88      minoura    91: .include "${.CURDIR}/dlfcn/Makefile.inc"
1.1       cgd        92: .include "${.CURDIR}/gen/Makefile.inc"
1.24      cgd        93: .include "${.CURDIR}/gmon/Makefile.inc"
1.81      explorer   94: .include "${.CURDIR}/hash/Makefile.inc"
1.111     tshiozak   95: .include "${.CURDIR}/iconv/Makefile.inc"
1.117     christos   96: .include "${.CURDIR}/inet/Makefile.inc"
                     97: .include "${.CURDIR}/isc/Makefile.inc"
1.1       cgd        98: .include "${.CURDIR}/locale/Makefile.inc"
1.52      thorpej    99: .include "${.CURDIR}/md/Makefile.inc"
1.1       cgd       100: .include "${.CURDIR}/net/Makefile.inc"
1.117     christos  101: .include "${.CURDIR}/nameser/Makefile.inc"
1.25      jtc       102: .include "${.CURDIR}/nls/Makefile.inc"
1.78      eeh       103: .if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64")
1.24      cgd       104: .include "${.CURDIR}/quad/Makefile.inc"
1.34      cgd       105: .endif
1.24      cgd       106: .include "${.CURDIR}/regex/Makefile.inc"
1.117     christos  107: .include "${.CURDIR}/resolv/Makefile.inc"
1.24      cgd       108: .include "${.CURDIR}/rpc/Makefile.inc"
1.1       cgd       109: .include "${.CURDIR}/stdio/Makefile.inc"
                    110: .include "${.CURDIR}/stdlib/Makefile.inc"
                    111: .include "${.CURDIR}/string/Makefile.inc"
1.40      jtc       112: .include "${.CURDIR}/termios/Makefile.inc"
1.108     thorpej   113: .include "${.CURDIR}/thread-stub/Makefile.inc"
1.38      jtc       114: .include "${.CURDIR}/time/Makefile.inc"
1.1       cgd       115: .include "${.CURDIR}/sys/Makefile.inc"
1.119     thorpej   116: .include "${.CURDIR}/uuid/Makefile.inc"
1.104     thorpej   117: .if (${MKYP} != "no")
1.4       deraadt   118: .include "${.CURDIR}/yp/Makefile.inc"
1.104     thorpej   119: .endif
1.41      jtc       120:
1.109     jmmv      121: NLS=   C.msg Pig.msg ca.msg cs.msg de.msg es.msg fi.msg fr.msg nl.msg \
1.110     salo      122:        no.msg pl.msg sk.msg sv.msg
1.1       cgd       123:
1.106     lukem     124: LIBKERN=       ${NETBSDSRCDIR}/sys/lib/libkern
1.14      jtc       125:
1.80      bouyer    126: KSRCS= bcopy.c bcmp.c bswap16.c bswap32.c bswap64.c bzero.c ffs.c \
1.76      perry     127:        strcat.c strchr.c strcmp.c strcpy.c strlen.c \
                    128:        strncmp.c strncpy.c strrchr.c \
                    129:        htonl.c htons.c ntohl.c ntohs.c md5c.c \
                    130:        memchr.c memcmp.c memcpy.c memmove.c memset.c \
                    131:        index.c rindex.c
1.78      eeh       132: .if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64")
1.22      cgd       133: KSRCS+=        adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
                    134:        lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
                    135:        subdi3.c  ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
                    136: KINCLUDES+=    quad/quad.h
1.35      cgd       137: .endif
1.14      jtc       138:
1.15      jtc       139: copy-to-libkern:       copy-to-libkern-machind copy-to-libkern-machdep
                    140:
                    141: copy-to-libkern-machind: ${KSRCS}
1.14      jtc       142:        cp -p ${.ALLSRC} ${LIBKERN}
1.35      cgd       143: .if defined(KINCLUDES) && !empty(KINCLUDES)
1.22      cgd       144:        (cd ${.CURDIR} ; cp -p ${KINCLUDES} ${LIBKERN})
1.35      cgd       145: .endif
1.14      jtc       146:
1.15      jtc       147: copy-to-libkern-machdep: ${KMSRCS}
                    148: .if defined(KMSRCS) && !empty(KMSRCS)
1.83      drochner  149:        cp -p ${.ALLSRC} ${LIBKERN}/arch/${ARCHSUBDIR}
1.18      cgd       150: .endif
                    151: .if defined(KMINCLUDES) && !empty(KMINCLUDES)
1.83      drochner  152:        (cd ${.CURDIR} ; cp -p ${KMINCLUDES} ${LIBKERN}/arch/${ARCHSUBDIR})
1.15      jtc       153: .endif
                    154:
1.14      jtc       155: rm-from-libkern:
                    156:        for i in ${KSRCS}; do rm -f ${LIBKERN}/$$i; done
1.15      jtc       157: .if defined(KMSRCS) && !empty(KMSRCS)
1.83      drochner  158:        for i in ${KMSRCS}; do rm -f ${LIBKERN}/arch/${ARCHSUBDIR}/$$i; done
1.15      jtc       159: .endif
1.36      cgd       160:
1.102     thorpej   161: realall: tags
                    162: tags: ${SRCS}
1.118     lukem     163:        ${_MKTARGET_CREATE}
1.115     ross      164:        -${TOOL_CTAGS} -w ${.ALLSRC:M*.c}
                    165:        -egrep "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" /dev/null ${.ALLSRC:M*.S} | \
1.36      cgd       166:            sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
1.64      christos  167:            >> ${.TARGET}; sort -o ${.TARGET} ${.TARGET}
1.65      christos  168:
1.102     thorpej   169: FILES=         tags
1.82      tv        170: FILESNAME=     libc.tags
                    171: FILESDIR=      /var/db
1.32      cgd       172:
1.97      itojun    173:
1.103     tshiozak  174: # workaround for I18N stuffs: build singlebyte setlocale() for libc.a,
1.97      itojun    175: # multibyte for libc.so.  the quirk should be removed when we support
                    176: # dlopen() from within statically linked binaries.
1.105     yamt      177: CSHLIBFLAGS+=  -D_I18N_DYNAMIC
                    178:
                    179: .include <bsd.lib.mk>

CVSweb <webmaster@jp.NetBSD.org>