diff --git a/Makefile b/Makefile index d281decb14..2ca7cedc73 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,9 @@ no_test: programs programs: lib mbedtls_test $(MAKE) -C programs +ssl-opt: lib mbedtls_test + $(MAKE) -C programs ssl-opt + lib: $(MAKE) -C library diff --git a/programs/Makefile b/programs/Makefile index aecc7d8eb1..13fb793102 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -116,6 +116,12 @@ ifndef WINDOWS all: fuzz endif +SSL_OPT_APPS = $(filter ssl/%,$(APPS)) +SSL_OPT_APPS += test/query_compile_time_config test/udp_proxy +# Just the programs needed to run ssl-opt.sh (and compat.sh) +ssl-opt: $(patsubst %,%$(EXEXT),$(SSL_OPT_APPS)) +.PHONY: ssl-opt + fuzz: ${MBEDTLS_TEST_OBJS} $(MAKE) -C fuzz