mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
e4b2e8c27f
A library of C routines for cumulative distribution functions. PR: 7865 Submitted by: Anton Berezin <tobez@plab.ku.dk>
17 lines
277 B
Makefile
17 lines
277 B
Makefile
# makefile for dcdflib sources
|
|
|
|
LIBDIR = ${PREFIX}/lib
|
|
|
|
SHLIB_MAJOR= 1
|
|
SHLIB_MINOR= 1
|
|
LIB= dcdflib
|
|
|
|
SRCS= dcdflib.c ipmpar.c
|
|
CFLAGS?= -O2
|
|
|
|
beforeinstall:
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/../doc/dcdflib.h \
|
|
${PREFIX}/include
|
|
|
|
.include <bsd.lib.mk>
|