diff --git a/usr.bin/colcrt/Makefile b/usr.bin/colcrt/Makefile index 42cbbe0..7767b36 100755 --- a/usr.bin/colcrt/Makefile +++ b/usr.bin/colcrt/Makefile @@ -2,7 +2,7 @@ # # Modified for GNO (Apple IIgs) and dmake(1) by Steve Reeves, January 1998 # -# $Id: Makefile,v 1.1 1998/02/17 03:12:27 gdr-ftp Exp $ +# $Id: Makefile,v 1.2 1998/03/08 17:36:27 gdr-ftp Exp $ PROG= colcrt @@ -12,11 +12,7 @@ DEFINES+= -DNOID # Default stack size and optimization (can be overridden by cmd line) # These values have been tested and certified as working -.IF $(STACK) == $(NULL) -STACK= 1024 -.END -.IF $(OPTIMIZE) == $(NULL) -OPTIMIZE= 127 -.END +STACK *= 1024 +OPTIMIZE *= 127 .INCLUDE: /src/gno/prog.mk diff --git a/usr.bin/colcrt/colcrt.desc b/usr.bin/colcrt/colcrt.desc index ac88098..7591321 100755 --- a/usr.bin/colcrt/colcrt.desc +++ b/usr.bin/colcrt/colcrt.desc @@ -4,6 +4,6 @@ Shell: GNO Author: Steve Reeves (from FreeBSD code) Contact: stever@gate.net Where: /usr/bin -FTP: ground.isca.uiowa.edu apple2.caltech.edu trenco.myrias.com +FTP: ground.isca.uiowa.edu apple2.caltech.edu ftp.gno.org Filter nroff output for CRT previewing. diff --git a/usr.bin/colcrt/tests/dotests b/usr.bin/colcrt/tests/dotests index e907b4e..4658296 100755 --- a/usr.bin/colcrt/tests/dotests +++ b/usr.bin/colcrt/tests/dotests @@ -1,10 +1,10 @@ # Tests for colcrt command; invoked by command file "fulltests" # Adapted from a test script written by Dave Tribby # -# $Id: dotests,v 1.1 1998/02/17 03:12:50 gdr-ftp Exp $ +# $Id: dotests,v 1.2 1998/03/08 17:36:35 gdr-ftp Exp $ # Location of the command to be tested -set testcmd="../colcrt" +set testcmd="/obj/gno/usr.bin/colcrt/colcrt" # Record starting time echo -n "Testing command $testcmd beginning at" diff --git a/usr.bin/colcrt/tests/fulltests b/usr.bin/colcrt/tests/fulltests index 42bf7cb..5b5e1a1 100755 --- a/usr.bin/colcrt/tests/fulltests +++ b/usr.bin/colcrt/tests/fulltests @@ -1,6 +1,6 @@ # gsh script to run tests and collect results # Written by Dave Tribby * August 1997 -# $Id: fulltests,v 1.1 1998/02/17 03:12:53 gdr-ftp Exp $ +# $Id: fulltests,v 1.2 1998/03/08 17:36:38 gdr-ftp Exp $ # Name of gsh script containing test cases set command="dotests" @@ -12,7 +12,7 @@ set raw_file="/tmp/rawlist" set result_file="test.list" # Location of tr command that knows how to handle classes -set trcmd="/src/gno/usr.bin/tr/tr" +set trcmd="/obj/gno/usr.bin/tr/tr" # --- Begin the tests ---