Makefile revision 93048
1#	@(#)Makefile	8.2 (Berkeley) 2/3/94
2# $FreeBSD: head/lib/libc/Makefile 93048 2002-03-23 20:08:00Z obrien $
3#
4# All library objects contain FreeBSD revision strings by default; they may be
5# excluded as a space-saving measure.  To produce a library that does
6# not contain these strings, add -DSTRIP_FBSDID to CFLAGS below.
7# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
8# (for system call stubs) to CFLAGS below.
9LIB=c
10SHLIB_MAJOR= 5
11SHLIB_MINOR= 0
12CFLAGS+=-DLIBC_MAJOR=${SHLIB_MAJOR}
13CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include
14AINC=	-I${.CURDIR}/${MACHINE_ARCH}
15CLEANFILES+=tags
16INSTALL_PIC_ARCHIVE=	yes
17PRECIOUSLIB=	yes
18
19#
20# Include make rules that are shared with libc_r.
21#
22.include "${.CURDIR}/Makefile.inc"
23
24KQSRCS=	adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
25	lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
26	subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
27KSRCS=	bcmp.c ffs.c index.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \
28	strlen.c strncpy.c
29
30libkern: libkern.gen libkern.${MACHINE_ARCH}
31
32libkern.gen: ${KQSRCS} ${KSRCS}
33	cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
34
35libkern.${MACHINE_ARCH}:: ${KMSRCS}
36.if defined(KMSRCS) && !empty(KMSRCS)
37	cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${MACHINE_ARCH}
38.endif
39
40.include <bsd.lib.mk>
41