#
#	Tektronix 4010-4012-4014 routines
#
CFILES= tekclose.c tekerase.c tekmessage.c tekopen.c\
	    setmode.c tekplot.c tekpoint.c tekpack.c

default: teklib.a

sep: Teklib.a

teklib.a: $(CFILES)
	rm -f *.o
	cc -c $(CFLAGS) $?
	ar crv teklib.a *.o
	ranlib teklib.a
	rm -f *.o

Teklib.a: $(CFILES)
	rm -f *.o
	cc -c $(CFLAGS) -DSEP $?
	ar crv Teklib.a *.o
	ranlib Teklib.a
	rm -f *.o

clean:
	rm -f *.o
