# Makefile

include ../master.mk

LIBRARY = libutil.a
OBJECTS = StrUtil.o InterpStream.o
CPPFLAGS = -I. -I.. -I$(TCLINCDIR) -I$(XINCDIR)

all: $(LIBRARY)

# roland chanced for sgi irix4.0
# org $(LIBRARY): $(LIBRARY)($(OBJECTS))
#	$(RANLIB) $(LIBRARY)
# to :
$(LIBRARY): $(OBJECTS)
	ar q $(LIBRARY) $(OBJECTS)
	$(RANLIB) $(LIBRARY)

clean:
	rm -f $(LIBRARY) *% core

