From: heister Date: Fri, 21 Dec 2012 02:47:21 +0000 (+0000) Subject: call indent for each file separately in the hope that this fixes some strange indenta... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1734fd38f123e37f7f7605c334e032160ba0e87;p=dealii-svn.git 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 --- 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