mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +00:00
5de7c76601
- install sed into /usr/bin rather than /bin
38 lines
790 B
Makefile
38 lines
790 B
Makefile
#
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
|
# $Id: Makefile,v 1.5 1999/01/28 18:52:03 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
|
|
|
|
# Where sed gets installed.
|
|
BINDIR = /usr/bin
|
|
|
|
# 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
|
|
|
|
|