1# 2# Copyright (c) 1980 Regents of the University of California. 3# All rights reserved. The Berkeley software License Agreement 4# specifies the terms and conditions for redistribution. 5# 6# @(#)Makefile 5.1 (Berkeley) 06/07/85 7# 8CFLAGS= -O 9 10OBJS = arc.o box.o circle.o clospl.o cont.o dot.o erase.o label.o \ 11 line.o linemd.o move.o open.o point.o space.o 12 13../libf77plot: ${OBJS} 14 ar cu ../libf77plot `lorder ${OBJS} | tsort` 15 16clean: 17 rm -f ${OBJS} errs a.out core 18