mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-04 22:08:21 +00:00
32 lines
577 B
Makefile
32 lines
577 B
Makefile
#
|
|
# This makefile is intended for use with dmake(1) on Apple IIGS
|
|
# $Id: Makefile,v 1.1 1997/11/17 04:26:54 gdr 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
|
|
.IF $(STACK) == $(NULL)
|
|
STACK = 1024
|
|
.END
|
|
|
|
# Program name
|
|
PROG= sed
|
|
|
|
# Source files
|
|
SRCS= main.c compile.c misc.c process.c
|
|
|
|
CFLAGS = -v
|
|
.INCLUDE : /src/gno/prog.mk
|
|
|
|
#
|
|
# 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
|
|
|
|
|