mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
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)
This commit is contained in:
parent
73a3b967e9
commit
9dbb4dac09
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user