1# $OpenBSD: Makefile,v 1.1 2015/07/20 23:52:29 yasuoka Exp $ 2 3PROG= radius_test 4REGRESS_TARGETS= run-radius_test 5 6SRCS= main.c 7SRCS+= test00.c test01.c test02.c test03.c test04.c test05.c test06.c 8SRCS+= test10.c test11.c 9SRCS+= test20.c test21.c test22.c test23.c test24.c test25.c 10 11CFLAGS+= -std=gnu99 -Wall -g -O0 12LDFLAGS+= -g 13 14DPADD+= ${LIBRADIUS} ${LIBCRYPTO} 15LDADD+= -lradius -lcrypto 16 17NOMAN= #defined 18 19run-radius_test: radius_test 20 ./radius_test 21 22.include <bsd.regress.mk> 23