aboutsummaryrefslogtreecommitdiff
path: root/contrib/extraction/test/extract.haskell
diff options
context:
space:
mode:
authorletouzey2007-07-12 21:48:26 +0000
committerletouzey2007-07-12 21:48:26 +0000
commitc605392e81dccf2f99c43db538d6ceb4b9759e90 (patch)
tree7f920da7418b92a89e9c8c43e2e40ea9b21c9c8f /contrib/extraction/test/extract.haskell
parentcae62c87e2a361aeb31d3382280e5d7f18126e92 (diff)
Deletion of contrib/extraction/test
Not maintained, probably broken, of no interest except (maybe) for myself, bad interaction with tools that work recursively (coqdep). ===> I move it to a personal repository git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9986 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/extraction/test/extract.haskell')
-rwxr-xr-xcontrib/extraction/test/extract.haskell12
1 files changed, 0 insertions, 12 deletions
diff --git a/contrib/extraction/test/extract.haskell b/contrib/extraction/test/extract.haskell
deleted file mode 100755
index d11bc706e6..0000000000
--- a/contrib/extraction/test/extract.haskell
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-rm -f /tmp/extr$$.v
-vfile=`./hs2v $1`
-d=`dirname $vfile`
-n=`basename $vfile .v`
-if [ -e custom/$n ]; then cat custom/$n > /tmp/extr$$.v; fi
-echo "Cd \"$d\". Extraction Language Haskell. Extraction Library $n. " >> /tmp/extr$$.v
-../../../bin/coqtop.opt -silent -batch -require $n -load-vernac-source /tmp/extr$$.v
-out=$?
-rm -f /tmp/extr$$.v
-exit $out
-