Description: make build more verbose
 This patch makes the build system commands explicit, to allow their inspection
 by Debian tools, such as blhc.
Forwarded: not-needed
Author: David da Silva Polverari <david.polverari@gmail.com>
Last-Update: 2025-09-12

--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@
 all: modules snowdrop toinstall
 
 modules: language.h
-	@echo ; \
+	echo ; \
 	echo "[*] Compiling language modules:" ; \
 	test -d /usr/include/openssl && USEOPENSSL=1; \
 	test -d /usr/local/include/openssl && USEOPENSSL=1; \
@@ -50,7 +50,7 @@
 	echo "[*] Language modules compiled."
 
 snowdrop: snowdrop.c language.h 
-	@echo "[*] Compiling main code:"; \
+	echo "[*] Compiling main code:"; \
 	test -d /usr/include/openssl && USEOPENSSL=1; \
 	test -d /usr/local/include/openssl && USEOPENSSL=1; \
 	for i in $(LANG); do \
