gno/usr.bin/sed/Makefile
gdr-ftp 66eeae13e0 Makefile:
Add workaround for PR#106 (dmake).
1999-01-11 01:24:02 +00:00

35 lines
743 B
Makefile

#
# This makefile is intended for use with dmake(1) on Apple IIGS
# $Id: Makefile,v 1.4 1999/01/11 01:24:02 gdr-ftp Exp $
#
# Created by Dave Tribby, October 1997
# Default stack size (can be overridden by cmd line)
# This value have been tested and certified as working
STACK *= 1024
# Program name
PROG= sed
# Part of program containing main
MAIN= main
# Source files
SRCS= main.c compile.c misc.c process.c
.INCLUDE : /src/gno/prog.mk
# This line is here because if we don't have it, then PR#106 is observed.
# Almost certainly, this just moves the problem; it doesn't fix it.
NOTUSED = $(PWD)
#
# Additional dependancies
#
sed.o: extern.h defs.h
compile.o: extern.h defs.h
misc.o: extern.h defs.h
process.o: extern.h defs.h