mirror of
https://github.com/openssl/openssl.git
synced 2025-01-06 13:26:43 +08:00
35530b117f
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16283)
21 lines
296 B
Makefile
21 lines
296 B
Makefile
#
|
|
# To run the demos when linked with a shared library (default):
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./rsa_encrypt
|
|
|
|
CFLAGS = -I../../include -g
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto
|
|
|
|
all: rsa_encrypt
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
rsa_encrypt_ec: rsa_encrypt.o
|
|
|
|
test: ;
|
|
|
|
clean:
|
|
$(RM) *.o rsa_encrypt
|