1# @(#)Makefile 8.2 (Berkeley) 2/3/94 2# $Id: Makefile,v 1.21 1998/03/09 06:16:38 jb Exp $ 3# 4# All library objects contain rcsid 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_RCS and -DSYSLIBC_RCS 7# from CFLAGS below. To remove these strings from just the system call 8# stubs, remove just -DSYSLIBC_RCS from CFLAGS. 9LIB=c 10SHLIB_MAJOR= 3 11SHLIB_MINOR= 1 12CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS -I${.CURDIR}/include 13AINC= -I${.CURDIR}/${MACHINE_ARCH} 14CLEANFILES+=tags 15INSTALL_PIC_ARCHIVE= yes 16PRECIOUSLIB= yes 17 18# 19# Don't bother hiding any syscalls (like libc_r does). 20# 21HIDDEN_SYSCALLS= 22 23# 24# Include make rules that are shared with libc_r. 25# 26.include "${.CURDIR}/Makefile.inc" 27 28KQSRCS= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \ 29 lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \ 30 subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c 31KSRCS= bcmp.c ffs.c index.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \ 32 strlen.c strncpy.c 33 34libkern: libkern.gen libkern.${MACHINE_ARCH} 35 36libkern.gen: ${KQSRCS} ${KSRCS} 37 cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern 38 39libkern.${MACHINE_ARCH}:: ${KMSRCS} 40.if defined(KMSRCS) && !empty(KMSRCS) 41 cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${MACHINE_ARCH} 42.endif 43 44.include <bsd.lib.mk> 45