Is there a good way to create a good Makefile for JAVA projects? Right now all I am doing is in my Makefile I have: javac $(find . -name \*.java)
This does the trick, but all it does is when I call Makefile is go through all my java files and compiles them. Is there a way to check dependencies and compile only the files that need compiling? Thanks, Matt