#
# File: devPB/.Makefile
# Authors: J. Painter,
#          K.R. Sloan
# Last Modified: 17 April 1990
# Purpose: maintain devPB

all: libDEVICE.a

SGP = XSGP
CFLAGS = XCFLAGS  -I/usr/graphics/vertigo/include

OBJS =  DEVICE.o devClip.o devCircle.o devTriangle.o 

devClip.o: devClip.c 

devCircle.o: devCircle.c

devTriangle.o: devTriangle.c

DEVICE.o : DEVICE.c

libDEVICE.a: ${OBJS}
	rm -f libDEVICE.a
	ar ruv libDEVICE.a ${OBJS}
	ranlib libDEVICE.a

install: all
	ls -l

clean :
	rm -f *.o *~ *.ckp *.bak \#* .emacs* core
	ls -l


					
					
