freebsd-src/unit-tests/include-sub.inc
Simon J. Gerraty 2e36ab2363 Import bmake-20230126
Relevant/interesting changes (see ChangeLog for more):

	o variables like .newline and .MAKE.{GID,PID,PPID,UID}
	should be read-only.
	o .[NO]READONLY: for control of read-only variables
	o .SYSPATH: for controlling the path searched for makefiles
	o allow for white-space between command specifiers @+-
	o add more details to warning 'Extra targets ignored'
	o make.1: sync list of built-in variables with reality
	sort list of built-in variables
	o cond.c: add more details to error message for numeric comparison
	o job.c: fix handling of null bytes in output
	o Allow .break to terminate a .for loop early
	o var.c: fix out-of-bounds errors when parsing
	o fix exit status for '-q' (since 1994)
2023-01-27 16:23:54 -08:00

50 lines
1.1 KiB
PHP

# $NetBSD: include-sub.inc,v 1.1 2023/01/19 23:26:14 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_PushInput at "Vector_Push(&includes)"
# HandleMessage at entry
# Watches:
# ((const IncludedFile *[10])(*includes.items))
# *CurFile()
.for i in deeply
. for i in nested
. for i in include
.include "include-subsub.inc"
. 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