# 
# FractalDrawer makefile
#
# use 'make jar' or simply 'make' to build the JAR package
# use 'make compile' to just compile the sources
# use 'make clean' to delete the .class files
#
# (P) 2001 Laurentiu Cristofor
#

# build JAR package
jar: compile
	jar -cvmf jar-manifest FractalDrawer.jar *.class *.txt *.html *.java jar-manifest makefile  

# compile sources
compile: clean
	javac FractalDrawer.java

# clean-up
clean: 
	rm -f *.class

