]> git.ipfire.org Git - thirdparty/openssl.git/blob - demos/pkey/Makefile
EVP demo for XOF digest using SHAKE256
[thirdparty/openssl.git] / demos / pkey / Makefile
1 #
2 # To run the demos when linked with a shared library (default):
3 #
4 # LD_LIBRARY_PATH=../.. ./EVP_PKEY_EC_keygen
5
6 CFLAGS = -I../../include -g
7 LDFLAGS = -L../..
8 LDLIBS = -lcrypto
9
10 all: EVP_PKEY_EC_keygen
11
12 %.o: %.c
13 $(CC) $(CFLAGS) -c $<
14
15 EVP_PKEY_EC_keygen: EVP_PKEY_EC_keygen.o
16
17 test: ;
18
19 clean:
20 $(RM) *.o EVP_PKEY_EC_keygen