mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +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)
15 lines
293 B
Makefile
15 lines
293 B
Makefile
MODULES=bio digest encode encrypt kdf keyexch mac pkey signature sslecho
|
|
|
|
all:
|
|
@set -e; for i in $(MODULES); do \
|
|
${MAKE} -C $$i all; \
|
|
done
|
|
clean:
|
|
@set -e; for i in $(MODULES); do \
|
|
${MAKE} -C $$i clean; \
|
|
done
|
|
test:
|
|
@set -e; for i in $(MODULES); do \
|
|
${MAKE} -C $$i test; \
|
|
done
|