1# $OpenBSD: Makefile,v 1.3 2014/07/16 20:04:21 okan Exp $ 2 3TEST_ENV= "MALLOC_OPTIONS=AFGJPRX" 4 5PROG=test_sshbuf 6SRCS=tests.c 7SRCS+=test_sshbuf.c 8SRCS+=test_sshbuf_getput_basic.c 9SRCS+=test_sshbuf_getput_crypto.c 10SRCS+=test_sshbuf_misc.c 11SRCS+=test_sshbuf_fuzz.c 12SRCS+=test_sshbuf_getput_fuzz.c 13SRCS+=test_sshbuf_fixed.c 14 15run-regress-${PROG}: ${PROG} 16 env ${TEST_ENV} ./${PROG} 17 18.include <bsd.regress.mk> 19