diff options
author | Pauli <pauli@openssl.org> | 2021-07-19 13:00:38 +1000 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-07-20 10:14:42 +1000 |
commit | 9dbb4dac096729779c32751350810e610d3dfe0a (patch) | |
tree | 82a6ad34f6693f32f0678bf4fbaac0a08307f3bf | |
parent | 73a3b967e915487565fe04c0e6530d8081e6c3a5 (diff) | |
download | openssl-new-9dbb4dac096729779c32751350810e610d3dfe0a.tar.gz |
demos: add Makefile support for pbkdf2 and scrypt KDF demos
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/16109)
-rw-r--r-- | demos/kdf/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/demos/kdf/Makefile b/demos/kdf/Makefile index b561de43b7..0aa5113105 100644 --- a/demos/kdf/Makefile +++ b/demos/kdf/Makefile @@ -7,14 +7,16 @@ CFLAGS = -I../../include -g LDFLAGS = -L../.. LDLIBS = -lcrypto -all: hkdf +all: hkdf pbkdf2 scrypt %.o: %.c $(CC) $(CFLAGS) -c $< hkdf: hkdf.o +pbkdf2: pbkdf2.o +scrypt: scrypt.o test: ; clean: - $(RM) *.o hkdf + $(RM) *.o hkdf pbkdf2 scrypt |