Search notes:

GNU make: function $(wildcard …)

FILES_STARTING_WITH_B=$(wildcard b*)

$(info Files starting with b: $(FILES_STARTING_WITH_B))

all:
	@true
Github repository about-Makefile, path: /functions/wildcard/Makefile

See also

Compare with wildcards and assigning a star to a variable.
make

Index