Merge branch 'vendor/OPENSSL'
[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 CFLAGS+= -I${.CURDIR}/include -I${.OBJDIR} -I${.CURDIR}/${MACHINE_ARCH}
7 CFLAGS+= -DNLS
8 CLEANFILES+=tags
9 PRECIOUSLIB=    yes
10
11 LDFLAGS+= -nodefaultlibs
12
13 #
14 # Include make rules that are shared with libc_r.
15 #
16 .include "${.CURDIR}/Makefile.inc"
17
18 .if defined(RELEASE36)
19 VERSION_DEF=    ${.CURDIR}/Versions.def
20 SYMBOL_MAPS=    ${CMAPS}
21 .endif
22
23 KQSRCS= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
24         lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
25         subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
26 KSRCS=  bcmp.c ffs.c index.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \
27         strlen.c strncpy.c
28
29 libkern: libkern.gen libkern.${MACHINE_ARCH}
30
31 libkern.gen: ${KQSRCS} ${KSRCS}
32         cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
33
34 libkern.${MACHINE_ARCH}:: ${KMSRCS}
35 .if defined(KMSRCS) && !empty(KMSRCS)
36         cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${MACHINE_ARCH}
37 .endif
38
39 .include <bsd.lib.mk>
40
41 # Disable warnings in contributed sources.
42 CWARNFLAGS:=    ${.IMPSRC:N*dtoa*.c:C/^.+$/${CWARNFLAGS}/:C/^$/-w/}