1994-12-31 07:32:23 +03:00
|
|
|
# $NetBSD: Makefile,v 1.18 1994/12/31 04:32:23 mycroft Exp $
|
1993-10-13 08:40:23 +03:00
|
|
|
|
|
|
|
LIB= kern
|
|
|
|
NOPIC=
|
1993-10-23 05:33:12 +03:00
|
|
|
OBJMACHINE=
|
1994-09-16 05:27:58 +04:00
|
|
|
CFLAGS= -O3 -I${.CURDIR} -Imachine/.. -I. -I${.CURDIR}/../..
|
1994-05-16 10:25:21 +04:00
|
|
|
|
|
|
|
machine-links:
|
1994-12-07 17:53:53 +03:00
|
|
|
-@rm -f machine && \
|
1994-05-16 10:25:21 +04:00
|
|
|
ln -s ${.CURDIR}/../../arch/${MACHINE}/include machine
|
1994-12-07 17:53:53 +03:00
|
|
|
-@rm -f ${MACHINE_ARCH} && \
|
1994-05-16 10:25:21 +04:00
|
|
|
ln -s ${.CURDIR}/../../arch/${MACHINE_ARCH}/include ${MACHINE_ARCH}
|
|
|
|
|
1994-12-31 07:32:23 +03:00
|
|
|
lib${LIB}.a lib${LIB}_p.a:: machine-links
|
1993-10-13 08:40:23 +03:00
|
|
|
|
1994-06-30 08:26:07 +04:00
|
|
|
.if exists (${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc)
|
|
|
|
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
|
|
|
|
.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
|
1993-10-13 08:40:23 +03:00
|
|
|
.endif
|
|
|
|
|
1993-10-13 08:55:19 +03:00
|
|
|
LIBC= ${.CURDIR}/../../../lib/libc
|
1993-12-04 06:04:30 +03:00
|
|
|
.PATH: ${LIBC}/string ${LIBC}/arch/${MACHINE_ARCH}/string
|
|
|
|
.PATH: ${LIBC}/net ${LIBC}/arch/${MACHINE_ARCH}/net
|
|
|
|
.PATH: ${LIBC}/gen ${LIBC}/arch/${MACHINE_ARCH}/gen
|
|
|
|
.PATH: ${LIBC}/stdlib ${LIBC}/arch/${MACHINE_ARCH}/stdlib
|
|
|
|
.PATH: ${LIBC}/sys ${LIBC}/arch/${MACHINE_ARCH}/sys
|
|
|
|
AINC+= -I${LIBC}/arch/${MACHINE_ARCH}
|
1994-06-30 10:54:22 +04:00
|
|
|
CFLAGS+= -I${.CURDIR}/arch/${MACHINE_ARCH}
|
1993-10-13 08:40:23 +03:00
|
|
|
|
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
|
|
|
|
|
1994-05-14 10:00:34 +04:00
|
|
|
# Other stuff
|
|
|
|
SRCS+= mcount.c
|
|
|
|
|
1993-12-04 08:21:03 +03:00
|
|
|
.PATH: ${LIBC}/arch/${MACHINE_ARCH}/quad ${LIBC}/quad
|
|
|
|
|
1993-10-13 08:40:23 +03:00
|
|
|
install:
|
|
|
|
|
1994-05-21 07:22:42 +04:00
|
|
|
# mcount cannot be compiled with profiling
|
|
|
|
mcount.po: mcount.o
|
|
|
|
cp mcount.o mcount.po
|
|
|
|
|
1994-07-01 00:17:47 +04:00
|
|
|
CLEANFILES+= machine ${MACHINE_ARCH}
|
|
|
|
|
1993-10-13 08:40:23 +03:00
|
|
|
.include <bsd.lib.mk>
|