1# 2# Copyright (c) 1985 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.4 (Berkeley) 09/21/85 7# 8CFLAGS= -O 9OBJS= arc.o box.o charset.o circle.o close.o cont.o dot.o \ 10 erase.o label.o line.o linemod.o move.o open.o point.o \ 11 scale.o space.o 12# default printer resolution dpi 13DEFRES= 240 14 15all: ../libplotimagen 16 17../libplotimagen: ${OBJS} 18 ar cr ../libplotimagen ${OBJS} 19 20close.o erase.o label.o line.o open.o: imp.h imPcodes.h 21cont.o move.o: imp.h 22 23space.o: space.c Makefile 24 ${CC} -c ${CFLAGS} -DDEFRES=${DEFRES} space.c 25 26clean: 27 rm -f ${OBJS} a.out core errs 28