Re: java Makefile

2001-06-16 Thread Per Bothner
"Matt Fair" <[EMAIL PROTECTED]> writes: > 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 co

java Makefile

2001-06-16 Thread Matt Fair
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

Re: java Makefile

2001-06-16 Thread Evan Prodromou
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > "EP" == Evan Prodromou <[EMAIL PROTECTED]> writes: EP> I use ant: EP> http://jakarta.apache.org/ant/index.html EP> It's not as general-purpose as make, but it takes care of a EP> lot of the hassles of dealing with Java

Re: java Makefile

2001-06-16 Thread Evan Prodromou
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > "MF" == Matt Fair <[EMAIL PROTECTED]> writes: MF> Is there a good way to create a good Makefile for JAVA MF> projects? Right now all I am doing is in my Makefile I have: MF> javac $(find . -name \*.java) MF> This does the tric

Re: java Makefile

2001-06-16 Thread Per Bothner
"Matt Fair" <[EMAIL PROTECTED]> writes: > 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 c

java Makefile

2001-06-16 Thread Matt Fair
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 an