Makefile revision 1.103
11.103Stshiozak# $NetBSD: Makefile,v 1.103 2002/03/17 22:14:17 tshiozak Exp $ 21.36Scgd# @(#)Makefile 8.2 (Berkeley) 2/3/94 31.1Scgd# 41.1Scgd# All library objects contain sccsid strings by default; they may be 51.1Scgd# excluded as a space-saving measure. To produce a library that does 61.1Scgd# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS 71.71Slukem# from CPPFLAGS below. To remove these strings from just the system call 81.71Slukem# stubs, remove just -DSYSLIBC_SCCS from CPPFLAGS. 91.28Sjtc# 101.28Sjtc# The NLS (message catalog) functions are always in libc. To choose that 111.28Sjtc# strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS 121.71Slukem# functions, put -DNLS on the CPPFLAGS line below. 131.4Sderaadt# 141.6Sderaadt# The YP functions are always in libc. To choose that getpwent() and friends 151.71Slukem# actually call the YP functions, put -DYP on the CPPFLAGS line below. 161.79Slukem# 171.79Slukem# The Hesiod functions are always in libc. To choose that getpwent() and friends 181.79Slukem# actually call the Hesiod functions, put -DHESIOD on the CPPFLAGS line below. 191.4Sderaadt 201.82StvLIB= c 211.100SlukemUSE_SHLIBDIR= yes 221.82StvCPPFLAGS+= -D_LIBC -DNLS -DYP -DHESIOD -DLIBC_SCCS -DSYSLIBC_SCCS \ 231.82Stv -D_REENTRANT -I${.CURDIR}/include 241.87SitojunCPPFLAGS+= -DINET6 251.100Slukem 261.100Slukem.include <bsd.own.mk> 271.98Schristos 281.98Schristos.if ${MACHINE_ARCH} == "i386" 291.98Schristos# Set lint to exit on warnings 301.98SchristosLINTFLAGS+= -w 311.98Schristos.endif 321.98Schristos# ignore 'empty translation unit' warnings. 331.98SchristosLINTFLAGS+= -X 272 341.82Stv 351.95Sitojun.if exists(${.CURDIR}/arch/${MACHINE_ARCH}) 361.95SitojunARCHSUBDIR= ${MACHINE_ARCH} 371.95Sitojun.elif exists(${.CURDIR}/arch/${MACHINE_CPU}) 381.95SitojunARCHSUBDIR= ${MACHINE_CPU} 391.95Sitojun.else 401.95Sitojun.BEGIN: 411.95Sitojun @echo no ARCHSUBDIR for ${MACHINE_ARCH} nor ${MACHINE_CPU} 421.95Sitojun @false 431.95Sitojun.endif 441.95Sitojun 451.83SdrochnerARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR} 461.82StvAINC= -I${ARCHDIR} 471.27Smycroft.if defined(DESTDIR) 481.82StvAINC+= -nostdinc -idirafter ${DESTDIR}/usr/include 491.27Smycroft.endif 501.102SthorpejCLEANFILES+= tags 511.51Scgd 521.73Smikel# Don't try to lint the C library against itself when creating llib-lc.ln 531.51ScgdLLIBS= 541.89Sfvdl 551.89SfvdlINCSDIR= /usr/include 561.9Sderaadt 571.82Stv.if exists (${ARCHDIR}/Makefile.inc) 581.82Stv.PATH: ${ARCHDIR} 591.82Stv.include "${ARCHDIR}/Makefile.inc" 601.9Sderaadt.endif 611.1Scgd 621.7Scgd.include "${.CURDIR}/db/Makefile.inc" 631.1Scgd.include "${.CURDIR}/compat-43/Makefile.inc" 641.88Sminoura.include "${.CURDIR}/dlfcn/Makefile.inc" 651.1Scgd.include "${.CURDIR}/gen/Makefile.inc" 661.24Scgd.include "${.CURDIR}/gmon/Makefile.inc" 671.81Sexplorer.include "${.CURDIR}/hash/Makefile.inc" 681.103Stshiozak.include "${.CURDIR}/citrus/Makefile.inc" 691.1Scgd.include "${.CURDIR}/locale/Makefile.inc" 701.52Sthorpej.include "${.CURDIR}/md/Makefile.inc" 711.1Scgd.include "${.CURDIR}/net/Makefile.inc" 721.25Sjtc.include "${.CURDIR}/nls/Makefile.inc" 731.78Seeh.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64") 741.24Scgd.include "${.CURDIR}/quad/Makefile.inc" 751.34Scgd.endif 761.24Scgd.include "${.CURDIR}/regex/Makefile.inc" 771.24Scgd.include "${.CURDIR}/rpc/Makefile.inc" 781.1Scgd.include "${.CURDIR}/stdio/Makefile.inc" 791.1Scgd.include "${.CURDIR}/stdlib/Makefile.inc" 801.1Scgd.include "${.CURDIR}/string/Makefile.inc" 811.40Sjtc.include "${.CURDIR}/termios/Makefile.inc" 821.38Sjtc.include "${.CURDIR}/time/Makefile.inc" 831.1Scgd.include "${.CURDIR}/sys/Makefile.inc" 841.4Sderaadt.include "${.CURDIR}/yp/Makefile.inc" 851.41Sjtc 861.99SzuntumNLS= C.msg Pig.msg cs.msg de.msg es.msg fi.msg fr.msg nl.msg no.msg \ 871.99Szuntum sv.msg pl.msg 881.1Scgd 891.30ScgdLIBKERN= ${.CURDIR}/../../sys/lib/libkern 901.14Sjtc 911.80SbouyerKSRCS= bcopy.c bcmp.c bswap16.c bswap32.c bswap64.c bzero.c ffs.c \ 921.76Sperry strcat.c strchr.c strcmp.c strcpy.c strlen.c \ 931.76Sperry strncmp.c strncpy.c strrchr.c \ 941.76Sperry htonl.c htons.c ntohl.c ntohs.c md5c.c \ 951.76Sperry memchr.c memcmp.c memcpy.c memmove.c memset.c \ 961.76Sperry index.c rindex.c 971.78Seeh.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64") 981.22ScgdKSRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \ 991.22Scgd lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \ 1001.22Scgd subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c 1011.22ScgdKINCLUDES+= quad/quad.h 1021.35Scgd.endif 1031.14Sjtc 1041.15Sjtccopy-to-libkern: copy-to-libkern-machind copy-to-libkern-machdep 1051.15Sjtc 1061.15Sjtccopy-to-libkern-machind: ${KSRCS} 1071.14Sjtc cp -p ${.ALLSRC} ${LIBKERN} 1081.35Scgd.if defined(KINCLUDES) && !empty(KINCLUDES) 1091.22Scgd (cd ${.CURDIR} ; cp -p ${KINCLUDES} ${LIBKERN}) 1101.35Scgd.endif 1111.14Sjtc 1121.15Sjtccopy-to-libkern-machdep: ${KMSRCS} 1131.15Sjtc.if defined(KMSRCS) && !empty(KMSRCS) 1141.83Sdrochner cp -p ${.ALLSRC} ${LIBKERN}/arch/${ARCHSUBDIR} 1151.18Scgd.endif 1161.18Scgd.if defined(KMINCLUDES) && !empty(KMINCLUDES) 1171.83Sdrochner (cd ${.CURDIR} ; cp -p ${KMINCLUDES} ${LIBKERN}/arch/${ARCHSUBDIR}) 1181.15Sjtc.endif 1191.15Sjtc 1201.14Sjtcrm-from-libkern: 1211.14Sjtc for i in ${KSRCS}; do rm -f ${LIBKERN}/$$i; done 1221.15Sjtc.if defined(KMSRCS) && !empty(KMSRCS) 1231.83Sdrochner for i in ${KMSRCS}; do rm -f ${LIBKERN}/arch/${ARCHSUBDIR}/$$i; done 1241.15Sjtc.endif 1251.36Scgd 1261.101StvCTAGS?= ctags 1271.101Stv 1281.102Sthorpejrealall: tags 1291.102Sthorpejtags: ${SRCS} 1301.101Stv ${CTAGS} -w ${.ALLSRC:M*.c} 1311.37Sjtc egrep "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" /dev/null ${.ALLSRC:M*.S} | \ 1321.36Scgd sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ 1331.64Schristos >> ${.TARGET}; sort -o ${.TARGET} ${.TARGET} 1341.65Schristos 1351.102SthorpejFILES= tags 1361.82StvFILESNAME= libc.tags 1371.82StvFILESDIR= /var/db 1381.32Scgd 1391.1Scgd.include <bsd.lib.mk> 1401.97Sitojun 1411.103Stshiozak# workaround for I18N stuffs: build singlebyte setlocale() for libc.a, 1421.97Sitojun# multibyte for libc.so. the quirk should be removed when we support 1431.97Sitojun# dlopen() from within statically linked binaries. 1441.103StshiozakCPICFLAGS+= -D_I18N_DYNAMIC 145