Erick Tryzelaar wrote:
> Hmm, this led me to a stack overflow, with this OMakefile:
Here's a smaller file that still has the Stack_overflow:
OMakefile:
comflags(sources) =
return $(sources)
make-rule(target, sources) =
$(target):
echo $(comflags $(sources))
return $(target)
.DEFAULT: $(make-rule cmain, foo)