aboutsummaryrefslogtreecommitdiff
path: root/tools/check-translate
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-10-02 04:23:05 +0200
committerEmilio Jesus Gallego Arias2018-10-02 04:27:15 +0200
commitec751f0d48fa3d6268ed4210d74efac23bc87cbc (patch)
treeac7c8f130dfa654ac35f7a836e0b04a542972449 /tools/check-translate
parent05786b23cf0d031c93998c59f6f2f94d6049b027 (diff)
[tools] Remove unused / obsolete files.
TTBOMK we don't use any of these files since a long time.
Diffstat (limited to 'tools/check-translate')
-rwxr-xr-xtools/check-translate23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/check-translate b/tools/check-translate
deleted file mode 100755
index acb6f45903..0000000000
--- a/tools/check-translate
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-echo -------------- Producing translated files ---------------------
-rm */*/*.v8 >& /dev/null
-make COQOPTS=-translate theories || { echo ---- Failed to translate; exit 1; }
-if [ -e translated ]; then rm -r translated; fi
-if [ -e successful-translation ]; then rm -r successful-translation; fi
-if [ -e failed-translation ]; then rm -r failed-translation; fi
-mv theories translated
-mkdir theories
-echo -------------------- Upgrading files --------------------------
-cd translated
-for i in */*.v
-do
- mkdir ../theories/`dirname $i` >& /dev/null
- mv "$i"8 ../theories/$i
-done
-cd ..
-echo --------------- Recompiling translated files ------------------
-make theories || { echo ---- Failed to recompile; mv theories failed-translation; mv translated theories; exit 1; }
-echo ----------------- Recompilation successful --------------------
-if [ -e successful-translation ]; then rm -r successful-translation; fi
-mv theories successful-translation; mv translated theories