# This is the small makefile for the huffman class.
# Edit it to fit your needs, if you really want.

COMPILER = javac
# COMPILER = jikes 
# COMPILER = guavac

VERSION = 1.00

all:
	$(COMPILER) Huffman.java  
	@echo 'Huffman.class made - please take a look at the file README now !'

clean:
	rm -f *.o core *~ *.bak *.class 
