NetBSD/lib/libc/Makefile

100 lines
3.4 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.51 1996/12/19 07:52:52 cgd Exp $
# @(#)Makefile 8.2 (Berkeley) 2/3/94
1993-03-21 12:45:37 +03:00
#
# All library objects contain sccsid strings by default; they may be
# excluded as a space-saving measure. To produce a library that does
# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
# from CFLAGS below. To remove these strings from just the system call
# stubs, remove just -DSYSLIBC_SCCS from CFLAGS.
#
# The NLS (message catalog) functions are always in libc. To choose that
# strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS
# functions, put -DNLS on the CFLAGS line below.
#
# The YP functions are always in libc. To choose that getpwent() and friends
# actually call the YP functions, put -DYP on the CFLAGS line below.
1993-03-21 12:45:37 +03:00
LIB=c
1996-11-07 22:15:22 +03:00
CFLAGS+=-DNLS -DYP -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT -I${.CURDIR}/include
1993-12-04 05:31:56 +03:00
AINC= -I${.CURDIR}/arch/${MACHINE_ARCH}
.if defined(DESTDIR)
AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include
.endif
CLEANFILES+=tags
1993-03-21 12:45:37 +03:00
# Don't try to lint the C libarary against itself when creating llib-lc.ln
LLIBS=
1993-12-04 05:31:56 +03:00
.if exists (${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc)
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
.endif
.include "${.CURDIR}/db/Makefile.inc"
1993-03-21 12:45:37 +03:00
.include "${.CURDIR}/compat-43/Makefile.inc"
.include "${.CURDIR}/gen/Makefile.inc"
.include "${.CURDIR}/gmon/Makefile.inc"
1993-03-21 12:45:37 +03:00
.include "${.CURDIR}/locale/Makefile.inc"
.include "${.CURDIR}/net/Makefile.inc"
1994-05-30 02:09:13 +04:00
.include "${.CURDIR}/nls/Makefile.inc"
1995-02-10 20:45:39 +03:00
.if (${MACHINE_ARCH} != "alpha")
.include "${.CURDIR}/quad/Makefile.inc"
1995-02-10 20:45:39 +03:00
.endif
.include "${.CURDIR}/regex/Makefile.inc"
.include "${.CURDIR}/rpc/Makefile.inc"
1993-03-21 12:45:37 +03:00
.include "${.CURDIR}/stdio/Makefile.inc"
.include "${.CURDIR}/stdlib/Makefile.inc"
.include "${.CURDIR}/string/Makefile.inc"
1995-04-25 04:00:58 +04:00
.include "${.CURDIR}/termios/Makefile.inc"
1995-03-13 08:26:07 +03:00
.include "${.CURDIR}/time/Makefile.inc"
1993-03-21 12:45:37 +03:00
.include "${.CURDIR}/sys/Makefile.inc"
.include "${.CURDIR}/yp/Makefile.inc"
1993-03-21 12:45:37 +03:00
NLS= C.msg Pig.msg de.msg es.msg fr.msg
1994-10-19 06:05:22 +03:00
LIBKERN= ${.CURDIR}/../../sys/lib/libkern
KSRCS= bcmp.c bzero.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncmp.c \
strncpy.c htonl.c htons.c ntohl.c ntohs.c memcmp.c memset.c
.if (${MACHINE_ARCH} != "alpha")
1993-12-04 08:15:26 +03:00
KSRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
KINCLUDES+= quad/quad.h
.endif
copy-to-libkern: copy-to-libkern-machind copy-to-libkern-machdep
copy-to-libkern-machind: ${KSRCS}
cp -p ${.ALLSRC} ${LIBKERN}
.if defined(KINCLUDES) && !empty(KINCLUDES)
1993-12-04 08:15:26 +03:00
(cd ${.CURDIR} ; cp -p ${KINCLUDES} ${LIBKERN})
.endif
copy-to-libkern-machdep: ${KMSRCS}
.if defined(KMSRCS) && !empty(KMSRCS)
1994-06-30 10:44:54 +04:00
cp -p ${.ALLSRC} ${LIBKERN}/arch/${MACHINE_ARCH}
.endif
.if defined(KMINCLUDES) && !empty(KMINCLUDES)
1994-06-30 10:44:54 +04:00
(cd ${.CURDIR} ; cp -p ${KMINCLUDES} ${LIBKERN}/arch/${MACHINE_ARCH})
.endif
rm-from-libkern:
for i in ${KSRCS}; do rm -f ${LIBKERN}/$$i; done
.if defined(KMSRCS) && !empty(KMSRCS)
1994-06-30 10:44:54 +04:00
for i in ${KMSRCS}; do rm -f ${LIBKERN}/arch/${MACHINE_ARCH}/$$i; done
.endif
1995-01-30 15:21:41 +03:00
all: tags
tags: ${SRCS}
ctags ${.ALLSRC:M*.c}
egrep "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" /dev/null ${.ALLSRC:M*.S} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> tags; sort -o tags tags
beforeinstall:
1996-10-18 09:45:01 +04:00
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 tags \
${DESTDIR}/var/db/libc.tags
1993-03-21 12:45:37 +03:00
.include <bsd.lib.mk>