1997-09-21 22:08:32 +00:00
|
|
|
#
|
1997-09-26 06:30:33 +00:00
|
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
|
|
|
#
|
1997-09-30 05:14:48 +00:00
|
|
|
# $Id: Makefile,v 1.3 1997/09/30 05:14:47 gdr Exp $
|
1997-09-21 22:08:32 +00:00
|
|
|
#
|
|
|
|
|
1997-09-26 06:30:33 +00:00
|
|
|
# Program name
|
|
|
|
PROG = catrez
|
1997-09-21 22:08:32 +00:00
|
|
|
|
1997-09-26 06:30:33 +00:00
|
|
|
# Delivery directory
|
|
|
|
BINDIR = /usr/bin
|
1997-09-30 05:14:48 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
1997-09-21 22:08:32 +00:00
|
|
|
|
1997-09-26 06:30:33 +00:00
|
|
|
.INCLUDE: /src/gno/prog.mk
|