I would like to select all files in directory but using FreeBSD's make.
In GNU make this approach works:
FILES=$(wildcard *.c)
I am using FreeBSD's make, not GNU make so I am looking for command that will work in FreeBSD's make.
As it s stated in bottom link, FreeBSD has it's own functions but I cannot find them.