aboutsummaryrefslogtreecommitdiff
path: root/contrib/extraction/test/make_mli
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/make_mli
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/make_mli')
-rwxr-xr-xcontrib/extraction/test/make_mli17
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/extraction/test/make_mli b/contrib/extraction/test/make_mli
deleted file mode 100755
index 40ee496ea2..0000000000
--- a/contrib/extraction/test/make_mli
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/awk -We $0
-
-{ match($0,"^open")
- if (RLENGTH>0) state=1
- match($0,"^type")
- if (RLENGTH>0) state=1
- match($0,"^\(\*\* ")
- if (RLENGTH>0) state=2
- match($0,"^let")
- if (RLENGTH>0) state=0
- match($0,"^and")
- if ((RLENGTH>0) && (state==2)) state=0
- if ((RLENGTH>0) && (state==1)) state=1
- gsub("\(\*\* ","")
- gsub("\*\*\)","")
- if (state>0) print
-}