From 531859db7058fe115ee7674768720730bc4c26ff Mon Sep 17 00:00:00 2001 From: gdr-ftp Date: Sun, 8 Mar 1998 17:46:32 +0000 Subject: [PATCH] Makefile: - abbreviated some macros - removed the -v compilation flag (it can be added from the make command line if necessary) - use single colons in additional dependancies sed.desc: - expand the description a bit. --- usr.bin/sed/Makefile | 16 ++++++---------- usr.bin/sed/sed.desc | 5 +++-- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/usr.bin/sed/Makefile b/usr.bin/sed/Makefile index 2a6be74..e1f75a1 100644 --- a/usr.bin/sed/Makefile +++ b/usr.bin/sed/Makefile @@ -1,14 +1,12 @@ # # This makefile is intended for use with dmake(1) on Apple IIGS -# $Id: Makefile,v 1.1 1997/11/17 04:26:54 gdr Exp $ +# $Id: Makefile,v 1.2 1998/03/08 17:46:30 gdr-ftp Exp $ # # Created by Dave Tribby, October 1997 # Default stack size (can be overridden by cmd line) # This value have been tested and certified as working -.IF $(STACK) == $(NULL) - STACK = 1024 -.END +STACK *= 1024 # Program name PROG= sed @@ -16,16 +14,14 @@ PROG= sed # Source files SRCS= main.c compile.c misc.c process.c -CFLAGS = -v .INCLUDE : /src/gno/prog.mk # # Additional dependancies # - -sed.o:: extern.h defs.h -compile.o:: extern.h defs.h -misc.o:: extern.h defs.h -process.o:: extern.h defs.h +sed.o: extern.h defs.h +compile.o: extern.h defs.h +misc.o: extern.h defs.h +process.o: extern.h defs.h diff --git a/usr.bin/sed/sed.desc b/usr.bin/sed/sed.desc index ac39e62..a491a89 100644 --- a/usr.bin/sed/sed.desc +++ b/usr.bin/sed/sed.desc @@ -6,5 +6,6 @@ Contact: tribby@cup.hp.com Where: /usr/bin FTP: ground.isca.uiowa.edu apple2.caltech.edu trenco.myrias.com - - stream editor - +This is a stream editor with a regular expression command set. It is +intended for doing batch changes rather than for interactive use. +