# this works with the gnu make tool. If you are working with windows, please install cygwin to get
# gnumake (goto http://www.sourceware.cygnus.com).

ROOT=../../../../
#override settings of makefile if needed

-include  $(ROOT)/build-config
#uncomment for copious amounts of parser tracing.


%.class: %.java
	$(JAVAC) $<

clean:
	\rm -f *.class

all: 
	$(JAVAC) *.java

