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

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

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

CVSweb <webmaster@jp.NetBSD.org>