mapnik/utils/format_source_files/format_source_files.sh
Artem Pavlenko 0f597b2809 + Add basic format functions and script.
Usage:
      cd $mapnik_source/utils/format_source_files
      ./format_source_files.sh
  (TODO: just a starting point to remove tabs,
  needs some more work)
2010-06-02 11:03:39 +00:00

14 lines
362 B
Bash
Executable file

#!/bin/bash
# batch format *.{hpp,cpp} files
MAPNIK_DIR="/Users/artem/projects/mapnik"
DIRS="$MAPNIK_DIR/src $MAPNIK_DIR/include $MAPNIK_DIR/bindings $MAPNIK_DIR/utils"
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