Home | History | Annotate | Line # | Download | only in libkern
Makefile revision 1.79
      1 #	$NetBSD: Makefile,v 1.79 2006/04/22 15:33:33 thorpej 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 
     30 .PATH.c: ${KERNDIR}
     31 .if exists ($M/Makefile.inc)
     32 .PATH.c: $M
     33 .PATH.S: $M
     34 .include "$M/Makefile.inc"
     35 .endif
     36 
     37 .if (${MACHINE_ARCH} != "alpha")
     38 # Quad support
     39 SRCS+=	adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
     40 	lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
     41 	subdi3.c  ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
     42 .endif
     43 
     44 # Other stuff
     45 SRCS+=	__cmsg_alignbytes.c inet_addr.c intoa.c md4c.c md5c.c sha1.c pmatch.c
     46 SRCS+=	_que.c arc4random.c bcd.c mcount.c
     47 
     48 SRCS+=	strstr.c strlcpy.c strlcat.c
     49 
     50 SRCS+=	strtoumax.c
     51 
     52 SRCS+=	xlat_mbr_fstype.c
     53 
     54 # Files to clean up
     55 CLEANFILES+= lib${LIB}.o lib${LIB}.po
     56 
     57 # XXX these stub builds should be cleaned up even further.
     58 
     59 # if no machine specific memcpy(3), build one out of bcopy(3) based stub.
     60 .if empty(SRCS:Mmemcpy.S)
     61 SRCS+=	memcpy.c
     62 .endif
     63 
     64 # if no machine specific memmove(3), build one out of bcopy(3) based stub.
     65 .if empty(SRCS:Mmemmove.S)
     66 SRCS+=	memmove.c
     67 .endif
     68 
     69 # if no machine specific strchr(3), build one out of index(3) based stub.
     70 .if empty(SRCS:Mstrchr.S)
     71 SRCS+=	strchr.c
     72 .endif
     73 
     74 # if no machine specific strrchr(3), build one out of rindex(3) based stub.
     75 .if empty(SRCS:Mstrrchr.S)
     76 SRCS+=	strrchr.c
     77 .endif
     78 
     79 # only needed during build
     80 libinstall::
     81 
     82 .undef DESTDIR
     83 .include <bsd.lib.mk>
     84 
     85 lib${LIB}.o:: ${OBJS}
     86 	@echo building standard ${LIB} library
     87 	@rm -f lib${LIB}.o
     88 	@${LD} -r -o lib${LIB}.o `NM=${NM} ${LORDER} ${OBJS} | ${TSORT}`
     89 
     90 lib${LIB}.po:: ${POBJS}
     91 	@echo building profiled ${LIB} library
     92 	@rm -f lib${LIB}.po
     93 	@${LD} -r -o lib${LIB}.po `NM=${NM} ${LORDER} ${POBJS} | ${TSORT}`
     94 
     95 showsources: ${SRCS}
     96 	@echo ${.ALLSRC}
     97