mirror of
https://github.com/openssl/openssl.git
synced 2024-11-24 10:34:12 +08:00
29ce1066bc
Add demonstration for computing a SHA3-512 digest - digest/EVP_MD_demo Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/14150)
23 lines
387 B
Makefile
23 lines
387 B
Makefile
#
|
|
# To run the demos when linked with a shared library (default):
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./EVP_MD_demo
|
|
|
|
CFLAGS = -I../../include -g
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto
|
|
|
|
all: EVP_MD_demo EVP_MD_stdin BIO_f_md
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
EVP_MD_demo: EVP_MD_demo.o
|
|
EVP_MD_stdin: EVP_MD_stdin.o
|
|
BIO_f_md: BIO_f_md.o
|
|
|
|
test: ;
|
|
|
|
clean:
|
|
$(RM) *.o EVP_MD_demo EVP_MD_stdin BIO_f_md
|