gno/usr.bin/tr/Makefile

26 lines
462 B
Makefile
Raw Normal View History

1997-09-21 22:20:37 +00:00
#
# This makefile is intended for use with dmake(1) on Apple IIGS
# $Id: Makefile,v 1.3 1997/10/03 04:13:06 gdr 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.
.IF $(OPTIMIZE) == $(NULL)
OPTIMIZE=79
.END
.INCLUDE : /src/gno/prog.mk
1997-09-21 22:20:37 +00:00
#
# Additional dependancies
#
1997-09-21 22:20:37 +00:00
tr.o:: extern.h
str.o:: extern.h