Compiling under Unix/Linux

These commands will build a list of all of the java files which can then be used as input into the javac command to compile everything. The commands can either be entered again and again or put into a script file. It is assumed that WolfMUD has been installed into ~/wolfmud and the sources into ~/wolfmud/sources.

cd ~/wolfmud/sources
find . -name '*.java' > file.list
javac -d ~/wolfmud @file.list