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.
This commit is contained in:
gdr-ftp
1998-03-08 17:46:32 +00:00
parent e42c4e0794
commit 531859db70
2 changed files with 9 additions and 12 deletions

View File

@@ -1,14 +1,12 @@
# #
# This makefile is intended for use with dmake(1) on Apple IIGS # 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 # Created by Dave Tribby, October 1997
# Default stack size (can be overridden by cmd line) # Default stack size (can be overridden by cmd line)
# This value have been tested and certified as working # This value have been tested and certified as working
.IF $(STACK) == $(NULL) STACK *= 1024
STACK = 1024
.END
# Program name # Program name
PROG= sed PROG= sed
@@ -16,16 +14,14 @@ PROG= sed
# Source files # Source files
SRCS= main.c compile.c misc.c process.c SRCS= main.c compile.c misc.c process.c
CFLAGS = -v
.INCLUDE : /src/gno/prog.mk .INCLUDE : /src/gno/prog.mk
# #
# Additional dependancies # Additional dependancies
# #
sed.o: extern.h defs.h
sed.o:: extern.h defs.h compile.o: extern.h defs.h
compile.o:: extern.h defs.h misc.o: extern.h defs.h
misc.o:: extern.h defs.h process.o: extern.h defs.h
process.o:: extern.h defs.h

View File

@@ -6,5 +6,6 @@ Contact: tribby@cup.hp.com
Where: /usr/bin Where: /usr/bin
FTP: ground.isca.uiowa.edu apple2.caltech.edu trenco.myrias.com 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.