# GNU Makefile for Download Machine
#
# This program is free software; you can redistribute
# it and/or modify it under the terms of the GNU
# General Public License ...

#JAVAC_FLAGS=-O

JAVAC=javac -green

doc=README

sources=dmachine.java downloadfactory.java qfile.java util.java

dmachine: $(sources)
	$(JAVAC) $(JAVAC_FLAGS) $?
	-touch dmachine

clean:
	rm -f *.class tags dmachine

.PHONY: run debug clean	default install zip tar
