On Fri, Aug 25, 2000 at 04:29:47PM +0200, Ruediger Kapitza wrote: > hi! > I made some little correction to the current Makefile: > remove DotCounter, Zipper > (--> because I only found them in Freenet/client/old)
I think you'll have more to do now, because I just moved a bunch of files from support to support.io > and > add some dirs to clean > (--> maybe something like find . -name '*.class' | xargs rm > would be better ) There is a file scripts/clean that already does this AFAIK. > Who would like to check it in ? > > Another question: Why there a two scripts for producing > the binaries (build.sh and Makefile) ? > > Maybe buid.sh could become a Wrapper for the Makefile ? The build.sh is older and a habit. I don't really see the point with the Makefile since it doesn't actually check the dependencies. According to the author this can't be done since java uses wildcard imports (import Freenet.client.*), and giving up those would be a real bitch. Ant is a java based build tool that uses xml build files, and has a java specific methods that do the dependencies recursively on java files. I would really like it if somebody took the time to make build files for that (or another tool that works like it's supposed to). http://jakarta.apache.org/ant/ > > Ruediger > > _______________________________________________ > Freenet-dev mailing list > Freenet-dev at lists.sourceforge.net > http://lists.sourceforge.net/mailman/listinfo/freenet-dev > -- \oskar _______________________________________________ Freenet-dev mailing list Freenet-dev at lists.sourceforge.net http://lists.sourceforge.net/mailman/listinfo/freenet-dev
