summaryrefslogtreecommitdiff
path: root/src/js2h.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/js2h.sh')
-rwxr-xr-xsrc/js2h.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/js2h.sh b/src/js2h.sh
deleted file mode 100755
index f849e85..0000000
--- a/src/js2h.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-echo '#define HINTS_JS "' | tr -d '\n'
-cat $1 | \
- tr '\n\r\t' ' ' | \
- sed -e 's:/\*[^*]*\*/::g' \
- -e 's|[ ]\{2,\}| |g' \
- -e "s|[ ]\{0,\}\([-!?<>:=(){};+\&\"',\|]\)[ ]\{0,\}|\1|g" \
- -e 's|"+"||g' \
- -e 's|\\x20| |g' \
- -e 's|\\|\\\\|g' \
- -e 's|"|\\"|g' \
- -e 's|HINT_CSS|" HINT_CSS "|' \
- -e '$s/$/"/'
-echo ""