CC=gcc
CFLAGS=-O3 -Wall -DUSE_TCLX
LDFLAGS=-ltcl -ltclx
BINS=tcls
OBJS=tcls.o

all:	$(BINS)
tclstrip: tcls.o
tclstrip.o: tcls.c

clean: 
	rm -f $(BINS) $(OBJS) *~ core
