# master.mk - include makefile for tcl applications

# default list of sources
SRCS = *.tcl

# default: update index file
all: tclIndex

# update tcl index file
tclIndex: *.tcl
	./mkIndex

clean:
	rm -f core *~ *%


