#
# Makefile for Extended Tcl package library. This file is designed to be run
# under the top-level Makefile and expects the following macros to be passed
# in via the environment for a 'all' make:
#   o TCL_UCB_DIR - The location of the UCB Tcl distribution relative to this
#     directory.
#

SHELL=/bin/sh
TCL.TLIB=../tcllib/tcl.tlib
TCL.TNDX=../tcllib/tcl.tndx

TCL_LIBFILES=arrayprocs.tcl   asgnfields.tcl   edprocs.tcl      forfile.tcl   \
             forrecur.tcl     globrecur.tcl    help.tcl         packages.tcl  \
             pushd.tcl        setfuncs.tcl     showprocs.tcl    stringfile.tcl

all: made.tmp

clean:
	-rm -f made.tmp $(TCL.TLIB) $(TCL.TNDX)
made.tmp: $(TCL.TLIB)
	touch made.tmp

$(TCL.TLIB): $(TCL_LIBFILES)
	cat $(TCL_LIBFILES)  >$(TCL.TLIB)
