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

all: libDEVICE.a

ARCH = SS1
SGP = /wa/SGP
CFLAGS = -O -I/wa/SGP/include  -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
	mv libDEVICE.a libDEVICE.${ARCH].a
	chmod a+r libDEVICE.${ARCH].a
	ls -l

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


					
					
