mirror of
https://github.com/openssl/openssl.git
synced 2025-01-12 13:36:28 +08:00
8cf78d634b
Fixes #14112 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15423)
21 lines
328 B
Makefile
21 lines
328 B
Makefile
#
|
|
# To run the demos when linked with a shared library (default):
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./EVP_PKEY_EC_keygen
|
|
|
|
CFLAGS = -I../../include -g
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto
|
|
|
|
all: EVP_PKEY_EC_keygen
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
EVP_PKEY_EC_keygen: EVP_PKEY_EC_keygen.o
|
|
|
|
test: ;
|
|
|
|
clean:
|
|
$(RM) *.o EVP_PKEY_EC_keygen
|