NetBSD/sys/lib/libkern/Makefile

74 lines
1.6 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.47 1999/02/13 02:54:51 lukem Exp $
LIB= kern
MKPIC= no
M= ${.CURDIR}/arch/${MACHINE_ARCH}
CPPFLAGS= -I$M ${KERNCPPFLAGS} ${KERNMISCCPPFLAGS}
.if exists ($M/Makefile.inc)
.PATH: $M
.include "$M/Makefile.inc"
.endif
.if (${MACHINE_ARCH} != "alpha")
1993-12-04 08:21:03 +03:00
# Quad support
SRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
.endif
1993-12-04 08:21:03 +03:00
1994-05-14 10:00:34 +04:00
# Other stuff
SRCS+= md5c.c sha1.c pmatch.c
1994-05-14 10:00:34 +04:00
# Files to clean up
CLEANFILES+= lib${LIB}.o lib${LIB}.po
#
# Special rules for certain objects
#
1994-05-21 07:22:42 +04:00
# mcount cannot be compiled with profiling
mcount.po: mcount.o
cp mcount.o mcount.po
# XXX these stub builds should be cleaned up even further.
# if no machine specific memcpy(3), build one out of bcopy(3) based stub.
.if empty(SRCS:Mmemcpy.S)
SRCS+= memcpy.c
.endif
# if no machine specific memmove(3), build one out of bcopy(3) based stub.
1998-08-01 03:44:41 +04:00
.if empty(SRCS:Mmemmove.S)
SRCS+= memmove.c
1998-08-01 03:44:41 +04:00
.endif
# if no machine specific strchr(3), build one out of index(3) based stub.
.if empty(SRCS:Mstrchr.S)
SRCS+= strchr.c
.endif
# if no machine specific strrchr(3), build one out of rindex(3) based stub.
.if empty(SRCS:Mstrrchr.S)
SRCS+= strrchr.c
.endif
POBJS+= ${OBJS:.o=.po} mcount.po
# only needed during build
libinstall::
.include <bsd.lib.mk>
lib${LIB}.o:: ${OBJS}
@echo building standard ${LIB} library
@rm -f lib${LIB}.o
1997-11-04 23:33:11 +03:00
@${LD} -r -o lib${LIB}.o `NM=${NM} ${LORDER} ${OBJS} | ${TSORT}`
lib${LIB}.po:: ${POBJS}
@echo building profiled ${LIB} library
@rm -f lib${LIB}.po
1997-11-04 23:33:11 +03:00
@${LD} -r -o lib${LIB}.po `NM=${NM} ${LORDER} ${POBJS} | ${TSORT}`