File: verbose.patch

package info (click to toggle)
fastforward 1%3A0.51-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,060 kB
  • sloc: ansic: 8,033; makefile: 483; sh: 160
file content (32 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (2)
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
Author: Andreas Beckmann <anbe@debian.org>
Description: make the build process verbose

--- a/make-compile.sh
+++ b/make-compile.sh
@@ -1 +1,2 @@
+echo echo "$CC" -c '${1+"$@"}'
 echo exec "$CC" -c '${1+"$@"}'
--- a/make-load.sh
+++ b/make-load.sh
@@ -1,2 +1,3 @@
 echo 'main="$1"; shift'
+echo echo "$LD" '-o "$main" "$main".o ${1+"$@"}'
 echo exec "$LD" '-o "$main" "$main".o ${1+"$@"}'
--- a/make-makelib.sh
+++ b/make-makelib.sh
@@ -1,5 +1,6 @@
 echo 'main="$1"; shift'
-echo 'rm -f "$main"'
+echo 'rm -fv "$main"'
+echo echo 'ar cr "$main" ${1+"$@"}'
 echo 'ar cr "$main" ${1+"$@"}'
 
 case "$1" in
@@ -11,6 +12,7 @@ dgux-*) ;;
 hp-ux-*) ;;
 sco*) ;;
 *)
+  echo echo 'ranlib "$main"'
   echo 'ranlib "$main"'
   ;;
 esac