I am new to java command line building. In eclipse, I just need to write the source in the sample project and the it builds automatically.
I know javac file1.java -----> file1.class if file1.java is the only source file, I can just java file1 to run it.
However, if I have 2 source files, file1.java file2.java
How can I build the program?
Thanks a lot!