xref: /dragonfly/lib/libc/Makefile (revision 71126e33)
1#	@(#)Makefile	8.2 (Berkeley) 2/3/94
2# $FreeBSD: src/lib/libc/Makefile,v 1.24 1999/09/29 15:18:29 marcel Exp $
3# $DragonFly: src/lib/libc/Makefile,v 1.4 2004/06/06 22:44:34 dillon Exp $
4#
5# All library objects contain rcsid strings by default; they may be
6# excluded as a space-saving measure.  To produce a library that does
7# not contain these strings, delete -DLIBC_RCS and -DSYSLIBC_RCS
8# from CFLAGS below.  To remove these strings from just the system call
9# stubs, remove just -DSYSLIBC_RCS from CFLAGS.
10LIB=c
11SHLIB_MAJOR= 4
12SHLIB_MINOR= 0
13CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS -I${.CURDIR}/include
14AINC=	-I${.CURDIR}/${MACHINE_ARCH}
15CLEANFILES+=tags
16INSTALL_PIC_ARCHIVE=	yes
17PRECIOUSLIB=	yes
18
19#
20# Don't bother hiding any syscalls (like libc_r does).
21#
22HIDDEN_SYSCALLS=
23
24#
25# Include make rules that are shared with libc_r.
26#
27.include "${.CURDIR}/Makefile.inc"
28
29KQSRCS=	adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
30	lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
31	subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
32KSRCS=	bcmp.c ffs.c index.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \
33	strlen.c strncpy.c
34
35libkern: libkern.gen libkern.${MACHINE_ARCH}
36
37libkern.gen: ${KQSRCS} ${KSRCS}
38	cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
39
40libkern.${MACHINE_ARCH}:: ${KMSRCS}
41.if defined(KMSRCS) && !empty(KMSRCS)
42	cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${MACHINE_ARCH}
43.endif
44
45.include <bsd.lib.mk>
46