Re: compliler
If you want to compile one file and it depends on another file, you'll
need to compile both at once.
javac *.java
usually suffices.
Other than that, go to
http://ant.apache.org and learn about ant.
.
Relevant Pages
- Re: speeding up javac
... For various reasons using ANT ... it wouldn't be difficult to write a Java program that ... I already did this to some extent when it selects what to compile (I ... ANT doesn't do anything as clever as scan imports; ... (comp.lang.java.programmer) - Ant Help
... Java source files to compile. ... Only Java files that have no ... How can we make Ant to compile only the source file in that have ... (comp.lang.java.programmer) - Re: applet build
... build classes without using a tool like Ant, or is it; ... build the damm tool and run it. ... with the main method and compile this. ... I can't find any binaries. ... (comp.lang.java.programmer) - Ant/Javac: building as many files as possible?
... This is not necessarily an Ant question, nor a standard sun Javac. ... that does not compile, sometimes it happens. ... compile fails, the whole thing fails. ... (comp.lang.java.developer) - Ant/Javac: building as many files as possible?
... This is not necessarily an Ant question, nor a standard sun Javac. ... that does not compile, sometimes it happens. ... compile fails, the whole thing fails. ... (comp.lang.java.programmer) |
|