mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-04-02 17:32:09 +00:00
Makefile:
- use single colons on extra dependancies
This commit is contained in:
parent
3d887aa334
commit
b36acdb112
@ -4,29 +4,24 @@
|
||||
# Created by Dave Tribby, August 1997
|
||||
# Modified by Evan Day, September 1997
|
||||
#
|
||||
# $Id: Makefile,v 1.1 1997/10/03 05:06:50 gdr Exp $
|
||||
# $Id: Makefile,v 1.2 1998/02/19 02:03:15 gdr-ftp Exp $
|
||||
|
||||
# Program name
|
||||
PROG= chtyp
|
||||
# Source files
|
||||
SRCS= chtyp.c ftypes.c
|
||||
PROG = chtyp
|
||||
SRCS = chtyp.c ftypes.c
|
||||
|
||||
# If optimization wasn't set on the command line use 79, since
|
||||
# chtyp has been tested to work at that level.
|
||||
.IF $(OPTIMIZE) == $(NULL)
|
||||
OPTIMIZE=79
|
||||
.END
|
||||
OPTIMIZE*= 79
|
||||
|
||||
# Current implementation is using 960 bytes give or take
|
||||
STACK = 1024
|
||||
|
||||
# Installation point
|
||||
BINDIR = /bin
|
||||
|
||||
.INCLUDE : /src/gno/prog.mk
|
||||
|
||||
#
|
||||
# Additional dependancies
|
||||
# Additional dependancies.
|
||||
#
|
||||
chtyp.o:: ftypes.h
|
||||
ftypes.o:: ftypes.h
|
||||
ftypes.o: ftypes.h
|
||||
chtyp.o: ftypes.h
|
||||
|
||||
|
||||
|
@ -4,31 +4,24 @@
|
||||
# Created by Dave Tribby, August 1997
|
||||
# Modified by Evan Day, September 1997
|
||||
#
|
||||
# $Id: Makefile,v 1.2 1997/10/05 16:41:59 gdr Exp $
|
||||
# $Id: Makefile,v 1.3 1998/02/19 02:05:06 gdr-ftp Exp $
|
||||
|
||||
# Program name
|
||||
PROG= cmp
|
||||
# Source files
|
||||
SRCS= cmp.c misc.c rcmp.c special.c
|
||||
|
||||
# If optimization wasn't set on the command line use 79, since
|
||||
# cmp has been tested to work at that level.
|
||||
.IF $(OPTIMIZE) == $(NULL)
|
||||
OPTIMIZE=79
|
||||
.END
|
||||
OPTIMIZE *= 79
|
||||
|
||||
# Current implementation is using ~1050 bytes give or take
|
||||
STACK = 1280
|
||||
|
||||
# Installation point
|
||||
BINDIR = /bin
|
||||
|
||||
.INCLUDE : /src/gno/prog.mk
|
||||
|
||||
#
|
||||
# Additional dependancies
|
||||
#
|
||||
cmp.o:: extern.h
|
||||
misc.o:: extern.h
|
||||
rcmp.o:: extern.h
|
||||
special.o:: extern.h
|
||||
cmp.o: extern.h
|
||||
misc.o: extern.h
|
||||
rcmp.o: extern.h
|
||||
special.o: extern.h
|
||||
|
Loading…
x
Reference in New Issue
Block a user