mirror of
https://github.com/openssl/openssl.git
synced 2025-01-24 13:55:42 +08:00
66f4782f14
Adds a Makefile with all, clean, and test targets. This has only been added for demos that already contain Makefiles. For problematic tests that require inputs, the test target does nothing. (Note: Demos should be self contained and not require unknown external inputs. This PR does not attempt to fix this.) Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20546)
32 lines
484 B
Makefile
32 lines
484 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
|
|
|
|
TESTS=hkdf pbkdf2 scrypt argon2
|
|
|
|
all: $(TESTS)
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
hkdf: hkdf.o
|
|
pbkdf2: pbkdf2.o
|
|
scrypt: scrypt.o
|
|
argon2: argon2.o
|
|
|
|
clean:
|
|
$(RM) *.o $(TESTS)
|
|
|
|
.PHONY: test
|
|
test: all
|
|
@echo "\nKDF tests:"
|
|
@set -e; for tst in $(TESTS); do \
|
|
echo "\n"$$tst; \
|
|
LD_LIBRARY_PATH=../.. ./$$tst; \
|
|
done
|