Skip to content

Commit 8179e42

Browse files
committed
silence make ptest/distclean messages
1 parent a4b1245 commit 8179e42

File tree

30 files changed

+64
-64
lines changed

30 files changed

+64
-64
lines changed

Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ else
4242
endif
4343

4444
ptest:
45-
for d in $(PTEST_SUBDIRS) ; do \
45+
@for d in $(PTEST_SUBDIRS) ; do \
4646
$(MAKE) $(MFLAGS) -C $$d ptest $$* || exit 1 ; \
4747
done
4848

4949
ptests:
50-
for d in $(PTEST_SUBDIRS) ; do \
50+
@for d in $(PTEST_SUBDIRS) ; do \
5151
$(MAKE) $(MFLAGS) -C $$d ptests $$* || exit 1 ; \
5252
done
5353

@@ -113,7 +113,7 @@ install-data-hook:
113113

114114
# For VPATH build (parallel build), try delete all sub-directories
115115
distclean-local:
116-
if [ "$(abs_builddir)" != "$(abs_srcdir)" ] ; then \
116+
@if [ "$(abs_builddir)" != "$(abs_srcdir)" ] ; then \
117117
for d in $(DIST_SUBDIRS) ; do \
118118
rmdir $$d || true ; \
119119
done ; \

benchmarks/C/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ptest ptests ptest4: $(check_PROGRAMS)
4040
@echo "==========================================================="
4141
@echo " $(subdir): Parallel testing on 4 MPI processes"
4242
@echo "==========================================================="
43-
$(TESTS_ENVIRONMENT) \
43+
@$(TESTS_ENVIRONMENT) \
4444
$(srcdir)/parallel_run.sh 4 || exit 1
4545

4646
ptest2 ptest6 ptest8 ptest10:

benchmarks/FLASH-IO/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ptest ptests ptest4: $(check_PROGRAMS)
8383
@echo "==========================================================="
8484
@echo " $(subdir): Parallel testing on 4 MPI processes"
8585
@echo "==========================================================="
86-
$(TESTS_ENVIRONMENT) \
86+
@$(TESTS_ENVIRONMENT) \
8787
$(srcdir)/parallel_run.sh 4 || exit 1
8888

8989
ptest2 ptest6 ptest8 ptest10:

benchmarks/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ else
3030
endif
3131

3232
ptest ptests:
33-
for d in $(PTEST_SUBDIRS) ; do \
33+
@for d in $(PTEST_SUBDIRS) ; do \
3434
$(MAKE) $(MFLAGS) -C $$d ptest $$* || exit 1 ; \
3535
done
3636

3737
# For VPATH build (parallel build), try delete all sub-directories
3838
distclean-local:
39-
for d in $(DIST_SUBDIRS) ; do \
39+
@for d in $(DIST_SUBDIRS) ; do \
4040
if [ -d $$d/.deps ] ; then rmdir $$d/.deps || true ; fi ; \
4141
done ; \
4242
if [ "$(abs_builddir)" != "$(abs_srcdir)" ] ; then \

doc/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ EXTRA_DIST = README.CRAY \
2727

2828
# For VPATH build (parallel build), try delete all sub-directories
2929
distclean-local:
30-
if [ "$(abs_builddir)" != "$(abs_srcdir)" ] ; then \
30+
@if [ "$(abs_builddir)" != "$(abs_srcdir)" ] ; then \
3131
for d in $(DIST_SUBDIRS) ; do \
3232
rmdir $$d || true ; \
3333
done ; \

examples/C/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,21 +70,21 @@ ptest ptest4: $(check_PROGRAMS)
7070
@echo "==========================================================="
7171
@echo " $(subdir): Parallel testing on 4 MPI processes"
7272
@echo "==========================================================="
73-
$(TESTS_ENVIRONMENT) \
73+
@$(TESTS_ENVIRONMENT) \
7474
$(srcdir)/parallel_run.sh 4 || exit 1
7575

7676
ptest8: $(check_PROGRAMS)
7777
@echo "==========================================================="
7878
@echo " $(subdir): Parallel testing on 8 MPI processes"
7979
@echo "==========================================================="
80-
$(TESTS_ENVIRONMENT) \
80+
@$(TESTS_ENVIRONMENT) \
8181
$(srcdir)/parallel_run.sh 8 || exit 1
8282

8383
ptest3: $(check_PROGRAMS)
8484
@echo "==========================================================="
8585
@echo " $(subdir): Parallel testing on 3 MPI processes"
8686
@echo "==========================================================="
87-
$(TESTS_ENVIRONMENT) \
87+
@$(TESTS_ENVIRONMENT) \
8888
$(srcdir)/parallel_run.sh 3 || exit 1
8989

9090
ptests: ptest3 ptest4 ptest8

