lib/browser/Makefile
author wenzelm
Sat, 17 May 2008 14:27:02 +0200
changeset 26930 64e50d783276
parent 25438 3314983b6edf
child 33686 8e33ca8832b1
permissions -rw-r--r--
default token translations: observe Sign.is_pretty_global for fixed variables;

# $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