On Tue, 2023-09-05 at 17:36 +0200, Sébastien Hinderer wrote: > Is there a way to filter-out just the files whose path contains > /bytecode/, for isntance?
You can't use filter-out for this as you discovered. But you can use a loop and findstring with if, like this: $(foreach F,$(FILES),$(if $(findstring /bytecode/,$F),,$F))