aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1998-10-11 04:44:12 +0000
committerPeter Wemm <peter@FreeBSD.org>1998-10-11 04:44:12 +0000
commit78c6a7e037d86d0ad1a9cf945cc01056504f0109 (patch)
tree43242b10affa65333dde3ab2ef3c1067d1a3d799 /lib
parent85a6383125499c8ede5375ba304ff56a720e061f (diff)
downloadsrc-78c6a7e037d86d0ad1a9cf945cc01056504f0109.tar.gz
src-78c6a7e037d86d0ad1a9cf945cc01056504f0109.zip
libf2c.so.* depends on libm.so. I'm not sure that this matters in this
case because I expect the f2c front-end should add the -lm automatically.
Notes
Notes: svn path=/head/; revision=40201
Diffstat (limited to 'lib')
-rw-r--r--lib/libf2c/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libf2c/Makefile b/lib/libf2c/Makefile
index 77e510c6cd34..6183d5880868 100644
--- a/lib/libf2c/Makefile
+++ b/lib/libf2c/Makefile
@@ -35,4 +35,7 @@ I77SRCS = Version.c backspace.c close.c dfe.c dolio.c due.c endfile.c err.c \
SRCS= ${F77SRCS} ${I77SRCS}
+LDADD+= -lm
+DPADD+= ${LIBM}
+
.include <bsd.lib.mk>