Java Makefiles have a problem; .java files end up being in lots of
little directories. How about expanding make's globbing rules to
include a recursive decent? Ie:
  $(wildcard java-src/**/*.java)
Which would be like doing
  $(shell find java-src -name *.java)

The "**" convention is used pretty consistently in a lot of Unix
tools, although I don't know if any GNU tools do it.

                                                     [EMAIL PROTECTED]
.       .      .     .    .   .  . . http://www.media.mit.edu/~nelson/

_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to