* maintMakefile: Clean up output

This commit is contained in:
Paul Smith 2020-05-03 13:23:41 -04:00
parent c604e53a45
commit a015d1f822

View file

@ -210,20 +210,20 @@ target = $(patsubst get-%,%,$@)
config-url = $(git-url)/config.git/plain/$(patsubst get-build-aux/%,%,$@) config-url = $(git-url)/config.git/plain/$(patsubst get-build-aux/%,%,$@)
get-build-aux/config.guess get-build-aux/config.sub: get-build-aux/config.guess get-build-aux/config.sub:
@echo $(WGET) $(config-url) -O $(target) \ @echo Retrieving $(target) from $(config-url)
&& $(WGET) $(config-url) -O $(target).t \ $(WGET) $(config-url) -O $(target).t \
&& $(move_if_change) && $(move_if_change)
gnulib-url = $(git-url)/gnulib.git/plain/build-aux/$(patsubst get-build-aux/%,%,$@) gnulib-url = $(git-url)/gnulib.git/plain/build-aux/$(patsubst get-build-aux/%,%,$@)
get-build-aux/texinfo.tex: get-build-aux/texinfo.tex:
@echo $(WGET) $(gnulib-url) -O $(target) \ @echo Retrieving $(target) from $(gnulib-url)
&& $(WGET) $(gnulib-url) -O $(target).t \ $(WGET) $(gnulib-url) -O $(target).t \
&& $(move_if_change) && $(move_if_change)
gnustandards-url = $(cvs-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@) gnustandards-url = $(cvs-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@)
get-doc/make-stds.texi get-doc/fdl.texi: get-doc/make-stds.texi get-doc/fdl.texi:
@echo $(WGET) $(gnustandards-url) -O $(target) \ @echo Retrieving $(target) from $(gnustandards-url)
&& $(WGET) $(gnustandards-url) -O $(target).t \ $(WGET) $(gnustandards-url) -O $(target).t \
&& $(move_if_change) && $(move_if_change)