factor/gcj-compile

7 lines
126 B
Bash

#!/bin/sh
for file in `find org factor -name \*.java`; do
gcj -c $file
done
gcj --main=factor.FactorInterpreter -o f *.o