examples/CXX/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ ptest ptest4: $(check_PROGRAMS)
5555
@echo "==========================================================="
5656
@echo " $(subdir): Parallel testing on 4 MPI processes"
5757
@echo "==========================================================="
58-
$(TESTS_ENVIRONMENT) \
58+
@$(TESTS_ENVIRONMENT) \
5959
$(srcdir)/parallel_run.sh 4 || exit 1
6060

6161
ptest8: $(check_PROGRAMS)
6262
@echo "==========================================================="
6363
@echo " $(subdir): Parallel testing on 8 MPI processes"
6464
@echo "==========================================================="
65-
$(TESTS_ENVIRONMENT) \
65+
@$(TESTS_ENVIRONMENT) \
6666
$(srcdir)/parallel_run.sh 8 || exit 1
6767

6868
ptest3: $(check_PROGRAMS)
6969
@echo "==========================================================="
7070
@echo " $(subdir): Parallel testing on 3 MPI processes"
7171
@echo "==========================================================="
72-
$(TESTS_ENVIRONMENT) \
72+
@$(TESTS_ENVIRONMENT) \
7373
$(srcdir)/parallel_run.sh 3 || exit 1
7474

7575
ptests: ptest3 ptest4 ptest8

examples/F77/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ ptest ptest4: $(check_PROGRAMS)
6363
@echo "==========================================================="
6464
@echo " $(subdir): Parallel testing on 4 MPI processes"
6565
@echo "==========================================================="
66-
$(TESTS_ENVIRONMENT) \
66+
@$(TESTS_ENVIRONMENT) \
6767
$(srcdir)/parallel_run.sh 4 || exit 1
6868

6969
ptest8: $(check_PROGRAMS)
7070
@echo "==========================================================="
7171
@echo " $(subdir): Parallel testing on 8 MPI processes"
7272
@echo "==========================================================="
73-
$(TESTS_ENVIRONMENT) \
73+
@$(TESTS_ENVIRONMENT) \
7474
$(srcdir)/parallel_run.sh 8 || exit 1
7575

7676
ptest3: $(check_PROGRAMS)
7777
@echo "==========================================================="
7878
@echo " $(subdir): Parallel testing on 3 MPI processes"
7979
@echo "==========================================================="
80-
$(TESTS_ENVIRONMENT) \
80+
@$(TESTS_ENVIRONMENT) \
8181
$(srcdir)/parallel_run.sh 3 || exit 1
8282

8383
ptests: ptest3 ptest4 ptest8

examples/F90/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,21 @@ ptest ptest4: $(check_PROGRAMS)
5757
@echo "==========================================================="
5858
@echo " $(subdir): Parallel testing on 4 MPI processes"
5959
@echo "==========================================================="
60-
$(TESTS_ENVIRONMENT) \
60+
@$(TESTS_ENVIRONMENT) \
6161
$(srcdir)/parallel_run.sh 4 || exit 1
6262

6363
ptest8: $(check_PROGRAMS)
6464
@echo "==========================================================="
6565
@echo " $(subdir): Parallel testing on 8 MPI processes"
6666
@echo "==========================================================="
67-
$(TESTS_ENVIRONMENT) \
67+
@$(TESTS_ENVIRONMENT) \
6868
$(srcdir)/parallel_run.sh 8 || exit 1
6969

7070
ptest3: $(check_PROGRAMS)
7171
@echo "==========================================================="
7272
@echo " $(subdir): Parallel testing on 3 MPI processes"
7373
@echo "==========================================================="
74-
$(TESTS_ENVIRONMENT) \
74+
@$(TESTS_ENVIRONMENT) \
7575
$(srcdir)/parallel_run.sh 3 || exit 1
7676

7777
ptests: ptest3 ptest4 ptest8

examples/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@ else
4747
endif
4848

4949
ptest:
50-
for d in $(PTEST_SUBDIRS) ; do \
50+
@for d in $(PTEST_SUBDIRS) ; do \
5151
$(MAKE) $(MFLAGS) -C $$d ptest $$* || exit 1 ; \
5252
done
5353

5454
ptests:
55-
for d in $(PTEST_SUBDIRS) ; do \
55+
@for d in $(PTEST_SUBDIRS) ; do \
5656
$(MAKE) $(MFLAGS) -C $$d ptests $$* || exit 1 ; \
5757
done
5858

5959
# For VPATH build (parallel build), try delete all sub-directories
6060
distclean-local:
61-
for d in $(DIST_SUBDIRS) ; do \
61+
@for d in $(DIST_SUBDIRS) ; do \
6262
if [ -d $$d/.deps ] ; then rmdir $$d/.deps || true ; fi ; \
6363
done ; \
6464
if [ "$(abs_builddir)" != "$(abs_srcdir)" ] ; then \

0 commit comments

Comments
 (0)