From 232773568b8ad1c53ab2428e04e17f583b5a546e Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 1 Jun 2021 07:06:21 -0700 Subject: build: produce output when copying .shipped files. * Makefile (%.shipped): Call the ABBREV macro to produce output when "make *.shipped" is invoked, otherwise unless VERBOSE=1 is used, it works silently. This is only in maintainer mode. The rule in regular mode has the ABBREV call. (But should we have that rule at all outside of maintainer mode?) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f23f25c0..bca943a8 100644 --- a/Makefile +++ b/Makefile @@ -290,6 +290,7 @@ lex.yy.c: $(top_srcdir)parser.l fi) %.shipped: $(top_srcdir)% + $(call ABBREV,COPY) $(call SH,[ $^ -nt $@ ] && cp $^ $@) else -- cgit v1.2.3