diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-01 07:06:21 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-01 07:06:21 -0700 |
commit | 232773568b8ad1c53ab2428e04e17f583b5a546e (patch) | |
tree | 24d6bdff0469a340f02865c3a5b0c75dfa298517 | |
parent | f7d882d931ee95d3f9a0eba507a752a7ebcb7e2b (diff) | |
download | txr-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-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -290,6 +290,7 @@ lex.yy.c: $(top_srcdir)parser.l fi) %.shipped: $(top_srcdir)% + $(call ABBREV,COPY) $(call SH,[ $^ -nt $@ ] && cp $^ $@) else |