# Makefile

all: index

index: *.tcl
	wish -f mkIndex.tcl

test: all 

clean:
	rm -f *% core

