From 59bb4a5a185bd0805b6ff558926b0bc5000b10a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Sat, 13 Apr 2019 00:15:38 +0200 Subject: [PATCH] Makefile: don't delete any DLLs in the `clean` target --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 24bf1a90a..88375be91 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,7 @@ ENV_SCRIPT := "../../env.sh" TOOLS := beacon_node validator_keygen bench_bls_sig_agggregation state_sim TOOLS_DIRS := beacon_chain benchmarks research +TOOLS_CSV := $(subst $(SPACE),$(COMMA),$(TOOLS)) .PHONY: all sanity-checks deps test $(TOOLS) clean_eth2_network_simulation_files eth2_network_simulation clean-testnet0 testnet0-nocleaning testnet0 clean-testnet1 testnet1-nocleaning testnet1 clean @@ -58,5 +59,5 @@ testnet1: | build deps ../../env.sh scripts/build_testnet_node.sh testnet1 clean: - rm -rf build/* nimcache + rm -rf build/{$(TOOLS_CSV),all_tests,*_node,*.exe} nimcache