add imagen
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Sun, 22 Sep 1985 06:25:05 +0000 (22:25 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Sun, 22 Sep 1985 06:25:05 +0000 (22:25 -0800)
SCCS-vsn: usr.bin/plot/Makefile 4.6
SCCS-vsn: usr.bin/plot/plot.sh 4.4
SCCS-vsn: usr.bin/plot/plot.1 6.2

usr/src/usr.bin/plot/Makefile
usr/src/usr.bin/plot/plot.1
usr/src/usr.bin/plot/plot.sh

index e892d19..8d4e5c8 100644 (file)
@@ -1,8 +1,8 @@
-#      Makefile        4.5     85/01/04
+#      Makefile        4.6     85/09/21
 #
 CFLAGS=        -O
 ALL=   tek t4013 t300 t300s t450 aedplot bgplot crtplot dumbplot gigiplot \
 #
 CFLAGS=        -O
 ALL=   tek t4013 t300 t300s t450 aedplot bgplot crtplot dumbplot gigiplot \
-       hpplot hp7221plot debug atoplot plottoa
+       hpplot hp7221plot implot debug atoplot plottoa
 
 all:   ${ALL}
 
 
 all:   ${ALL}
 
@@ -42,6 +42,9 @@ hpplot: driver.o
 hp7221plot: driver.o
        cc -o hp7221plot driver.o -lplot7221 -lm
 
 hp7221plot: driver.o
        cc -o hp7221plot driver.o -lplot7221 -lm
 
+implot: driver.o
+       cc -o implot driver.o -lplotimagen -lm
+
 atoplot: atoplot.o
        cc -o atoplot atoplot.o -lplot -lm
 
 atoplot: atoplot.o
        cc -o atoplot atoplot.o -lplot -lm
 
index 39abf69..c5c434e 100644 (file)
@@ -1,4 +1,4 @@
-.\"    @(#)plot.1      6.1 (Berkeley) %G%
+.\"    @(#)plot.1      6.2 (Berkeley) %G%
 .\"
 .TH PLOT 1G ""
 .AT 3
 .\"
 .TH PLOT 1G ""
 .AT 3
@@ -64,6 +64,9 @@ DEC vt125 terminal.
 .BR hp2648\  or\  hp\  or\  hp8
 Hewlett Packard 2648 graphics terminal.
 .TP
 .BR hp2648\  or\  hp\  or\  hp8
 Hewlett Packard 2648 graphics terminal.
 .TP
+.B imagen\ or\ ip
+Imagen LBP-10 200 dots-per-inch laser printer.
+.TP
 .B ver
 Versatec D1200A printer-plotter.
 .TP
 .B ver
 Versatec D1200A printer-plotter.
 .TP
@@ -101,6 +104,8 @@ the standard output.
 .br
 /usr/bin/hpplot
 .br
 .br
 /usr/bin/hpplot
 .br
+/usr/bin/implot
+.br
 /usr/ucb/lpr
 .SH "SEE ALSO"
 plot(3X), plot(3F), plot(5), lpr(1)
 /usr/ucb/lpr
 .SH "SEE ALSO"
 plot(3X), plot(3F), plot(5), lpr(1)
index ecc3bb9..35f78d0 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
 #!/bin/sh
-#      @(#)plot.sh     4.3     (Berkeley)      %G%
+#      @(#)plot.sh     4.4     (Berkeley)      %G%
 #
 PATH=/bin:/usr/bin:/usr/ucb
 case $1 in
 #
 PATH=/bin:/usr/bin:/usr/ucb
 case $1 in
@@ -21,6 +21,7 @@ case $t in
 -Thp7221|-Thp7|-Th7)   exec hp7221plot $*;;
 -Thp|-T2648|-T2648a|-Thp2648|-Thp2648a|h8)
                        exec hpplot $*;;
 -Thp7221|-Thp7|-Th7)   exec hp7221plot $*;;
 -Thp|-T2648|-T2648a|-Thp2648|-Thp2648a|h8)
                        exec hpplot $*;;
+-Tip|-Timagen)         exec implot $*;;
 -Tcrt)                 exec crtplot $*;;
 -Tdumb|un|unknown)     exec dumbplot $*;;
 *)                     exec crtplot $*;;
 -Tcrt)                 exec crtplot $*;;
 -Tdumb|un|unknown)     exec dumbplot $*;;
 *)                     exec crtplot $*;;