summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xastyle/beautify_source_tree29
-rw-r--r--astyle/tde_astylerc14
2 files changed, 0 insertions, 43 deletions
diff --git a/astyle/beautify_source_tree b/astyle/beautify_source_tree
deleted file mode 100755
index 0628a8e..0000000
--- a/astyle/beautify_source_tree
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-if [[ $1 == "" ]]; then
- echo "Please specify the source directory to beautify"
- exit 1
-fi
-
-ASTYLEARGS=$( cat <<EOF
---indent=tab \
---indent-classes \
---indent-switches \
---indent-cases \
---indent-namespaces \
---indent-labels \
---indent-col1-comments \
- \
---unpad-paren \
- \
---style=java \
---add-brackets \
---break-closing-brackets \
---keep-one-line-statements
-EOF
-)
-
-astyle $ASTYLEARGS --recursive $1/*.c || true
-astyle $ASTYLEARGS --recursive $1/*.cc || true
-astyle $ASTYLEARGS --recursive $1/*.cpp || true
-astyle $ASTYLEARGS --recursive $1/*.h || true
diff --git a/astyle/tde_astylerc b/astyle/tde_astylerc
deleted file mode 100644
index 3eff9ec..0000000
--- a/astyle/tde_astylerc
+++ /dev/null
@@ -1,14 +0,0 @@
---indent=tab
---indent-classes
---indent-switches
---indent-cases
---indent-namespaces
---indent-labels
---indent-col1-comments
-
---unpad-paren
-
---style=java
---add-brackets
---break-closing-brackets
---keep-one-line-statements