From efa83e8aa573aeb1b7ee57f407ef3ea7eae29f41 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 21 Dec 2012 02:47:21 +0000 Subject: [PATCH] call indent for each file separately in the hope that this fixes some strange indentation inconsistencies git-svn-id: https://svn.dealii.org/trunk@27846 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/deal.II/Makefile b/deal.II/Makefile index 9084d9e739..460bce3223 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -158,7 +158,11 @@ style-cc-files:= $(wildcard source/*/*.cc) style-examples:= $(wildcard examples/*/*.cc) indent: @echo "============ Indenting all files" - astyle --options=common/astyle.rc $(style-h-files) $(style-cc-files) $(style-examples) + @for f in $(style-h-files) $(style-cc-files) $(style-examples) ;\ + do\ + echo $$f ;\ + astyle --options=common/astyle.rc $$f ;\ + done .PHONY: indent -- 2.39.5