summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/diff
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1993-10-07 07:23:44 +0000
committercgd <cgd@NetBSD.org>1993-10-07 07:23:44 +0000
commitd6ff5db1704e79033b846d6b162ca2d1ee8a5b46 (patch)
tree68133ea2d1ef512a0d2ea7e4bebd40ccf8f22355 /gnu/usr.bin/diff
parent4b30c543a0b21e3ba94f2c569e9a82b4fdb2075f (diff)
converted to use gnu malloc, and depend on it correctly
Diffstat (limited to 'gnu/usr.bin/diff')
-rw-r--r--gnu/usr.bin/diff/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/diff/Makefile b/gnu/usr.bin/diff/Makefile
index a204a9ce614..7dd531c92d8 100644
--- a/gnu/usr.bin/diff/Makefile
+++ b/gnu/usr.bin/diff/Makefile
@@ -1,10 +1,12 @@
-# $Id: Makefile,v 1.4 1993/09/16 17:39:00 jtc Exp $
+# $Id: Makefile,v 1.5 1993/10/07 07:23:57 cgd Exp $
PROG= diff
SRCS= diff.c analyze.c cmpbuf.o io.c context.c ed.c normal.c util.c dir.c \
regex.c side.c ifdef.c version.c getopt.c getopt1.c
CFLAGS+=-DHAVE_CONFIG_H -I${.CURDIR}
+LDADD+= -lgnumalloc
+DPADD+= /usr/lib/libgnumalloc.a
NOMAN=noman
.include <bsd.prog.mk>