X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=demos%2Fpkey%2FMakefile;fp=demos%2Fpkey%2FMakefile;h=35cdca229a89c532932737251a5d9729fb44659c;hp=0000000000000000000000000000000000000000;hb=8cf78d634ba389573d8006c36bce2f0bc36e43f0;hpb=dcc780cf8d03309e62e5c135f250bd4fd0b7fe41 diff --git a/demos/pkey/Makefile b/demos/pkey/Makefile new file mode 100644 index 0000000000..35cdca229a --- /dev/null +++ b/demos/pkey/Makefile @@ -0,0 +1,20 @@ +# +# 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