Description: avoid hiding Make recipes
 Quite useful in this labyrinthic build system.
Author: Nicolas Boulenguez <nicolas@debian.org>
Forwarded: not-needed

--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,8 @@
 # requires to have already build GNATCOLL once before)
 
 generate_sources:
-	-@if [ -f src/obj/gnatcoll_db2ada${EXE} ]; then \
+	-if [ -f src/obj/gnatcoll_db2ada${EXE} ]; then \
+	   echo "Regenerating files in src/generated/."; \
 	   src/obj/gnatcoll_db2ada${EXE} -dbtype=sqlite -dbname=:memory: \
 		-output src/generated \
 		-dbmodel=src/dbschema.txt \
@@ -79,13 +80,13 @@
 do_links:
 ifeq ($(GNAT_SOURCES),copy)
 ifeq ($(OS),Windows_NT)
-	-@$(foreach f,$(GNAT_SOURCES_FOR_GNATCOLL), \
+	-$(foreach f,$(GNAT_SOURCES_FOR_GNATCOLL), \
 	    $(CP) -f gnat_src/$(f) gnat >/dev/null 2>&1 ;)
 else
-	-@$(foreach f,$(GNAT_SOURCES_FOR_GNATCOLL), \
+	-$(foreach f,$(GNAT_SOURCES_FOR_GNATCOLL), \
 	   $(LN_S) -f ../gnat_src/$(f) gnat >/dev/null 2>&1 ;)
 endif
-	@(cd gnat && gnatmake -q xsnamest && ./xsnamest && mv snames.ns snames.ads && mv snames.nb snames.adb)
+	(cd gnat && gnatmake -q xsnamest && ./xsnamest && mv snames.ns snames.ads && mv snames.nb snames.adb)
 endif
 
 ## Only works after installation, so we should install to a local directory
@@ -97,13 +98,13 @@
 test_names=
 
 local_install: force
-	@${MAKE} prefix=${shell pwd}/local_install install >/dev/null
+	${MAKE} prefix=${shell pwd}/local_install install >/dev/null
 
 test: sqlite3_shell local_install
-	@${MAKE} test_names="${test_names}" -C testsuite
+	${MAKE} test_names="${test_names}" -C testsuite
 
 test_verbose: local_install
-	@${MAKE} test_names="${test_names}" -C testsuite verbose
+	${MAKE} test_names="${test_names}" -C testsuite verbose
 
 # Installs both static and shared libraries (if they were build)
 # GNU standards say we must not recompile, for this target
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -7,7 +7,7 @@
 export LD_LIBRARY_PATH
 
 all:
-	@${MKDIR} obj
+	${MKDIR} obj
 	gnatmake -Pexamples
 ifeq ($(WITH_GTK),yes)
 	gprbuild -Pexamplesgtk -p
--- a/testsuite/Makefile
+++ b/testsuite/Makefile
@@ -9,9 +9,9 @@
 test_names=
 
 test:
-	@python ./run.py ${test_names}
+	python ./run.py ${test_names}
 
 verbose:
-	@python ./run.py -v -v ${test_names}
+	python ./run.py -v -v ${test_names}
 
 clean:
