1*19853Sdist# Copyright (c) 1980 Regents of the University of California. 2*19853Sdist# All rights reserved. The Berkeley software License Agreement 3*19853Sdist# specifies the terms and conditions for redistribution. 415408Sralph# 5*19853Sdist# @(#)Makefile 5.1 (Berkeley) 04/30/85 6*19853Sdist# 7*19853Sdist# 815408SralphCFLAGS= -O 915501SralphOBJS= box.o circle.o arc.o cont.o dot.o erase.o line.o linemod.o point.o \ 1015424Sralph label.o move.o open.o close.o space.o 1115408Sralph 1215497Sralph../libplotbg: ${OBJS} 1315497Sralph ar cu ../libplotbg ${OBJS} 1415408Sralph 1515408Sralph${OBJS}: bg.h 1615408Sralph 1715408Sralphclean: 1815408Sralph rm -f ${OBJS} errs a.out core 19