]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/Makefile
Don't claim to fully implement C99 in the STANDARDS section and then disclaim
[FreeBSD/FreeBSD.git] / lib / libc / Makefile
1 #       @(#)Makefile    8.2 (Berkeley) 2/3/94
2 # $FreeBSD$
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 (see <sys/cdefs.h>) to CFLAGS
7 # below.  Note, there are no IDs for syscall stubs whose sources are generated.
8 # To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
9 # (for system call stubs) to CFLAGS below.  -DSYSLIBC_SCCS affects just the
10 # system call stubs.
11 LIB=c
12 SHLIB_MAJOR= 5
13 SHLIB_MINOR= 0
14 CFLAGS+=-DLIBC_MAJOR=${SHLIB_MAJOR}
15 CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include
16 AINC=   -I${.CURDIR}/${MACHINE_ARCH}
17 CLEANFILES+=tags
18 INSTALL_PIC_ARCHIVE=    yes
19 PRECIOUSLIB=    yes
20
21 #
22 # Include make rules that are shared with libc_r.
23 #
24 .include "${.CURDIR}/Makefile.inc"
25
26 KQSRCS= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
27         lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
28         subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
29 KSRCS=  bcmp.c ffs.c index.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \
30         strlen.c strncpy.c
31
32 libkern: libkern.gen libkern.${MACHINE_ARCH}
33
34 libkern.gen: ${KQSRCS} ${KSRCS}
35         cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
36
37 libkern.${MACHINE_ARCH}:: ${KMSRCS}
38 .if defined(KMSRCS) && !empty(KMSRCS)
39         cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${MACHINE_ARCH}
40 .endif
41
42 .include <bsd.lib.mk>