From 9555bb4bd08ebfc33c69d58732537b5c6760c928 Mon Sep 17 00:00:00 2001 Message-Id: <9555bb4bd08ebfc33c69d58732537b5c6760c928.1746785382.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 6 Jun 2018 22:06:03 +0100 Subject: [PATCH] Makefile: Sink the silent-rules machinery. Organization: Straylight/Edgeware From: Mark Wooding This is not really user-serviceable. --- Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index f8dadc5..9733bc1 100644 --- 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. -- [mdw]