blob: 6de521d63cb08b4396db25acceadcb752d2d28c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: Makefile,v 1.11 2009/07/20 12:16:37 skrll Exp $
USE_FORT?= yes # network protocol library
USE_SHLIBDIR= yes
.include <bsd.own.mk>
WARNS=3
LINTFLAGS+= -Sw
LIB= radius
CPPFLAGS+= -I.
.if (${MKCRYPTO} != "no")
CPPFLAGS+= -DWITH_SSL
LIBDPLIBS+=crypto ${.CURDIR}/../../crypto/external/bsd/openssl/lib/libcrypto
.endif
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>
|