mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-17 12:08:43 +00:00
20 lines
439 B
Makefile
20 lines
439 B
Makefile
#
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
|
# $Id: Makefile,v 1.1 1997/10/03 04:02:40 gdr Exp $
|
|
#
|
|
# Created by Dave Tribby, September 1997
|
|
|
|
# Program name
|
|
PROG= sleep
|
|
|
|
# Default stack size and optimization (can be overridden by cmd line)
|
|
# These values have been tested and certified as working
|
|
.IF $(STACK) == $(NULL)
|
|
STACK = 768
|
|
.END
|
|
.IF $(OPTIMIZE) == $(NULL)
|
|
OPTIMIZE = -1
|
|
.END
|
|
|
|
.INCLUDE : /src/gno/prog.mk
|