From 55dc07fbcf97db4b8266f52d11c237187a95ab95 Mon Sep 17 00:00:00 2001 From: gdr-ftp Date: Thu, 19 Feb 1998 02:12:18 +0000 Subject: [PATCH] Makefile: - use single colon on extra dependancies --- bin/df/Makefile | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/bin/df/Makefile b/bin/df/Makefile index d2b7326..8db0c5a 100644 --- a/bin/df/Makefile +++ b/bin/df/Makefile @@ -4,29 +4,22 @@ # Created by Dave Tribby, August 1997 # Modified by Evan Day, September 1997 # -# $Id: Makefile,v 1.1 1997/10/03 05:42:18 gdr Exp $ +# $Id: Makefile,v 1.2 1998/02/19 02:12:18 gdr-ftp Exp $ -# Program name PROG= df -# Source files SRCS= df.c gnodf.c # If optimization wasn't set on the command line use 79, since # df 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 # -tr.o:: df.h -str.o:: df.h +df.o: df.h +gnodf.o: df.h