Browse Source

Add uncrustify config file and helper script

git-svn-id: svn://svn.berlios.de/openocd/trunk@1364 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
kc8apf 14 years ago
parent
commit
6c39552316
2 changed files with 1191 additions and 0 deletions
  1. +30
    -0
      tools/uncrustify1.sh
  2. +1161
    -0
      uncrustify.cfg

+ 30
- 0
tools/uncrustify1.sh View File

@@ -0,0 +1,30 @@
#!/bin/sh
# Run the beautifier "Uncrustify" on a single file.
# Because the file "uncrustify.cfg" only exists in the top level of the project
# you should run this script from there so this script can find your uncrustify.cfg file.


UNCRUSTIFYTMP=/tmp/uncrustify.tmp


if [ ! -f uncrustify.cfg ]; then
echo "unable to find uncrustify.cfg, aborting"
exit 1
fi

UNCRUSTIFYBIN=`which uncrustify`

if [ "$UNCRUSTIFYBIN" = "" ]; then
echo "you must specify uncrustify in your PATH, I cannot find it"
exit 2
fi

if [ $# -lt 1 ]; then
echo "Usage $0 <filename .c or .h>"
exit 3
fi

uncrustify -c uncrustify.cfg <$1 >$UNCRUSTIFYTMP

# you can comment this out while tuning the uncrustify.cfg file:
mv $UNCRUSTIFYTMP $1

+ 1161
- 0
uncrustify.cfg
File diff suppressed because it is too large
View File


Loading…
Cancel
Save