2010-06-02 13:03:39 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# batch format *.{hpp,cpp} files
|
|
|
|
|
2011-11-14 04:39:43 +01:00
|
|
|
MAPNIK_DIR=`pwd`
|
2013-02-28 20:37:12 +01:00
|
|
|
DIRS="$MAPNIK_DIR/plugins $MAPNIK_DIR/demo/c++ $MAPNIK_DIR/src $MAPNIK_DIR/include $MAPNIK_DIR/bindings $MAPNIK_DIR/utils $MAPNIK_DIR/tests $MAPNIK_DIR/deps/agg"
|
|
|
|
|
2010-06-02 13:03:39 +02:00
|
|
|
EMACS="emacs"
|
|
|
|
|
|
|
|
for file in $(find $DIRS -name '*.cpp' -o -name '*.hpp')
|
|
|
|
do
|
|
|
|
$EMACS -batch $file -l $MAPNIK_DIR/utils/format_source_files/mapnik_format.el -f mapnik-format-function
|
|
|
|
done
|