From: Mark Wooding Date: Wed, 6 Jun 2018 21:06:03 +0000 (+0100) Subject: Makefile: Sink the silent-rules machinery. X-Git-Tag: 1.2.0~10 X-Git-Url: https://git.distorted.org.uk/~mdw/preload-hacks/commitdiff_plain/9555bb4bd08ebfc33c69d58732537b5c6760c928 Makefile: Sink the silent-rules machinery. This is not really user-serviceable. --- diff --git a/Makefile b/Makefile index f8dadc5..9733bc1 100644 --- a/Makefile +++ b/Makefile @@ -44,16 +44,6 @@ man1dir = ${mandir}/man1 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. ## Mess with these if you like. @@ -74,6 +64,16 @@ 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. ## noip