#
# Makefile for Extended Tcl C sources.  This will compile all of Extended Tcl
# and add it to the libtcl.a in the parent directory.  It will also build a
# tclshell under the name 'tcl' in the parent directory.  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 - Flags for the C-compile, including -I to find the UCB Tcl .h
#      files.
#    o HISTORY_FLAG - Can contain a define to turn off history.
#    o TCL_DEFAULT - The name of the Tcl default file.
#
SHELL=/bin/sh
CC = cc -O -I.

OBJS= handles.o extendUtil.o 

all: made.tmp

made.tmp: $(OBJS)
	cp $(OBJS) ../
	touch made.tmp

clean:
	$(RM) $(OBJS)


