mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
86db958835
Update makefiles so that consistent patterns are used. Object files are compiled from source using an implicit rule (but using our CFLAGS); for linking, we give an explicit rule. Ensure that "make test" works in each subdirectory (even if it does not actually run any applications). The top-level demo makefile now works. The makefiles are not make-agnostic. e.g. they use the variable $(RM) in "clean" recipes, which is defined in gnu-make but may not be defined in others. Part of #17806 Testing: $ cd demo $ make test Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22698)
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
#
|
|
# To run the demos when linked with a shared library (default) ensure that
|
|
# libcrypto is on the library path. For example:
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./EVP_PKEY_EC_keygen
|
|
|
|
TESTS = EVP_PKEY_EC_keygen \
|
|
EVP_PKEY_RSA_keygen \
|
|
EVP_PKEY_DSA_keygen \
|
|
EVP_PKEY_DSA_paramgen \
|
|
EVP_PKEY_DSA_paramvalidate \
|
|
EVP_PKEY_DSA_paramfromdata
|
|
|
|
CFLAGS = -I../../include -g -Wall
|
|
LDFLAGS = -L../..
|
|
LDLIBS = -lcrypto
|
|
|
|
all: $(TESTS)
|
|
|
|
EVP_PKEY_DSA_keygen.o: EVP_PKEY_DSA_keygen.c dsa.inc
|
|
EVP_PKEY_DSA_paramgen.o: EVP_PKEY_DSA_paramgen.c dsa.inc
|
|
EVP_PKEY_DSA_paramvalidate.o: EVP_PKEY_DSA_paramvalidate.c dsa.inc
|
|
EVP_PKEY_DSA_paramfromdata.o: EVP_PKEY_DSA_paramfromdata.c dsa.inc
|
|
|
|
EVP_PKEY_EC_keygen: EVP_PKEY_EC_keygen.o
|
|
EVP_PKEY_RSA_keygen: EVP_PKEY_RSA_keygen.o
|
|
EVP_PKEY_DSA_keygen: EVP_PKEY_DSA_keygen.o
|
|
EVP_PKEY_DSA_paramgen: EVP_PKEY_DSA_paramgen.o
|
|
EVP_PKEY_DSA_paramvalidate: EVP_PKEY_DSA_paramvalidate.o
|
|
EVP_PKEY_DSA_paramfromdata: EVP_PKEY_DSA_paramfromdata.o
|
|
|
|
$(TESTS):
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS)
|
|
|
|
clean:
|
|
$(RM) *.o $(TESTS)
|
|
|
|
.PHONY: test
|
|
test: all
|
|
@echo "\nPKEY tests:"
|
|
@set -e; for tst in $(TESTS); do \
|
|
echo "\n"$$tst; \
|
|
LD_LIBRARY_PATH=../.. ./$$tst; \
|
|
done
|