Getting java compilation working automagically is a real pain.
Here's the information so far on what might be possible.  The program
creates a whole bunch of *.h: dependencies which I don't really want.

Classes JavaDeps can't parse
-----------------------------
java.io.StreamTokenizer
java.lang.Character

Might need to take out quite a few classes, including those in
--------------------------------------------------------------
java.text.*;
java.security.*;

Creating output suitable for Makefile.am?
-----------------------------------------
find classpath -type f -print | grep "\.java$" | grep -v
"^classpath\/test" > files

JavaDeps-2.0.1/jdeps -f classpath/files -v -b "\$(JAVAC)" > Makefile.inc

%s/classpath\///g

%s/JAVAC)/JAVAC) -d lib/g

Does it compile yet?  No. ;(

-- 
|-------------------------------|Software Engineer
|Brian Jones                    |[EMAIL PROTECTED]
|[EMAIL PROTECTED]                    |http://www.nortel.net
|http://www.classpath.org/      |------------------------------

Reply via email to