summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/diff3
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/diff3
parent4b30c543a0b21e3ba94f2c569e9a82b4fdb2075f (diff)
converted to use gnu malloc, and depend on it correctly
Diffstat (limited to 'gnu/usr.bin/diff3')
-rw-r--r--gnu/usr.bin/diff3/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/diff3/Makefile b/gnu/usr.bin/diff3/Makefile
index 8a43ec3ec74..0e49d66dfb0 100644
--- a/gnu/usr.bin/diff3/Makefile
+++ b/gnu/usr.bin/diff3/Makefile
@@ -1,9 +1,11 @@
-# $Id: Makefile,v 1.4 1993/09/16 17:39:59 jtc Exp $
+# $Id: Makefile,v 1.5 1993/10/07 07:24:01 cgd Exp $
PROG= diff3
SRCS= diff3.c getopt.c getopt1.c version.c
CFLAGS+= -I$(.CURDIR)/../diff \
-DHAVE_CONFIG_H -DDIFF_PROGRAM=\"/usr/bin/diff\"
+LDADD+= -lgnumalloc
+DPADD+= /usr/lib/libgnumalloc.a
NOMAN= noman
.include <bsd.prog.mk>