1997-09-21 22:20:37 +00:00
|
|
|
#
|
|
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
1998-03-08 17:49:45 +00:00
|
|
|
# $Id: Makefile,v 1.4 1998/03/08 17:49:40 gdr-ftp Exp $
|
1997-09-21 22:20:37 +00:00
|
|
|
#
|
|
|
|
# Created by Dave Tribby, August 1997
|
|
|
|
|
|
|
|
# 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.
|
1998-03-08 17:49:45 +00:00
|
|
|
OPTIMIZE *= 79
|
1997-09-21 22:20:37 +00:00
|
|
|
|
1997-09-24 06:21:24 +00:00
|
|
|
.INCLUDE : /src/gno/prog.mk
|
1997-09-21 22:20:37 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Additional dependancies
|
|
|
|
#
|
1998-03-08 17:49:45 +00:00
|
|
|
tr.o: extern.h
|
|
|
|
str.o: extern.h
|