# Makefile

include ../master.mk

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

all: $(OBJECTS)
xall: $(LIBRARY)

$(LIBRARY): $(LIBRARY)($(OBJECTS))
	$(RANLIB) $(LIBRARY)

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

