summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-01 07:06:21 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-01 07:06:21 -0700
commit232773568b8ad1c53ab2428e04e17f583b5a546e (patch)
tree24d6bdff0469a340f02865c3a5b0c75dfa298517
parentf7d882d931ee95d3f9a0eba507a752a7ebcb7e2b (diff)
downloadtxr-232773568b8ad1c53ab2428e04e17f583b5a546e.tar.gz
txr-232773568b8ad1c53ab2428e04e17f583b5a546e.tar.bz2
txr-232773568b8ad1c53ab2428e04e17f583b5a546e.zip
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?)
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
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