openssl/demos/encode/Makefile
Hugo Landau 1483b37e7a Add EVP RSA key encode/decode demo
Fixes #14116.

Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17826)
2022-03-21 14:06:09 +11:00

21 lines
294 B
Makefile

#
# To run the demos when linked with a shared library (default):
#
# LD_LIBRARY_PATH=../.. ./rsa_encode
CFLAGS = -I../../include -g -Wall
LDFLAGS = -L../..
LDLIBS = -lcrypto
all: rsa_encode
%.o: %.c
$(CC) $(CFLAGS) -c $<
rsa_encode: rsa_encode.o
test: ;
clean:
$(RM) *.o rsa_encode