#
# Makefile for Extended Tcl updates to the standard UCB Tcl. 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 CFLAGS - CFLAGS for compilation.
#

SHELL=/bin/sh

OBJS=tclBasic.o
LIBTCL=../libtcl.a

all: made.tmp

made.tmp: $(OBJS)
	$(AR) cruv $(LIBTCL) $(OBJS)
	touch made.tmp
clean:
	-rm -f made.tmp
	-rm -f $(OBJS)
