From 2e9004a1c97487f00718c3ed9d700c72227c1b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Tue, 23 Jul 2019 17:28:04 +0200 Subject: [PATCH] Makefile: add "p2pd" as a dep for "$(TOOLS)" This also covers "eth2_network_simulation" since it depends on a couple of those tools. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d82ef5a0f..22768a3eb 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ p2pd: | deps test: | build deps nat-libs bash ../../nimble.sh test $(NIM_PARAMS) -$(TOOLS): | build deps nat-libs +$(TOOLS): | build deps nat-libs p2pd for D in $(TOOLS_DIRS); do [ -e "$${D}/$@.nim" ] && TOOL_DIR="$${D}" && break; done && \ echo -e $(BUILD_MSG) "build/$@" && \ $(ENV_SCRIPT) nim c $(NIM_PARAMS) -o:build/$@ "$${TOOL_DIR}/$@.nim"