test:
	./algotutor -a graham data/pts1.gr
	./algotutor -a dom data/pts1.gr
	./algotutor -a heap data/countries.gr
	./algotutor -a bst data/countries.gr
	./algotutor -a rbt data/countries.gr
	./algotutor -a prim data/randgrid.gr
	./algotutor -a dijk data/tt.gr
	./algotutor -a flwa data/lv.gr
	./algotutor -a lcs AGCTATACGATGACT GTCAGTATAGTCATATG
	./algotutor -a matc 32 A 35 B 24 C 30 D 36 E 25 F 40 G 34 H 35

dist:	test
	rm -rf ~/algotutor
	cp -LpR . ~/algotutor
	cp -LpR ~/public_html/p/algotutor ~/algotutor/doc
	(cd ~/algotutor; \
	for f in algotutor gen_at_graph ; \
	    do pod2html $$f > doc/$$f.html ; \
	    pod2man $$f > doc/$$f.1 ; \
	done; \
	rm -f *.tmp *.x~~)
