From: Pauli Date: Tue, 14 Mar 2023 00:33:51 +0000 (+1100) Subject: demo: Fix makefile target X-Git-Tag: openssl-3.2.0-alpha1~1162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67bfdfa17bc4ca8e2b819316299bb82748394c45;p=thirdparty%2Fopenssl.git demo: Fix makefile target The makefile target was incorrect and wouldn't build the rsa_encrypt demo. Reviewed-by: Tomas Mraz Reviewed-by: Shane Lontis Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/20503) --- diff --git a/demos/encrypt/Makefile b/demos/encrypt/Makefile index 1735640b3f2..d07dc0caedc 100644 --- a/demos/encrypt/Makefile +++ b/demos/encrypt/Makefile @@ -12,7 +12,7 @@ all: rsa_encrypt %.o: %.c $(CC) $(CFLAGS) -c $< -rsa_encrypt_ec: rsa_encrypt.o +rsa_encrypt: rsa_encrypt.o test: ;