From e1cc67d3d763fe946a19795422d86d433232558b Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Mon, 4 Jul 1983 18:06:31 -0800 Subject: [PATCH] forgot to update after libary changes SCCS-vsn: usr.bin/plot/Makefile 4.3 --- usr/src/usr.bin/plot/Makefile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/usr/src/usr.bin/plot/Makefile b/usr/src/usr.bin/plot/Makefile index a1a4fad740..a1f7d84fb7 100644 --- a/usr/src/usr.bin/plot/Makefile +++ b/usr/src/usr.bin/plot/Makefile @@ -1,18 +1,24 @@ +# Makefile 4.3 83/07/04 # -# Makefile 4.2 83/03/24 -# -all: tek t300 t300s t450 vplot +CFLAGS= -O +ALL= tek t300 t300s t450 vplot + +all: ${ALL} tek: driver.o cc -o tek driver.o -l4014 -lm + t300: driver.o cc -o t300 driver.o -l300 -lm + t300s: driver.o cc -o t300s driver.o -l300s -lm + t450: driver.o cc -o t450 driver.o -l450 -lm -vplot: vplot.c - cc -o vplot vplot.c + +vplot: vplot.o chrtab.o + cc -o vplot vplot.o chrtab.o install: all install -s tek ${DESTDIR}/usr/bin @@ -22,4 +28,4 @@ install: all install -s vplot ${DESTDIR}/usr/bin install -c plot.sh ${DESTDIR}/usr/bin/plot clean: - rm -f *.o tek t300 t300s t450 vplot + rm -f *.o ${ALL} a.out core errs -- 2.20.1