mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
2000281dad
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> (Merged from https://github.com/openssl/openssl/pull/24047)
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
#
|
|
# To run the demos when linked with a shared library (default) ensure that
|
|
# libcrypto and libssl are on the library path. For example:
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./tls-client-block www.example.com 443
|
|
|
|
PROGRAMS{noinst} = tls-client-block \
|
|
quic-client-block \
|
|
quic-multi-stream \
|
|
tls-client-non-block \
|
|
quic-client-non-block
|
|
|
|
INCLUDE[tls-client-block]=../../include
|
|
SOURCE[tls-client-block]=tls-client-block.c
|
|
DEPEND[tls-client-block]=../../libcrypto ../../libssl
|
|
|
|
INCLUDE[quic-client-block]=../../include
|
|
SOURCE[quic-client-block]=quic-client-block.c
|
|
DEPEND[quic-client-block]=../../libcrypto ../../libssl
|
|
|
|
INCLUDE[quic-multi-stream]=../../include
|
|
SOURCE[quic-multi-stream]=quic-multi-stream.c
|
|
DEPEND[quic-multi-stream]=../../libcrypto ../../libssl
|
|
|
|
INCLUDE[tls-client-non-block]=../../include
|
|
SOURCE[tls-client-non-block]=tls-client-non-block.c
|
|
DEPEND[tls-client-non-block]=../../libcrypto ../../libssl
|
|
|
|
INCLUDE[quic-client-non-block]=../../include
|
|
SOURCE[quic-client-non-block]=quic-client-non-block.c
|
|
DEPEND[quic-client-non-block]=../../libcrypto ../../libssl
|