mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
41d6836071
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
16 lines
279 B
Makefile
16 lines
279 B
Makefile
# 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>
|