1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00
openbsd-src/regress/lib/libradius/Makefile
yasuoka 0eaf192d8f Add radius(3) library. This will be used by RADIUS server and client
programs to manipulate RADIUS packets.  Mainly written by UMEZAWA
Takeshi.

fix and suggestion deraadt
ok deraadt
2015-07-20 23:52:29 +00:00

23 lines
489 B
Makefile

# $OpenBSD: Makefile,v 1.1 2015/07/20 23:52:29 yasuoka Exp $
PROG= radius_test
REGRESS_TARGETS= run-radius_test
SRCS= main.c
SRCS+= test00.c test01.c test02.c test03.c test04.c test05.c test06.c
SRCS+= test10.c test11.c
SRCS+= test20.c test21.c test22.c test23.c test24.c test25.c
CFLAGS+= -std=gnu99 -Wall -g -O0
LDFLAGS+= -g
DPADD+= ${LIBRADIUS} ${LIBCRYPTO}
LDADD+= -lradius -lcrypto
NOMAN= #defined
run-radius_test: radius_test
./radius_test
.include <bsd.regress.mk>