612462547cd787f93179266f5b69cec1c7ceac98
[dragonfly.git] / lib / libc / Makefile
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 #
4 LIB=c
5 SHLIB_MAJOR= 8
6 SHLIBDIR?= /lib
7 CFLAGS+= -I${.CURDIR}/include -I${.OBJDIR} -I${.CURDIR}/${MACHINE_ARCH}
8 CFLAGS+= -DNLS
9 CLEANFILES+=tags
10 PRECIOUSLIB=    yes
11
12 LDFLAGS+= -nodefaultlibs
13
14 #
15 # Include make rules that are shared with libc_r.
16 #
17 .include "${.CURDIR}/Makefile.inc"
18
19 .if defined(RELEASE36)
20 VERSION_DEF=    ${.CURDIR}/Versions.def
21 SYMBOL_MAPS=    ${CMAPS}
22 .endif
23
24 KQSRCS= 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
27 KSRCS=  bcmp.c ffs.c index.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \
28         strlen.c strncpy.c
29
30 libkern: libkern.gen libkern.${MACHINE_ARCH}
31
32 libkern.gen: ${KQSRCS} ${KSRCS}
33         cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
34
35 libkern.${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
42 # Disable warnings in contributed sources.
43 CWARNFLAGS:=    ${.IMPSRC:N*dtoa*.c:C/^.+$/${CWARNFLAGS}/:C/^$/-w/}