15 lines
376 B
Makefile
15 lines
376 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
# The include file <bsd.init.mk> includes ../Makefile.inc and
|
||
|
# <bsd.own.mk>; this is used at the top of all <bsd.*.mk> files
|
||
|
# that actually "build something".
|
||
|
|
||
|
.if !target(__<bsd.init.mk>__)
|
||
|
__<bsd.init.mk>__:
|
||
|
.if exists(${.CURDIR}/../Makefile.inc)
|
||
|
.include "${.CURDIR}/../Makefile.inc"
|
||
|
.endif
|
||
|
.include <bsd.own.mk>
|
||
|
.MAIN: all
|
||
|
.endif !target(__<bsd.init.mk>__)
|