mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
9dbb4dac09
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/16109)
23 lines
320 B
Makefile
23 lines
320 B
Makefile
#
|
|
# To run the demos when linked with a shared library (default):
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./hkdf
|
|
|
|
CFLAGS = -I../../include -g
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto
|
|
|
|
all: hkdf pbkdf2 scrypt
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
hkdf: hkdf.o
|
|
pbkdf2: pbkdf2.o
|
|
scrypt: scrypt.o
|
|
|
|
test: ;
|
|
|
|
clean:
|
|
$(RM) *.o hkdf pbkdf2 scrypt
|