I would also suggest using some kind of build tool (Ant or Maven, Ant is already suggested and is easier to start with) or an IDE that handles the compilation (Eclipse uses incremental compilation with reconciling strategy, and you don't even have to care to press any "Compile" buttons).
Using Javac
If you need to try something out for a larger project and don't have any proper build tools nearby, you can always use a small trick that javac offers: the classnames to compile can be specified in a file. You simply have to pass the name of the file to javac with the @ prefix.
If you can create a list of all the *.java files in your project, it's easy:
# Linux
$ find -name "*.java" > sources.txt
$ javac @sources.txt
:: Windows
> dir /s /B *.java > sources.txt
> javac @sources.txt
- The advantage is that is is a quick and easy solution.
- The drawback is that you have to regenerate the
sources.txt file each time you create a new source or rename an existing one file which is an easy to forget (thus error-prone) and tiresome task.
Using a build tool
On the long run it is better to use a tool that was designed to build software.
Using Ant
If you create a simple build.xml file that describes how to build the software:
<project default="compile">
<target name="compile">
<mkdir dir="bin"/>
<javac srcdir="src" destdir="bin"/>
</target>
</project>
you can compile the whole software by running the following command:
$ ant
- The advantage is that you are using a standard build tool that is easy to extend.
- The drawback is that you have to download, set up and learn an additional tool. Note that most of the IDEs (like NetBeans and Eclipse) offer great support for writing build files so you don't have to download anything in this case.