mirror of
https://github.com/openssl/openssl.git
synced 2025-01-24 13:55:42 +08:00
23fe02e597
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21204)
22 lines
559 B
Makefile
22 lines
559 B
Makefile
#
|
|
# To run the demos when linked with a shared library (default) ensure that
|
|
# libcrypto and libssl are on the library path. For example to run the
|
|
# tls-client-block demo:
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./tls-client-block
|
|
|
|
CFLAGS = -I../../include -g
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto -lssl
|
|
|
|
all: tls-client-block quic-client-block
|
|
|
|
tls-client-block: tls-client-block.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS)
|
|
|
|
quic-client-block: quic-client-block.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS)
|
|
|
|
clean:
|
|
$(RM) *.o tls-client-block quic-client-block
|