1993-10-23 05:33:12 +03:00
|
|
|
# $Id: Makefile,v 1.3 1993/10/23 02:33:18 cgd Exp $
|
1993-10-13 08:40:23 +03:00
|
|
|
|
|
|
|
LIB= kern
|
|
|
|
NOPIC=
|
1993-10-23 05:33:12 +03:00
|
|
|
OBJMACHINE=
|
1993-10-13 08:40:23 +03:00
|
|
|
|
|
|
|
.if exists (${.CURDIR}/${MACHINE}/Makefile.inc)
|
|
|
|
.PATH: ${.CURDIR}/${MACHINE}
|
|
|
|
.include "${.CURDIR}/${MACHINE}/Makefile.inc"
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(ARCH) && !empty(ARCH)
|
|
|
|
.if exists (${.CURDIR}/${ARCH}/Makefile.inc)
|
|
|
|
.PATH: ${.CURDIR}/${ARCH}
|
|
|
|
.include "${.CURDIR}/${ARCH}/Makefile.inc"
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
1993-10-13 08:55:19 +03:00
|
|
|
LIBC= ${.CURDIR}/../../../lib/libc
|
1993-10-13 08:40:23 +03:00
|
|
|
.PATH: ${LIBC}/string ${LIBC}/arch/${MACHINE}/string
|
|
|
|
.PATH: ${LIBC}/net ${LIBC}/arch/${MACHINE}/net
|
|
|
|
.PATH: ${LIBC}/gen ${LIBC}/arch/${MACHINE}/gen
|
|
|
|
.PATH: ${LIBC}/stdlib ${LIBC}/arch/${MACHINE}/stdlib
|
|
|
|
.PATH: ${LIBC}/sys ${LIBC}/arch/${MACHINE}/sys
|
|
|
|
AINC+= -I${LIBC}/arch/${MACHINE}
|
|
|
|
|
|
|
|
install:
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|