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
commit7b6dae900bb4a2cb260362bad29728050c201164 (patch)
tree24d6bdff0469a340f02865c3a5b0c75dfa298517
parent08ab9981520861947b4b98c79703d76056f3f258 (diff)
downloadtxr-7b6dae900bb4a2cb260362bad29728050c201164.tar.gz
txr-7b6dae900bb4a2cb260362bad29728050c201164.tar.bz2
txr-7b6dae900bb4a2cb260362bad29728050c201164.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