I have a large project whose build process consists of running some
independent sub-build steps within several hundred directories. As a
preparatory step, we copy each of these directories into a temporary build
location:
# collect a list of all source files
sources := $(shell find src -mindepth 2
On Mon, Mar 4, 2024 at 2:27 PM Stephen Touset via Users list for the
GNU implementation of make wrote:
> sources := $(shell find src -mindepth 2 -type f)
$(wildcard ...) is faster than $(shell find ...).
...
> We jump through all these hoops for some important reasons. The build
> process often