1*8e28d849SEd Maste# $OpenBSD: Makefile,v 1.9 2023/01/06 02:59:50 djm Exp $ 2*8e28d849SEd Maste 3*8e28d849SEd MastePROG=test_misc 4*8e28d849SEd MasteSRCS=tests.c 5*8e28d849SEd MasteSRCS+= test_convtime.c 6*8e28d849SEd MasteSRCS+= test_expand.c 7*8e28d849SEd MasteSRCS+= test_parse.c 8*8e28d849SEd MasteSRCS+= test_argv.c 9*8e28d849SEd MasteSRCS+= test_strdelim.c 10*8e28d849SEd MasteSRCS+= test_hpdelim.c 11*8e28d849SEd MasteSRCS+= test_ptimeout.c 12*8e28d849SEd Maste 13*8e28d849SEd Maste# From usr.bin/ssh/Makefile.inc 14*8e28d849SEd MasteSRCS+= sshbuf.c 15*8e28d849SEd MasteSRCS+= sshbuf-getput-basic.c 16*8e28d849SEd MasteSRCS+= sshbuf-misc.c 17*8e28d849SEd MasteSRCS+= ssherr.c 18*8e28d849SEd MasteSRCS+= log.c 19*8e28d849SEd MasteSRCS+= xmalloc.c 20*8e28d849SEd MasteSRCS+= misc.c 21*8e28d849SEd MasteSRCS+= match.c 22*8e28d849SEd MasteSRCS+= addr.c 23*8e28d849SEd MasteSRCS+= addrmatch.c 24*8e28d849SEd Maste 25*8e28d849SEd Maste# From usr.bin/ssh/sshd/Makefile 26*8e28d849SEd MasteSRCS+= atomicio.c cleanup.c fatal.c 27*8e28d849SEd Maste 28*8e28d849SEd MasteREGRESS_TARGETS=run-regress-${PROG} 29*8e28d849SEd Maste 30*8e28d849SEd Masterun-regress-${PROG}: ${PROG} 31*8e28d849SEd Maste env ${TEST_ENV} ./${PROG} 32*8e28d849SEd Maste 33*8e28d849SEd Maste.include <bsd.regress.mk> 34