mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
1483b37e7a
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)
21 lines
294 B
Makefile
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
|