1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
Description: echo executed Make recipes
This may be useful for automatic log checkers, and human readers
since the interactions between makefile* are quite complex.
Author: Nicolas Boulenguez <nicolas@debian.org>
Forwarded: not-needed
--- a/config/Makefile
+++ b/config/Makefile
@@ -16,8 +16,6 @@
# to http://www.gnu.org/licenses for a complete copy of the license. #
############################################################################
-.SILENT:
-
LIBGPR = ../$(BDIR)/../../projects/aws_lib_shared.gpr
LPATH = $(dir $(shell $(GCC) -print-file-name=libssl.a))
ZPATH = $(dir $(shell $(GCC) -print-file-name=libz.a))
--- a/gps/Makefile
+++ b/gps/Makefile
@@ -16,8 +16,6 @@
# to http://www.gnu.org/licenses for a complete copy of the license. #
############################################################################
-.SILENT:
-
ALL_API = $(sort $(shell ls ../src/core/*.ads ../src/extended/*.ads \
../src/soap/*.ads ../src/xsrc/*.ads \
../templates_parser/src/*.ads ../templates_parser/xsrc/*.ads))
--- a/include/Makefile
+++ b/include/Makefile
@@ -16,8 +16,6 @@
# to http://www.gnu.org/licenses for a complete copy of the license. #
############################################################################
-.SILENT:
-
setup:
install:
--- a/Makefile
+++ b/Makefile
@@ -16,8 +16,6 @@
# to http://www.gnu.org/licenses for a complete copy of the license. #
############################################################################
-.SILENT:
-
BROOTDIR=.build
# NOTE: You should not have to change this makefile. Configuration options
@@ -45,7 +43,7 @@
MAKE_OPT =
BDIR = $(BROOTDIR)/$(TARGET)/debug
else
-MAKE_OPT = -s
+MAKE_OPT =
BDIR = $(BROOTDIR)/$(TARGET)/release
endif
--- a/regtests/Makefile
+++ b/regtests/Makefile
@@ -16,8 +16,6 @@
# to http://www.gnu.org/licenses for a complete copy of the license. #
############################################################################
-.SILENT:
-
build:
testsuite.tags: ../makefile.setup gen_system_tags.py
--- a/src/Makefile
+++ b/src/Makefile
@@ -16,8 +16,6 @@
# to http://www.gnu.org/licenses for a complete copy of the license. #
############################################################################
-.SILENT:
-
setup:
install:
--- a/ssl/Makefile
+++ b/ssl/Makefile
@@ -16,8 +16,6 @@
# to http://www.gnu.org/licenses for a complete copy of the license. #
############################################################################
-.SILENT:
-
check:
$(GNAT) check -Pssl -rules -from=../aws.checks
|