NetBSD/sys/libkern/Makefile

29 lines
721 B
Makefile
Raw Normal View History

# $Id: Makefile,v 1.6 1993/09/10 23:32:17 jtc Exp $
LIB= kern
LIBDIR= ${.CURDIR}/../arch/${MACHINE}/compile
NOPROFILE=
.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-09-02 01:14:13 +04:00
LIBC= ${.CURDIR}/../../lib/libc
.PATH: ${LIBC}/string ${LIBC}/${MACHINE}/string
.PATH: ${LIBC}/net ${LIBC}/${MACHINE}/net
.PATH: ${LIBC}/gen ${LIBC}/${MACHINE}/gen
.PATH: ${LIBC}/stdlib ${LIBC}/${MACHINE}/stdlib
.PATH: ${LIBC}/sys ${LIBC}/${MACHINE}/sys
AINC+= -I${LIBC}/${MACHINE}
1993-09-02 01:14:13 +04:00
.include <bsd.lib.mk>