mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-05 13:05:44 +00:00
c7a0146f19
- 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
27 lines
532 B
Makefile
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
|