lib/browser/Makefile
author Thomas Sewell <tsewell@nicta.com.au>
Fri, 11 Sep 2009 18:03:30 +1000
changeset 32748 887c68b70f7d
parent 25438 3314983b6edf
child 33686 8e33ca8832b1
permissions -rw-r--r--
There's no particular reason to duplicate the extension constant's definition under the name "ext_def", and it also prevents you having a field called ext.

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