gno/usr.bin/catrez/Makefile
gdr c7a0146f19 - use getopts to parse parameters (so that -av works like -a -v)
- print error messages on stderr instead of stdout
  - change man page to use bold font in a couple of places and add history
  - update other documentation to reflect changes in making catrez
    part of the standard GNO release
  - added test cases in "tests" directory
1997-09-30 05:14:48 +00:00

27 lines
532 B
Makefile

#
# This makefile is intended for use with dmake(1) on Apple IIGS
#
# $Id: Makefile,v 1.3 1997/09/30 05:14:47 gdr Exp $
#
# Program name
PROG = catrez
# Delivery directory
BINDIR = /usr/bin
# If optimization wasn't set on the command line use 95, since
# catrez has been tested to work at that level.
.IF $(OPTIMIZE) == $(NULL)
OPTIMIZE=95
.END
# If stack size wasn't set on the command line use 1024, since
# catrez has been tested to work at that size.
.IF $(STACK) == $(NULL)
STACK = 1024
.END
.INCLUDE: /src/gno/prog.mk