BINDIR=../bin
OBJ=scat.o readdat.o  plttics.o pttxt.o trans.o recplot.o extplotlib.o
all: scat
scat : $(OBJ)
	cc -o scat $(OBJ)  -lplot
install: scat
	cp scat $(BINDIR)
clean: 
	rm -f scat $(OBJ)
