Skip to content

Commit 06b1324

Browse files
committed
Makefile: be less verbose by default
1 parent 4c4c704 commit 06b1324

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
NUM_CPU ?= $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1)
1919

2020
CMAKE ?= cmake
21-
CTEST ?= ctest -j$(NUM_CPU)
21+
CTEST ?= ctest -j$(NUM_CPU) --progress
2222

2323
CMAKE_BUILD_TYPE ?= RelWithDebInfo
2424

@@ -27,7 +27,7 @@ CMAKE_BUILD_TYPE ?= RelWithDebInfo
2727
all: version.cc
2828
mkdir -p csdiff_build
2929
cd csdiff_build && $(CMAKE) -D 'CMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE)' ..
30-
$(MAKE) -C csdiff_build -j$(NUM_CPU)
30+
$(MAKE) -sC csdiff_build -j$(NUM_CPU)
3131

3232
fast: version.cc
3333
$(MAKE) -sC csdiff_build
@@ -43,7 +43,7 @@ distclean:
4343
rm -rf csdiff_build
4444

4545
distcheck: distclean
46-
$(MAKE) check
46+
$(MAKE) -s check
4747

4848
install: all
4949
$(MAKE) -C csdiff_build install

0 commit comments

Comments
 (0)