SHELL = /bin/sh

tclIndex: makeIndex

makeIndex:
	echo auto_mkindex . *.tcl | tclsh

checkin: timestamp
	touch checkin
	for i in j*.tcl; \
	do \
	sed -n 1p $$i > $$i.txt; \
	ci -l -f "-m`date`" -t$$i.txt ../../.RCS-jstools/lib/$$i,v; \
	rm $$i.txt; \
	done
	touch timestamp

timestamp:
	touch timestamp
