diff options
author | peter <peter@FreeBSD.org> | 1998-10-11 04:44:12 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-10-11 04:44:12 +0000 |
commit | 586c52184a5ad859f033496b8f89c956b0d691ee (patch) | |
tree | 8f4affa7f2aeff30b5d86d0e6a6915fd16cda85c | |
parent | e2321011022f2b4932cffb412fe7059f341985ad (diff) | |
download | FreeBSD-src-586c52184a5ad859f033496b8f89c956b0d691ee.zip FreeBSD-src-586c52184a5ad859f033496b8f89c956b0d691ee.tar.gz |
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.
-rw-r--r-- | lib/libf2c/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libf2c/Makefile b/lib/libf2c/Makefile index 77e510c..6183d58 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> |