From 12a9904710106ac912129d173e909ad99f01c4ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Fri, 29 Mar 2019 15:27:19 +0100 Subject: [PATCH] Makefile: echo "Building the Nim compiler." --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4cee437cb..1b1f5a5a8 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,8 @@ else $(MAKE) LD=$(CC) $(HANDLE_OUTPUT) EXE_SUFFIX := endif -BUILD_NIM := cd $(NIM_DIR) && \ +BUILD_NIM := echo "Building the Nim compiler." && \ + cd $(NIM_DIR) && \ rm -rf bin/nim_csources csources dist/nimble && \ ln -s ../Nim-csources csources && \ mkdir -p dist && \