Descend into ./utils and ./notes, possibly into ./miniroot and also

into ./${MACHINE} if ${MACHINE}/Makefile exists. (None do right now.)
This commit is contained in:
ross 1998-05-02 07:40:23 +00:00
parent 487e3b222d
commit 8a77a8a4f5

15
distrib/Makefile Normal file
View File

@ -0,0 +1,15 @@
# $NetBSD: Makefile,v 1.1 1998/05/02 07:40:23 ross Exp $
SUBDIR= utils
.if exists(${MACHINE}/miniroot)
SUBDIR+= miniroot
.endif
.if exists(${MACHINE}/Makefile)
SUBDIR+= ${MACHINE}
.endif
SUBDIR+= notes
.include <bsd.subdir.mk>