26 lines
475 B
Makefile
26 lines
475 B
Makefile
# $NetBSD: Makefile,v 1.12 2017/05/21 15:28:41 riastradh Exp $
|
|
|
|
USE_FORT?= yes # network protocol library
|
|
|
|
USE_SHLIBDIR= yes
|
|
.include <bsd.own.mk>
|
|
|
|
WARNS=3
|
|
LINTFLAGS+= -Sw
|
|
|
|
LIB= radius
|
|
CPPFLAGS+= -I.
|
|
|
|
CPPFLAGS+= -DWITH_SSL
|
|
LIBDPLIBS+=crypto ${.CURDIR}/../../crypto/external/bsd/openssl/lib/libcrypto
|
|
|
|
SRCS= radlib.c
|
|
INCS= radlib.h radlib_vs.h
|
|
INCSDIR=/usr/include
|
|
|
|
MAN= libradius.3 radius.conf.5
|
|
|
|
CLEANFILES+= libradius.cat3 radius.conf.cat5 radlib.d
|
|
|
|
.include <bsd.lib.mk>
|