1999-05-07 18:49:52 +04:00
|
|
|
# $NetBSD: Makefile,v 1.53 1999/05/07 14:49:52 drochner Exp $
|
1993-10-13 08:40:23 +03:00
|
|
|
|
|
|
|
LIB= kern
|
1999-02-13 05:54:17 +03:00
|
|
|
MKPIC= no
|
1994-05-16 10:25:21 +04:00
|
|
|
|
1999-03-04 22:46:09 +03:00
|
|
|
ARCHSUBDIR= ${MACHINE_ARCH:C/mipse[bl]/mips/}
|
1999-05-07 18:28:50 +04:00
|
|
|
M= ${KERNDIR}/arch/${ARCHSUBDIR}
|
1994-05-16 10:25:21 +04:00
|
|
|
|
1997-02-17 00:25:18 +03:00
|
|
|
CPPFLAGS= -I$M ${KERNCPPFLAGS} ${KERNMISCCPPFLAGS}
|
1996-08-08 19:15:16 +04:00
|
|
|
|
1999-05-07 18:28:50 +04:00
|
|
|
.PATH.c: ${KERNDIR}
|
1996-08-08 19:15:16 +04:00
|
|
|
.if exists ($M/Makefile.inc)
|
1999-05-07 18:28:50 +04:00
|
|
|
.PATH.c: $M
|
|
|
|
.PATH.S: $M
|
1996-08-08 19:15:16 +04:00
|
|
|
.include "$M/Makefile.inc"
|
1993-10-13 08:40:23 +03:00
|
|
|
.endif
|
|
|
|
|
1995-02-14 00:48:17 +03:00
|
|
|
.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
|
1995-02-14 00:48:17 +03:00
|
|
|
.endif
|
1993-12-04 08:21:03 +03:00
|
|
|
|
1994-05-14 10:00:34 +04:00
|
|
|
# Other stuff
|
1999-05-07 18:49:52 +04:00
|
|
|
SRCS+= inet_addr.c intoa.c md5c.c sha1.c pmatch.c
|
1994-05-14 10:00:34 +04:00
|
|
|
|
1996-05-11 01:27:32 +04:00
|
|
|
# Files to clean up
|
|
|
|
CLEANFILES+= lib${LIB}.o lib${LIB}.po
|
|
|
|
|
1998-01-22 00:23:18 +03:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
1998-08-04 09:01:58 +04:00
|
|
|
# XXX these stub builds should be cleaned up even further.
|
|
|
|
|
|
|
|
# if no machine specific memcpy(3), build one out of bcopy(3) based stub.
|
1998-02-22 09:54:38 +03:00
|
|
|
.if empty(SRCS:Mmemcpy.S)
|
1998-08-04 09:01:58 +04:00
|
|
|
SRCS+= memcpy.c
|
1998-02-22 09:54:38 +03:00
|
|
|
.endif
|
|
|
|
|
1998-08-04 09:01:58 +04:00
|
|
|
# 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)
|
1998-08-04 09:01:58 +04:00
|
|
|
SRCS+= memmove.c
|
1998-08-01 03:44:41 +04:00
|
|
|
.endif
|
|
|
|
|
1998-08-04 09:01:58 +04:00
|
|
|
# if no machine specific strchr(3), build one out of index(3) based stub.
|
1998-01-22 00:23:18 +03:00
|
|
|
.if empty(SRCS:Mstrchr.S)
|
1998-08-04 09:01:58 +04:00
|
|
|
SRCS+= strchr.c
|
1998-01-22 00:23:18 +03:00
|
|
|
.endif
|
|
|
|
|
1998-08-04 09:01:58 +04:00
|
|
|
# if no machine specific strrchr(3), build one out of rindex(3) based stub.
|
1998-01-22 00:23:18 +03:00
|
|
|
.if empty(SRCS:Mstrrchr.S)
|
1998-08-04 09:01:58 +04:00
|
|
|
SRCS+= strrchr.c
|
1998-01-22 00:23:18 +03:00
|
|
|
.endif
|
|
|
|
|
1999-02-24 19:22:42 +03:00
|
|
|
POBJS+= mcount.po
|
1998-07-19 22:35:16 +04:00
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
# only needed during build
|
|
|
|
libinstall::
|
|
|
|
|
1993-10-13 08:40:23 +03:00
|
|
|
.include <bsd.lib.mk>
|
1995-10-07 12:56:54 +03:00
|
|
|
|
|
|
|
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}`
|
1995-10-07 12:56:54 +03:00
|
|
|
|
|
|
|
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}`
|