summaryrefslogtreecommitdiff
path: root/contrib/extraction/test/extract
blob: 83444be312297f38e3ccb2fbe0e30d8fdb3f8a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
rm -f /tmp/extr$$.v 
vfile=`./ml2v $1`
d=`dirname $vfile`
n=`basename $vfile .v`
if [ -e custom/$n ]; then cat custom/$n > /tmp/extr$$.v; fi  
echo "Cd \"$d\". 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