I am looking for something like : FILES = $(shell find . -name "*.c")
but without calling the shell, because it seems not to work on solaris.
You're missing the -print command. Try
FILES = $(shell find . -name "*.c" -print)
Posix find doesn't require -print, but classic find does. - Dan
_______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
