#
# Makefile for Extended Tcl ossupport code.   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. (Includes SUPPORT_FLAGS defined in
#      top level make file).
#    o OBJS - The ossupport objects to compile.
#

SHELL=/bin/sh

LIBTCL=../libtcl.a

all: made.tmp

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