NetBSD/sys/lib/libkern/Makefile

34 lines
920 B
Makefile
Raw Normal View History

1994-05-14 10:00:34 +04:00
# $Id: Makefile,v 1.8 1994/05/14 06:00:34 cgd Exp $
LIB= kern
NOPIC=
OBJMACHINE=
1994-03-10 00:21:37 +03:00
CFLAGS+= -DKERNEL
.if exists (${.CURDIR}/${MACHINE_ARCH}/Makefile.inc)
.PATH: ${.CURDIR}/${MACHINE_ARCH}
.include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc"
.endif
LIBC= ${.CURDIR}/../../../lib/libc
.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}
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
install:
.include <bsd.lib.mk>