René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

gmake functions

filter

shell

shell and wildcard are the only two functions that communicate with the world outside of make!

strip

wildcard

While wildcard expansion happens in rules it doesn't automatically happen in other places (like variable assignment). Here comes wildcard.
The following example returns all files ending in .txt.
$(wildcard *.txt)
shell and wildcard are the only two functions that communicate with the world outside of make!