mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-15 18:31:33 +00:00
a5ad3a71b7
- corrected name and location of prog.mk - set stack size to 1024 (768 was a bit too low)
29 lines
521 B
Makefile
29 lines
521 B
Makefile
#
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
|
#
|
|
# Created by Dave Tribby, August 1997
|
|
#
|
|
# $Id: Makefile,v 1.2 1997/09/24 06:21:24 gdr Exp $
|
|
|
|
# Program name
|
|
PROG= tr
|
|
# Source files
|
|
SRCS= tr.c str.c
|
|
|
|
# If optimization wasn't set on the command line use 79, since
|
|
# tr has been tested to work at that level.
|
|
.IF $(OPTIMIZE) == $(NULL)
|
|
OPTIMIZE=79
|
|
.END
|
|
|
|
# Current implementation is using 810 bytes
|
|
STACK = 1024
|
|
|
|
.INCLUDE : /src/gno/prog.mk
|
|
|
|
#
|
|
# Additional dependancies
|
|
#
|
|
tr.o:: extern.h
|
|
str.o:: extern.h
|