1 # $NetBSD: apps_lib.inc,v 1.1 2023/05/07 16:22:10 christos Exp $ 2 3 .PATH: ${OPENSSLSRC}/apps/lib 4 5 APPS_LIB_SRCS += \ 6 app_libctx.c \ 7 app_params.c \ 8 app_provider.c \ 9 app_rand.c \ 10 app_x509.c \ 11 apps.c \ 12 apps_ui.c \ 13 columns.c \ 14 cmp_mock_srv.c \ 15 engine.c \ 16 engine_loader.c \ 17 fmt.c \ 18 http_server.c \ 19 names.c \ 20 opt.c \ 21 s_cb.c \ 22 s_socket.c \ 23 tlssrp_depr.c \ 24 25 SRCS += ${APPS_LIB_SRCS} 26 27 .for commonsrc in ${APPS_LIB_SRCS} 28 CPPFLAGS.${commonsrc} += -I${OPENSSLSRC}/apps/lib ${APPS_LIBCPPFLAGS} 29 .endfor 30