# 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

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

clean: emacsclean
	\rm -f *.class


all: 
	$(JAVAC) *.java
