chiark / gitweb /
Makefile: Sink the silent-rules machinery.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 6 Jun 2018 21:06:03 +0000 (22:06 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 6 Jun 2018 23:54:36 +0000 (00:54 +0100)
This is not really user-serviceable.

Makefile

index f8dadc5ff32dfdc98be839a4005aa88d79286f95..9733bc1c4a1abe344ebb8170ffd0b82aab8a7b67 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -43,16 +43,6 @@ man1dir                       = ${mandir}/man1
 ## Private installation tree for packagers.
 DESTDIR                         =
 
-###--------------------------------------------------------------------------
-### Quiet building.
-
-## Verbosity.
-V                      ?= 0
-v_tag                   = $(call v_tag_$V,$1)
-v_tag_0                         = @printf "  %-8s %s\n" "$1" "$@";
-V_AT                    = $(V_AT_$V)
-V_AT_0                  = @
-
 ###--------------------------------------------------------------------------
 ### Build parameters.
 
@@ -73,6 +63,16 @@ MKDIRS                        = $(INSTALL) -d -m755
 REAL_CFLAGS             = $(CFLAGS) -fPIC -MD
 REAL_LDFLAGS            = $(LDFLAGS) -shared
 
+###--------------------------------------------------------------------------
+### Quiet building.
+
+## Verbosity.
+V                       = 0
+v_tag                   = $(call v_tag_$V,$1)
+v_tag_0                         = @printf "  %-8s %s\n" "$1" "$@";
+V_AT                    = $(V_AT_$V)
+V_AT_0                  = @
+
 ###--------------------------------------------------------------------------
 ### Main targets.