##########################################################################
##
##  Discovery Method CASE Tool
##
##########################################################################
##
##  Filename:	Makefile
##  Contents:	Makefile for building the Discovery CASE tool package
##  Author:	Anthony J H Simons
##  Revised:	16 June 2008

## This software is distributed free in the hope that others will
## find it useful.  However, it comes WITHOUT ANY WARRANTY.  No
## liability can be accepted for software failure, merchantability
## or fitness for a particular purpose.  You can redistribute this
## software in its original form, or in a modified form, provided
## that this disclaimer is retained in the file banner.

clean:
	rm -f *.class
	rm -f discovery/data/*.class
	rm -f discovery/gui/*.class
	rm -f discovery/model/*.class
	rm -f discovery/view/*.class

discovery:
	javac discovery/data/*.java
	javac discovery/gui/*.java
	javac discovery/model/*.java
	javac discovery/view/*.java
	javac Run.java

