1996-08-10 04:01:29 +00:00
|
|
|
# $NetBSD: Makefile,v 1.31 1996/08/10 04:01:31 mycroft Exp $
|
1993-10-13 05:40:23 +00:00
|
|
|
|
|
|
|
LIB= kern
|
|
|
|
NOPIC=
|
1994-05-16 06:25:21 +00:00
|
|
|
|
1996-08-08 15:15:16 +00:00
|
|
|
M= ${.CURDIR}/arch/${MACHINE_ARCH}
|
1994-05-16 06:25:21 +00:00
|
|
|
|
1996-08-10 04:01:29 +00:00
|
|
|
CPPFLAGS= -I$M ${KERNCPPFLAGS}
|
1996-08-08 15:15:16 +00:00
|
|
|
|
|
|
|
.if exists ($M/Makefile.inc)
|
|
|
|
.PATH: $M
|
|
|
|
.include "$M/Makefile.inc"
|
1993-10-13 05:40:23 +00:00
|
|
|
.endif
|
|
|
|
|
1995-02-13 21:48:17 +00:00
|
|
|
.if (${MACHINE_ARCH} != "alpha")
|
1993-12-04 05:21:03 +00: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-13 21:48:17 +00:00
|
|
|
.endif
|
1993-12-04 05:21:03 +00:00
|
|
|
|
1994-05-14 06:00:34 +00:00
|
|
|
# Other stuff
|
1995-10-07 09:56:54 +00:00
|
|
|
SRCS+=
|
1994-05-14 06:00:34 +00:00
|
|
|
|
1996-05-10 21:27:32 +00:00
|
|
|
# Files to clean up
|
|
|
|
CLEANFILES+= lib${LIB}.o lib${LIB}.po
|
|
|
|
|
1994-05-21 03:22:42 +00:00
|
|
|
# mcount cannot be compiled with profiling
|
|
|
|
mcount.po: mcount.o
|
|
|
|
cp mcount.o mcount.po
|
|
|
|
|
1995-02-13 21:48:17 +00:00
|
|
|
install:
|
|
|
|
|
1993-10-13 05:40:23 +00:00
|
|
|
.include <bsd.lib.mk>
|
1995-10-07 09:56:54 +00:00
|
|
|
|
|
|
|
lib${LIB}.o:: ${OBJS}
|
|
|
|
@echo building standard ${LIB} library
|
|
|
|
@rm -f lib${LIB}.o
|
|
|
|
@${LD} -r -o lib${LIB}.o `lorder ${OBJS} | tsort`
|
|
|
|
|
|
|
|
POBJS+= ${OBJS:.o=.po} mcount.po
|
|
|
|
lib${LIB}.po:: ${POBJS}
|
|
|
|
@echo building profiled ${LIB} library
|
|
|
|
@rm -f lib${LIB}.po
|
|
|
|
@${LD} -r -o lib${LIB}.po `lorder ${POBJS} | tsort`
|