mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-07 22:29:21 -04:00
31 lines
588 B
Makefile
31 lines
588 B
Makefile
# $NetBSD: Makefile,v 1.31 2010/05/27 06:58:13 dholland Exp $
|
|
|
|
# Logically src/sys
|
|
S!= cd ${.CURDIR}/../../../..; pwd
|
|
|
|
.include "../Makefile.booters"
|
|
|
|
CPPFLAGS+= -I${S} -I.
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
### find out what to use for libsa
|
|
SA_AS= library
|
|
SAMISCMAKEFLAGS= SA_INCLUDE_NET=no SA_EXTRADIR=${.CURDIR}
|
|
.include "${S}/lib/libsa/Makefile.inc"
|
|
LIBSA= ${SALIB}
|
|
|
|
### find out what to use for libkern
|
|
KERN_AS= library
|
|
.include "${S}/lib/libkern/Makefile.inc"
|
|
LIBKERN= ${KERNLIB}
|
|
|
|
LIBS= ${LIBSA} ${LIBKERN}
|
|
|
|
realall: ${LIBS}
|
|
|
|
cleandir distclean: .WAIT cleanlibdir
|
|
|
|
cleanlibdir:
|
|
-rm -rf lib
|