freebsd-src/unit-tests/include-sub.mk
Simon J. Gerraty 1b65f0bd2b Import bmake-20201117
o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable
  checks in InitObjdir.  Explicit .OBJDIR target always allows
  read-only directory.

o Fix building and unit-tests on non-BSD.

o More code cleanup and refactoring.

o More unit tests
2020-11-20 03:54:37 +00:00

50 lines
1.1 KiB
Makefile

# $NetBSD: include-sub.mk,v 1.7 2020/11/02 19:07:09 rillig Exp $
.if ${.INCLUDEDFROMFILE} == "include-main.mk"
. info sub-before-ok
.else
. warning sub-before-fail(${.INCLUDEDFROMFILE})
.endif
# As of 2020-09-05, the .for loop is implemented as "including a file"
# with a custom buffer. Therefore this loop has side effects on these
# variables.
.for i in once
. if ${.INCLUDEDFROMFILE} == "include-main.mk"
. info sub-before-for-ok
. else
. warning sub-before-for-fail(${.INCLUDEDFROMFILE})
. endif
.endfor
# To see the variable 'includes' in action:
#
# Breakpoints:
# Parse_File at "Vector_Push(&includes)"
# ParseMessage at entry
# Watches:
# ((const IFile *[10])(*includes.items))
# *curFile
.for i in deeply
. for i in nested
. for i in include
.include "include-subsub.mk"
. endfor
. endfor
.endfor
.if ${.INCLUDEDFROMFILE} == "include-main.mk"
. info sub-after-ok
.else
. warning sub-after-fail(${.INCLUDEDFROMFILE})
.endif
.for i in once
. if ${.INCLUDEDFROMFILE} == "include-main.mk"
. info sub-after-for-ok
. else
. warning sub-after-for-fail(${.INCLUDEDFROMFILE})
. endif
.endfor