mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
858b5d12b8
Fixes openssl#14114 Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19492)
24 lines
559 B
Makefile
24 lines
559 B
Makefile
#
|
|
# To run the demos when linked with a shared library (default):
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./EVP_Signature_demo
|
|
|
|
CFLAGS = -I../../include -g -Wall
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto
|
|
|
|
all: EVP_EC_Signature_demo EVP_DSA_Signature_demo rsa_pss_direct rsa_pss_hash
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
EVP_EC_Signature_demo: EVP_EC_Signature_demo.o
|
|
EVP_DSA_Signature_demo: EVP_DSA_Signature_demo.o
|
|
rsa_pss_direct: rsa_pss_direct.o
|
|
rsa_pss_hash: rsa_pss_hash.o
|
|
|
|
test: ;
|
|
|
|
clean:
|
|
$(RM) *.o EVP_EC_Signature_demo EVP_DSA_Signature_demo rsa_pss_direct rsa_pss_hash
|