2009-01-05 16:52:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2010-07-31 16:28:24 +02:00
|
|
|
style="--style=ansi --min-conditional-indent=0"
|
2010-08-29 09:35:21 +02:00
|
|
|
options="--pad-header --unpad-paren" --suffix=none
|
2010-07-31 16:28:24 +02:00
|
|
|
|
|
|
|
astyle $style $options cli/*.cpp
|
|
|
|
astyle $style $options cli/*.h
|
|
|
|
astyle $style $options gui/*.cpp
|
|
|
|
astyle $style $options gui/*.h
|
|
|
|
astyle $style $options lib/*.cpp
|
|
|
|
astyle $style $options lib/*.h
|
|
|
|
astyle $style $options test/*.cpp
|
|
|
|
astyle $style $options test/*.h
|
|
|
|
|
|
|
|
astyle $style $options tools/*.cpp
|
2009-01-08 07:23:21 +01:00
|
|
|
|