Remove some unnecessary inclusions of <sys/cdefs.h> across the tree.
[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 # All library objects contain rcsid strings by default; they may be
5 # excluded as a space-saving measure.  To produce a library that does
6 # not contain these strings, delete -DLIBC_RCS and -DSYSLIBC_RCS
7 # from CFLAGS below.  To remove these strings from just the system call
8 # stubs, remove just -DSYSLIBC_RCS from CFLAGS.
9 LIB=c
10 SHLIB_MAJOR= 7
11 CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS -I${.CURDIR}/include ${AINC}
12 AINC=   -I${.OBJDIR} -I${.CURDIR}/${MACHINE_ARCH}
13 CLEANFILES+=tags
14 PRECIOUSLIB=    yes
15
16 .if ${CCVER} == "gcc41" || ${CCVER} == "gcc44"
17 DPADD+= ${LIBGCC}
18 LDADD+= -lgcc
19 .endif
20 LDFLAGS+= -nodefaultlibs
21
22 #
23 # Include make rules that are shared with libc_r.
24 #
25 .include "${.CURDIR}/Makefile.inc"
26
27 KQSRCS= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
28         lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
29         subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
30 KSRCS=  bcmp.c ffs.c index.c mcount.c rindex.c strcat.c strcmp.c strcpy.c \
31         strlen.c strncpy.c
32
33 libkern: libkern.gen libkern.${MACHINE_ARCH}
34
35 libkern.gen: ${KQSRCS} ${KSRCS}
36         cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
37
38 libkern.${MACHINE_ARCH}:: ${KMSRCS}
39 .if defined(KMSRCS) && !empty(KMSRCS)
40         cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${MACHINE_ARCH}
41 .endif
42
43 .include <bsd.lib.mk>