From e49e41dfb5e68df076212e151aa5a2d27382855b Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 25 Feb 2025 14:57:25 -0500 Subject: Makefile: further reduce noise from make. --- jindroush/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'jindroush') diff --git a/jindroush/Makefile b/jindroush/Makefile index 605dc70..a4fe4c9 100644 --- a/jindroush/Makefile +++ b/jindroush/Makefile @@ -18,15 +18,15 @@ BINS=acvt adir aext bas2boot chkbas chkexe chkrom W=-Wall -Wno-write-strings all: libs manpages - for i in $(BINS); do \ - make -C $$i COPT="$(COPT) $(W)" ; \ + @for i in $(BINS); do \ + $(MAKE) --no-print-directory -C $$i COPT="$(COPT) $(W)" ; \ done manpages: - make -C man + @$(MAKE) --no-print-directory -C man libs: - make -C lib COPT="$(COPT) $(W)" + @$(MAKE) --no-print-directory -C lib COPT="$(COPT) $(W)" clean: make -C lib clean -- cgit v1.2.3