date and time created 92/07/10 17:24:06 by mckusick
[unix-history] / usr / src / lib / libc / Makefile
CommitLineData
477b2819 1# @(#)Makefile 5.7 (Berkeley) %G%
1b597941 2#
770d844a
KB
3# All library objects contain sccsid strings by default; they may be
4# excluded as a space-saving measure. To produce a library that does
5# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
6# from CFLAGS below. To remove these strings from just the system call
7# stubs, remove just -DSYSLIBC_SCCS from CFLAGS.
8LIB=c
9CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
4af61811 10AINC= -I${.CURDIR}/${MACHINE}
dff79c37 11
edcab917 12.include "${.CURDIR}/db/Makefile.inc"
51a5a002 13.include "${.CURDIR}/compat-43/Makefile.inc"
9a4d880a 14.include "${.CURDIR}/gen/Makefile.inc"
edcab917 15.include "${.CURDIR}/locale/Makefile.inc"
942e9380 16.include "${.CURDIR}/net/Makefile.inc"
52f27732 17.include "${.CURDIR}/quad/Makefile.inc"
9a4d880a
KB
18.include "${.CURDIR}/stdio/Makefile.inc"
19.include "${.CURDIR}/stdlib/Makefile.inc"
9a4d880a 20.include "${.CURDIR}/string/Makefile.inc"
942e9380 21.include "${.CURDIR}/sys/Makefile.inc"
770d844a 22
edf787ba
KB
23KQSRCS= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
24 lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
25 subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
26KSRCS= bcmp.c ffs.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c
27
28libkern: ${KQSRCS} ${KSRCS}
29 cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} /sys/libkern
30
942e9380 31beforeinstall: tags
8d724e11 32 install -c -o bin -g bin -m 444 tags /var/db/libc.tags
edcab917
KB
33
34tags: ${SRCS}
edf787ba
KB
35 ctags ${.ALLSRC:M*.c}
36 egrep -o "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" ${.ALLSRC:M*.s} | \
edcab917
KB
37 sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
38 >> tags; sort -o tags tags
770d844a
KB
39
40.include <bsd.lib.mk>