cppcheck/runastyle
Pete Johns 4ca795056f Fixed syntax error
"./runastyle: line 4: --suffix=none: command not found"
2010-09-20 21:16:09 +10:00

17 lines
408 B
Bash
Executable File

#!/bin/bash
style="--style=ansi --min-conditional-indent=0"
options="--pad-header --unpad-paren --suffix=none"
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