blob: 5abdf19049f048cda14012fe890d765f5554b738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: bsd.init.mk,v 1.1 2001/11/02 05:21:50 tv Exp $
# <bsd.init.mk> includes Makefile.inc and <bsd.own.mk>; this is used at the
# top of all <bsd.*.mk> files which actually "build something".
.if !target(__initialized__)
__initialized__:
.-include "${.CURDIR}/../Makefile.inc"
.include <bsd.own.mk>
.MAIN: all
.endif
|