1# $NetBSD: Makefile,v 1.4 2023/05/06 17:07:23 christos Exp $ 2 3LIBISPRIVATE= yes 4LIB= cryptotest 5 6WARNS?= 5 7 8.include <bsd.init.mk> 9 10CRYPTODIST= ${NETBSDSRCDIR}/crypto 11.include "${NETBSDSRCDIR}/crypto/Makefile.openssl" 12.PATH: ${OPENSSLSRC}/test/testutil ${OPENSSLSRC}/apps/lib 13CPPFLAGS+= -I${OPENSSLSRC} 14CPPFLAGS+= -I${OPENSSLSRC}/include 15CPPFLAGS+= -I${OPENSSLSRC}/apps/include 16 17SRCS+=\ 18apps_shims.c \ 19basic_output.c \ 20cb.c \ 21driver.c \ 22fake_random.c \ 23format_output.c \ 24load.c \ 25main.c \ 26options.c \ 27output.c \ 28provider.c \ 29random.c \ 30stanza.c \ 31test_cleanup.c \ 32test_options.c \ 33tests.c \ 34testutil_init.c 35 36SRCS+= \ 37opt.c 38 39.include <bsd.lib.mk> 40