fe271bdb43
Intersting/relevant changes since bmake-20251111 ChangeLog since bmake-20251111 2026-03-12 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260313 Merge with NetBSD make, pick up o make: ensure .MAKE.SAVE_DOLLARS is initialized so makefiles like sys.vars.mk can test its value to know how to deal with macros that need to save '$' during ':='. * Makefile: default MAKE_SAVE_DOLLARS_DEFAULT to "no" for traditional behavior. 2026-03-10 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260310 Merge with NetBSD make, pick up o unit-tests ensure TEST_MAKE is absolute path and tests that make symlink for ${MAKE} can run in parallel. 2026-03-03 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260303 Merge with NetBSD make, pick up o job.c: MaybeSubMake: Look for expansion of ${.MAKE} and if necessary its basename, and only match if at start of line or preceded by space. 2026-02-28 Simon J Gerraty <sjg@beast.crufty.net> * Makefile: mark ${PROG} and ${OBJS} as .META MaybeSubMake will otherwise mistake them for sub-makes * VERSION (_MAKE_VERSION): 20260301 Merge with NetBSD make, pick up o job.c: MaybeSubMake: skip control chars [@+-] at start of line when checking for ${MAKE} 2026-02-22 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260222 o mk file update 2026-02-16 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260216 Merge with NetBSD make, pick up o minor cleanups 2026-02-10 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260210 Merge with NetBSD make, pick up o document that multiple variables can be set on command line. o move MaybeSubMake to job.c so it can be called on expanded commands for more accuracy and less overhead. o main.c: set .MAKE.VERSION as read-only. * unit-tests/opt-{chdir,where-am-i}.mk: use MAKEOBJDIRPREFIX=/ to avoid tripping over an unreadable /usr/obj 2026-02-04 Simon J Gerraty <sjg@beast.crufty.net> * unit-tests/varname-make_stack_trace.mk: for FreeBSD and similar set .MAKE.ALWAYS_PASS_JOB_QUEUE=no to ensure we get the expected errors. * VERSION (_MAKE_VERSION): 20260202 Merge with NetBSD make, pick up o on error avoid duplicate stack trace to stderr 2026-01-11 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260111 Merge with NetBSD make, pick up o var.c: add explicit check for empty re as not all regex libs throw an error as expected, in this case. 2026-01-10 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20260110 Merge with NetBSD make, pick up o minor cleanups mk/ChangeLog since bmake-20251111 2026-03-12 Simon J Gerraty <sjg@beast.crufty.net> * install-mk (MK_VERSION): 20260313 * sys.vars.mk: use .MAKE.VERSION M_type can simply use '$x' 2026-02-22 Simon J Gerraty <sjg@beast.crufty.net> * install-mk (MK_VERSION): 20260222 * dirdeps.mk, sys.mk: add dependent option UPDATE_DIRDEPS_CACHE/DIRDEPS_CACHE. It can be useful to use -DWITHOUT_UPDATE_DIRDEPS_CACHE to temporarily treat dynamic DIRDEPS_CACHE as static. 2026-01-10 Simon J Gerraty <sjg@beast.crufty.net> * meta.autodep.mk (${_DEPENDFILE}): add .NOMETA 2026-01-08 Simon J Gerraty <sjg@beast.crufty.net> * rust.mk: better accommodation for RUST_LIBS. Set RUST_{LIBS,PROGS}_CARGO_BUILD_OUTPUT_LIST to simplify staging. 2025-12-08 Simon J Gerraty <sjg@beast.crufty.net> * install-mk (MK_VERSION): 20251207 * sys.vars.mk: replace MAKE_POSIX_SHELL usage with isPOSIX_SHELL Using ${isPOSIX_SHELL:U:Nfalse} provides a boolean for make and ${isPOSIX_SHELL:Ufalse} does the same for target scripts. Both will be false if isPOSIX_SHELL is not set or set to false. This has the advantage that if only POSIX shells are expected sys.mk (or something it includes) can simply do isPOSIX_SHELL?=:
161 lines
4.4 KiB
Makefile
161 lines
4.4 KiB
Makefile
# $Id: sys.vars.mk,v 1.27 2026/03/13 16:02:44 sjg Exp $
|
|
#
|
|
# @(#) Copyright (c) 2003-2023, Simon J. Gerraty
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Please send copies of changes and bug-fixes to:
|
|
# sjg@crufty.net
|
|
#
|
|
|
|
# We use the following paradigm for preventing multiple inclusion.
|
|
# It relies on the fact that conditionals and dependencies are resolved
|
|
# at the time they are read.
|
|
#
|
|
# _this ?= ${.PARSEDIR:tA}/${.PARSEFILE}
|
|
# .if !target(__${_this}__)
|
|
# __${_this}__: .NOTMAIN
|
|
#
|
|
|
|
# if this is an ancient version of bmake
|
|
MAKE_VERSION ?= 0
|
|
.if ${MAKE_VERSION:M*make-*}
|
|
# turn it into what we want - just the date
|
|
MAKE_VERSION := ${MAKE_VERSION:[1]:C,.*-,,}
|
|
.endif
|
|
|
|
# from (20260210) .MAKE.VERSION is read-only
|
|
.MAKE.VERSION ?= ${MAKE_VERSION}
|
|
|
|
.if ${.MAKE.VERSION} < 20100414
|
|
_this = ${.PARSEDIR}/${.PARSEFILE}
|
|
.else
|
|
_this = ${.PARSEDIR:tA}/${.PARSEFILE}
|
|
.endif
|
|
|
|
# This is a boolean we can use in makefiles:
|
|
# .if ${isPOSIX_SHELL:U:Nfalse}
|
|
# as well as in target scripts:
|
|
# if ${isPOSIX_SHELL:Ufalse}; then
|
|
.if empty(isPOSIX_SHELL)
|
|
isPOSIX_SHELL != (echo $${PATH%:*}) > /dev/null 2>&1 && echo : || echo false
|
|
.export isPOSIX_SHELL
|
|
.endif
|
|
|
|
# some useful modifiers
|
|
|
|
# A useful trick for testing multiple :M's against something
|
|
# :L says to use the variable's name as its value - ie. literal
|
|
# got = ${clean* destroy:${M_ListToMatch:S,V,.TARGETS,}}
|
|
M_ListToMatch = L:@m@$${V:U:M$$m}@
|
|
# match against our initial targets (see above)
|
|
M_L_TARGETS = ${M_ListToMatch:S,V,_TARGETS,}
|
|
|
|
# turn a list into a set of :N modifiers
|
|
# NskipFoo = ${Foo:${M_ListToSkip}}
|
|
M_ListToSkip= O:u:S,^,N,:ts:
|
|
|
|
# type should be a builtin in any sh since about 1980,
|
|
# but sadly there are exceptions!
|
|
.if ${.MAKE.OS:Unknown:NBSD/OS} == ""
|
|
_type_sh = which
|
|
.endif
|
|
|
|
# :sh1 evaluates command only once and caches the result.
|
|
.if ${.MAKE.VERSION} < 20251111
|
|
M_sh1 = sh
|
|
.else
|
|
M_sh1 = sh1
|
|
.endif
|
|
|
|
# AUTOCONF := ${autoconf:L:${M_whence}}
|
|
M_type = @x@(${_type_sh:Utype} $x) 2> /dev/null; echo;@:${M_sh1:Ush}:[0]:N* found*:[@]:C,[()],,g
|
|
M_whence = ${M_type}:M/*:[1]
|
|
|
|
# produce similar output to jot(1) or seq(1)
|
|
# eg. ${LIST:[#]:${M_JOT}}
|
|
# would be 1 2 3 4 5 if LIST has 5 words
|
|
# ${9:L:${M_JOT}}
|
|
# would be 1 2 3 4 5 6 7 8 9
|
|
.if ${.MAKE.LEVEL} == 0
|
|
.for x in jot seq
|
|
.if empty(JOT_CMD)
|
|
JOT_CMD := ${$x:L:${M_whence}}
|
|
.endif
|
|
.endfor
|
|
.if !empty(JOT_CMD)
|
|
.export JOT_CMD
|
|
.endif
|
|
.endif
|
|
.if !empty(JOT_CMD)
|
|
M_JOT = [1]:S,^,${JOT_CMD} ,:sh
|
|
.else
|
|
M_JOT = [1]:@x@i=1;while [ $$$$i -le $$x ]; do echo $$$$i; i=$$$$((i + 1)); done;@:sh
|
|
.endif
|
|
|
|
# ${LIST:${M_RANGE}} is 1 2 3 4 5 if LIST has 5 words
|
|
.if ${.MAKE.VERSION} < 20170130
|
|
M_RANGE = [#]:${M_JOT}
|
|
.else
|
|
M_RANGE = range
|
|
.endif
|
|
|
|
# convert a path to a valid shell variable
|
|
M_P2V = tu:C,[./-],_,g
|
|
|
|
# convert path to absolute
|
|
.if ${.MAKE.VERSION} < 20100414
|
|
M_tA = C,.*,('cd' & \&\& 'pwd') 2> /dev/null || echo &,:sh
|
|
.else
|
|
M_tA = tA
|
|
.endif
|
|
|
|
# absoulte path to what we are reading.
|
|
_PARSEDIR = ${.PARSEDIR:${M_tA}}
|
|
|
|
.if ${.MAKE.VERSION} >= 20170130
|
|
# M_cmpv allows comparing dotted versions like 3.1.2
|
|
# ${3.1.2:L:${M_cmpv}} -> 3001002
|
|
# we use big jumps to handle 3 digits per dot:
|
|
# ${123.456.789:L:${M_cmpv}} -> 123456789
|
|
M_cmpv.units = 1 1000 1000000 1000000000 1000000000000
|
|
M_cmpv = S,., ,g:C,^0*([0-9]),\1,:_:range:@i@+ $${_:[-$$i]} \* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh
|
|
.endif
|
|
|
|
# many projects use MAJOR MINOR PATCH versioning
|
|
# ${OPENSSL:${M_M.M.P_VERSION}} is equivalent to
|
|
# ${OPENSSL_MAJOR_VERSION}.${OPENSSL_MINOR_VERSION}.${OPENSSL_PATCH_VERSION}
|
|
M_M.M.P_VERSION = L:@v@$${MAJOR MINOR PATCH:L:@t@$${$$v_$$t_VERSION:U0}@}@:ts.
|
|
|
|
# numeric sort
|
|
.if ${.MAKE.VERSION} < 20210803
|
|
M_On = O
|
|
M_Onr = O
|
|
.else
|
|
M_On = On
|
|
M_Onr = Onr
|
|
.endif
|
|
|
|
# Index of a word in a list.
|
|
# eg. ${LIST:${M_Index:S,K,key,}} is the index of
|
|
# the word "key" in ${LIST}, of course any pattern can be used.
|
|
# If "key" appears more than once, there will be multiple
|
|
# index values use ${M_Index:S,K,key,}:[1] to select only the first.
|
|
M_Index = _:${M_RANGE}:@i@$${"$${_:[$$i]:MK}":?$$i:}@
|
|
|
|
# mtime of each word - assumed to be a valid pathname
|
|
.if ${.MAKE.LEVEL} < 20230510
|
|
M_mtime = tW:S,^,${STAT:Ustat} -f %m ,:sh
|
|
.else
|
|
# M_mtime_fallback can be =error to throw an error
|
|
# or =0 to use 0, default is to use current time
|
|
M_mtime = mtime${M_mtime_fallback:U}
|
|
.endif
|
|
|
|
# This line noise allows doing .bel .space and .tab below
|
|
# don't expect sane results if input is more than a single word
|
|
M_CharLiteral = L:@c@$${x x:L:$${:Uts$$c}:S/x//Wg}@
|
|
.bel := ${\007:${M_CharLiteral}}
|
|
.space := ${\040:${M_CharLiteral}}
|
|
.tab := ${\t:${M_CharLiteral}}
|