lib/browser/Makefile
author wenzelm
Wed, 22 Jul 2009 10:45:35 +0200
changeset 32108 77094a0bbc3e
parent 25438 3314983b6edf
child 33686 8e33ca8832b1
permissions -rw-r--r--
shutdown future scheduler after (failed) SAT_Examples, to workaround interference problem with follow-up theory loading;

# $Id$

DST=classes

all: GraphBrowser.jar

GraphBrowser.jar: GraphBrowser/*.java awtUtilities/*.java
	mkdir -p $(DST)
	javac -source 1.4 -d $(DST) GraphBrowser/GraphBrowser.java GraphBrowser/Console.java
	jar cf GraphBrowser.jar -C $(DST) . 
	rm -rf $(DST)

clean:
	rm -f GraphBrowser/*.class
	rm -f awtUtilities/*.class
	rm -rf $(DST)
	rm -f GraphBrowser.jar