1996-02-02 23:34:38 +03:00
|
|
|
# $NetBSD: Makefile,v 1.25 1996/02/02 20:34:38 mycroft Exp $
|
1993-10-13 08:40:23 +03:00
|
|
|
|
|
|
|
LIB= kern
|
|
|
|
NOPIC=
|
1994-05-16 10:25:21 +04:00
|
|
|
|
1996-02-02 23:34:38 +03:00
|
|
|
DIR= ${KERNREL}${KERNDIR}
|
1994-05-16 10:25:21 +04:00
|
|
|
|
1996-02-02 23:34:38 +03:00
|
|
|
CPPFLAGS= -I${DIR}/arch/${MACHINE_ARCH} \
|
|
|
|
${KERNCPPFLAGS:S/-D_KERNEL//:S@-I.@-I${KERNREL}.@g}
|
1995-10-20 04:10:06 +03:00
|
|
|
|
1995-06-25 00:31:12 +04:00
|
|
|
.if exists (${DIR}/arch/${MACHINE_ARCH}/Makefile.inc)
|
|
|
|
.PATH: ${DIR}/arch/${MACHINE_ARCH}
|
|
|
|
.include "${DIR}/arch/${MACHINE_ARCH}/Makefile.inc"
|
1993-10-13 08:40:23 +03:00
|
|
|
.endif
|
|
|
|
|
1995-06-25 00:31:12 +04:00
|
|
|
.PATH: ${DIR}
|
|
|
|
|
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
|
1995-10-07 12:56:54 +03:00
|
|
|
SRCS+=
|
1994-05-14 10:00:34 +04:00
|
|
|
|
1994-05-21 07:22:42 +04:00
|
|
|
# mcount cannot be compiled with profiling
|
|
|
|
mcount.po: mcount.o
|
|
|
|
cp mcount.o mcount.po
|
|
|
|
|
1995-02-14 00:48:17 +03:00
|
|
|
install:
|
|
|
|
|
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
|
|
|
|
@${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`
|