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 | 7b6dae900bb4a2cb260362bad29728050c201164 (patch) | |
tree | 24d6bdff0469a340f02865c3a5b0c75dfa298517 /Makefile | |
parent | 08ab9981520861947b4b98c79703d76056f3f258 (diff) | |
download | txr-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?)
Diffstat (limited to 'Makefile')
-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 |