diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-05-26 23:30:28 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-05-26 23:30:28 -0400 |
commit | 397181df7c7372bdf4897296dabe386fa4212ea8 (patch) | |
tree | d07bfd677de2511c478f2a1e41c68914236914ab /build/config.mk | |
parent | 7e92bc9d00db4bb35b491881f54484b24d3ed97d (diff) | |
download | bfs-397181df7c7372bdf4897296dabe386fa4212ea8.tar.xz |
build: Use $^ instead of ${.ALLSRC}
Diffstat (limited to 'build/config.mk')
-rw-r--r-- | build/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/config.mk b/build/config.mk index 7f8662a..663926c 100644 --- a/build/config.mk +++ b/build/config.mk @@ -14,7 +14,7 @@ config: gen/config.mk gen/config.h gen/config.mk: gen/vars.mk gen/flags.mk gen/pkgs.mk ${MSG} "[ GEN] $@" @printf '# %s\n' "$@" >$@ - @printf 'include %s\n' ${.ALLSRC} >>$@ + @printf 'include %s\n' $^ >>$@ ${VCAT} $@ .PHONY: gen/config.mk |