# Makefile

all: tclIndex

tclIndex: *.tcl
	wish -f mkIndex.tcl

test: all 

clean:
	rm -f *% core

