diff options
author | P. J. McDermott <pj@pehjota.net> | 2023-02-23 13:33:45 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2023-02-23 13:35:34 (EST) |
commit | 1ec719cde32acebfaf198acb284ee31e0b399f14 (patch) | |
tree | 1b9f166f7af1f848f4a1fa013a3d8c17e0d0e657 | |
parent | cb0dd73c639fcef0a1d2d73226bbec713afdd42f (diff) | |
download | overworld-rpg-1ec719cde32acebfaf198acb284ee31e0b399f14.zip overworld-rpg-1ec719cde32acebfaf198acb284ee31e0b399f14.tar.gz overworld-rpg-1ec719cde32acebfaf198acb284ee31e0b399f14.tar.bz2 |
build: Use silent rules by default
The xcftools custom makefile is still noisy as hell, though.
-rw-r--r-- | 3rdparty/local.mk | 2 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
3 files changed, 3 insertions, 2 deletions
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() |