summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-04-05 00:37:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-04-05 00:37:15 +0900
commit9df5b598ec2aa715dea8d61fc261186968222c4e (patch)
treefb5a317f16da416fa74cf8c78f4fecb59596ebab
parent444f4bbf72ca360d6be8b2d35c7d4ef64f09a716 (diff)
downloadscripts-9df5b598ec2aa715dea8d61fc261186968222c4e.tar.gz
scripts-9df5b598ec2aa715dea8d61fc261186968222c4e.zip
Removed style scripts, they are still available on master branch.r14.0.9r14.0.8
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-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