summaryrefslogtreecommitdiffstats
path: root/demos/signature
diff options
context:
space:
mode:
authorslontis <shane.lontis@oracle.com>2023-03-20 15:08:38 +1000
committerMatt Caswell <matt@openssl.org>2023-10-25 09:21:07 +0100
commit66f4782f1452d6fbfab78822b340a99aaeacc2f0 (patch)
tree063d3ad8628b8b10260b4316531f78de9d83b0c1 /demos/signature
parentdbbdb940d421daca4a65e765b5244bde6aed3f61 (diff)
Create hierarchical demo Makefile.
Adds a Makefile with all, clean, and test targets. This has only been added for demos that already contain Makefiles. For problematic tests that require inputs, the test target does nothing. (Note: Demos should be self contained and not require unknown external inputs. This PR does not attempt to fix this.) Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20546)
Diffstat (limited to 'demos/signature')
-rw-r--r--demos/signature/Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/demos/signature/Makefile b/demos/signature/Makefile
index 2a7c196007..50f1c3452d 100644
--- a/demos/signature/Makefile
+++ b/demos/signature/Makefile
@@ -11,7 +11,9 @@ CFLAGS = -I../../include -g -Wall
LDFLAGS = -L../..
LDLIBS = -lcrypto
-all: EVP_EC_Signature_demo EVP_DSA_Signature_demo EVP_ED_Signature_demo rsa_pss_direct rsa_pss_hash
+TESTS=EVP_EC_Signature_demo EVP_DSA_Signature_demo EVP_ED_Signature_demo rsa_pss_direct rsa_pss_hash
+
+all: $(TESTS)
%.o: %.c
$(CC) $(CFLAGS) -c $<
@@ -22,7 +24,13 @@ EVP_ED_Signature_demo: EVP_ED_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 EVP_ED_Signature_demo rsa_pss_direct rsa_pss_hash
+ $(RM) *.o $(TESTS)
+
+.PHONY: test
+test: all
+ @echo "\nSignature tests:"
+ @set -e; for tst in $(TESTS); do \
+ echo "\n"$$tst; \
+ LD_LIBRARY_PATH=../.. ./$$tst; \
+ done