1 # $NetBSD: Makefile,v 1.81.4.1 2006/10/22 06:07:21 yamt Exp $ 2 3 LIB= kern 4 NOPIC= # defined 5 LLIBS= # defined 6 7 .include <bsd.own.mk> 8 9 .if defined(LIBKERN_ARCH) && !empty(LIBKERN_ARCH) && \ 10 exists(${KERNDIR}/arch/${LIBKERN_ARCH}) 11 ARCHSUBDIR= ${LIBKERN_ARCH} 12 .elif defined(MACHINE_ARCH) && !empty(MACHINE_ARCH) && \ 13 exists(${KERNDIR}/arch/${MACHINE_ARCH}) 14 ARCHSUBDIR= ${MACHINE_ARCH} 15 .elif defined(MACHINE_CPU) && !empty(MACHINE_CPU) && \ 16 exists(${KERNDIR}/arch/${MACHINE_CPU}) 17 ARCHSUBDIR= ${MACHINE_CPU} 18 .else 19 .BEGIN: 20 @echo no ARCHSUBDIR for ${MACHINE_ARCH} nor ${MACHINE_CPU} 21 @false 22 .endif 23 24 M= ${KERNDIR}/arch/${ARCHSUBDIR} 25 26 CPPFLAGS= -I$M ${KERNCPPFLAGS} ${KERNMISCCPPFLAGS} 27 28 .include "${.PARSEDIR}/../../../common/lib/libc/Makefile.inc" 29 .include "${.PARSEDIR}/../../../common/lib/libprop/Makefile.inc" 30 31 CPPFLAGS+= -I${KERNDIR}/../../../common/include 32 33 .PATH.c: ${KERNDIR} 34 .if exists ($M/Makefile.inc) 35 .PATH.c: $M 36 .PATH.S: $M 37 .include "$M/Makefile.inc" 38 .endif 39 40 .if (${MACHINE_ARCH} != "alpha") 41 # Quad support 42 SRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \ 43 lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \ 44 subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c 45 .endif 46 47 # Other stuff 48 SRCS+= __cmsg_alignbytes.c inet_addr.c intoa.c md4c.c md5c.c sha1.c pmatch.c 49 SRCS+= _que.c arc4random.c bcd.c mcount.c 50 51 SRCS+= strstr.c strlcpy.c strlcat.c 52 53 SRCS+= strtoll.c strtoull.c strtoumax.c 54 55 SRCS+= xlat_mbr_fstype.c 56 57 # Files to clean up 58 CLEANFILES+= lib${LIB}.o lib${LIB}.po 59 60 # XXX these stub builds should be cleaned up even further. 61 62 # if no machine specific memcpy(3), build one out of bcopy(3) based stub. 63 .if empty(SRCS:Mmemcpy.S) 64 SRCS+= memcpy.c 65 .endif 66 67 # if no machine specific memmove(3), build one out of bcopy(3) based stub. 68 .if empty(SRCS:Mmemmove.S) 69 SRCS+= memmove.c 70 .endif 71 72 # if no machine specific strchr(3), build one out of index(3) based stub. 73 .if empty(SRCS:Mstrchr.S) 74 SRCS+= strchr.c 75 .endif 76 77 # if no machine specific strrchr(3), build one out of rindex(3) based stub. 78 .if empty(SRCS:Mstrrchr.S) 79 SRCS+= strrchr.c 80 .endif 81 82 # only needed during build 83 libinstall:: 84 85 .undef DESTDIR 86 .include <bsd.lib.mk> 87 88 lib${LIB}.o:: ${OBJS} 89 @echo building standard ${LIB} library 90 @rm -f lib${LIB}.o 91 @${LD} -r -o lib${LIB}.o `NM=${NM} ${LORDER} ${OBJS} | ${TSORT}` 92 93 lib${LIB}.po:: ${POBJS} 94 @echo building profiled ${LIB} library 95 @rm -f lib${LIB}.po 96 @${LD} -r -o lib${LIB}.po `NM=${NM} ${LORDER} ${POBJS} | ${TSORT}` 97 98 showsources: ${SRCS} 99 @echo ${.ALLSRC} 100