mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 08:12:27 -04:00
Relevant/interesting changes:
o optimize string matching for ':M' and ':N'
o warn about malformed patterns in ':M', ':N' and '.if make(...)'
o allow guards to be targets as well as variables
The guard targets may include variable references like
__${.PARSEDIR:tA}/${.PARSEFILE}__
o optimization for makefiles protected from multiple-inclusion
skip even opening the file after first include.
o var.c: do not allow delete of readOnly variable
o parse.c: .break takes no args
12 lines
449 B
Makefile
12 lines
449 B
Makefile
# $NetBSD: opt-debug-hash.mk,v 1.4 2023/06/01 20:56:35 rillig Exp $
|
|
#
|
|
# Tests for the -dh command line option, which adds debug logging for
|
|
# hash tables. Even more detailed logging is available by compiling
|
|
# make with -DDEBUG_HASH_LOOKUP.
|
|
|
|
.MAKEFLAGS: -dh
|
|
|
|
# Force a parse error, to demonstrate the newline character in the diagnostic
|
|
# that had been missing before parse.c 1.655 from 2022-01-22.
|
|
# expect+1: Missing argument for ".error"
|
|
.error
|