
help:
	@echo
	@echo "tcobench    Run tcobench"
	@echo "tcobencht   Run tcobench with tracing"
	@echo "clean       Delete compiled files"
	@echo "help        Display the help infomation"
	@echo

tcobench:	Tcobench.class
	java Tcobench -k 2 -n 2 -w 3 -m 2 -c 3

tcobencht:	Tcobench.class
	java Tcobench -t -k 2 -n 2 -w 3 -m 2 -c 3

test:	Tcobench.class
	java Tcobench -t -k 1 -n 2 -w 2 -m 2 -c 2

Tcobench.class:	Tcobench.java
	javac Tcobench.java

clean:
	rm -f *.class *~
