From 1ec719cde32acebfaf198acb284ee31e0b399f14 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 23 Feb 2023 13:33:45 -0500 Subject: build: Use silent rules by default The xcftools custom makefile is still noisy as hell, though. --- diff --git a/3rdparty/local.mk b/3rdparty/local.mk index ea01355..31dd6bb 100644 --- a/3rdparty/local.mk +++ b/3rdparty/local.mk @@ -1,6 +1,6 @@ if EMBEDDED_XCF2PNG $(XCF2PNG): - (cd %reldir%/xcftools/ && $(MAKE)) + $(AM_V_GEN)(cd %reldir%/xcftools/ && $(MAKE)) clean-local: -(cd %reldir%/xcftools/ && $(MAKE) clean) endif diff --git a/Makefile.am b/Makefile.am index c10b5e4..83ff962 100644 --- a/Makefile.am +++ b/Makefile.am @@ -73,7 +73,7 @@ dist-hook: fi .xcf.png: - $(XCF2PNG) -f -o $@ $< + $(AM_V_GEN)$(XCF2PNG) -f -o $@ $< include $(top_srcdir)/src/local.mk include $(top_srcdir)/data/local.mk diff --git a/configure.ac b/configure.ac index eb00278..2fac9ae 100644 --- a/configure.ac +++ b/configure.ac @@ -22,6 +22,7 @@ AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/main.c]) AM_INIT_AUTOMAKE([gnu dist-bzip2 dist-xz subdir-objects]) +AM_SILENT_RULES([yes]) AC_PROG_CC() AM_PROG_CC_C_O() -- cgit v0.9.1