diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-05-14 18:40:16 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-05-14 18:40:16 +0200 |
commit | df2f941cd153443a46121111e3f3e685f9125c49 (patch) | |
tree | 330cc9d7f7d0180a51c43bb053450947747bc424 /plugingui | |
parent | 0326e2216385925499da9ee64d7866281f79b3b0 (diff) |
Beautify silent build output and make silent build the default - ie. set V=1 to get full output again.
Diffstat (limited to 'plugingui')
-rw-r--r-- | plugingui/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugingui/Makefile.am b/plugingui/Makefile.am index 219b450..f208f43 100644 --- a/plugingui/Makefile.am +++ b/plugingui/Makefile.am @@ -33,8 +33,12 @@ RES = \ ../BUGS \ ../COPYING +rcgen_verbose = $(rcgen_verbose_@AM_V@) +rcgen_verbose_ = $(rcgen_verbose_@AM_DEFAULT_V@) +rcgen_verbose_0 = @echo " RCGEN "$@; + resource_data.cc: rcgen $(RES) - ./rcgen -d $(top_srcdir)/plugingui $(RES) > $(top_srcdir)/plugingui/resource_data.cc + $(rcgen_verbose)./rcgen -d $(top_srcdir)/plugingui $(RES) > $(top_srcdir)/plugingui/resource_data.cc libdggui_la_CPPFLAGS = \ $(DEBUG_FLAGS) \ |