mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 21:20:31 -04:00
included but were not being compiled into the library. This resulted in missing symbols when code was linked against libranlib. We now compile in the provided linpack routines. Approved by: tg
15 lines
279 B
Text
15 lines
279 B
Text
# bmake'd makefile for ranlib sources
|
|
|
|
LIBDIR = $(PREFIX)/lib
|
|
|
|
SHLIB_MAJOR= 1
|
|
SHLIB_MINOR= 0
|
|
LIB= ranlib
|
|
|
|
SRCS = ../linpack/linpack.c com.c ranlib.c
|
|
|
|
beforeinstall:
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/ranlib.h \
|
|
${PREFIX}/include
|
|
|
|
.include <bsd.lib.mk>
|