summaryrefslogtreecommitdiff
path: root/src/contrib/checkout.sh
diff options
context:
space:
mode:
authorAlasdair Armstrong2018-04-04 15:14:39 +0100
committerAlasdair Armstrong2018-04-05 18:40:36 +0100
commit09fca718c6e850a3a94db399fd1744dc537bbe41 (patch)
tree0d679d573f87236ee02e1ffe623d2e031a940ccb /src/contrib/checkout.sh
parent3604e9e94b766147b482c4c653c4d09bb4ee7a7c (diff)
Cleanup repository by removing old and generated files
Rename l2.ott to sail.ott
Diffstat (limited to 'src/contrib/checkout.sh')
-rwxr-xr-xsrc/contrib/checkout.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/contrib/checkout.sh b/src/contrib/checkout.sh
deleted file mode 100755
index 6d423e54..00000000
--- a/src/contrib/checkout.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-test -d batteries-included || (git clone https://github.com/ocaml-batteries-team/batteries-included.git && \
- cd batteries-included && git checkout release-2.2.0)
-(cd batteries-included && make all)
-
-test -d bitstring || (git clone https://code.google.com/p/bitstring/ && \
- cd bitstring && git checkout master)
-(cd bitstring && (test -e config.h || (aclocal && autoreconf && ./configure)) && make srcdir='$(top_srcdir)' )
-
-# To fix "-fno-defer-pop" build problem on Mac OS, brew install gcc
-# and make sure "gcc" runs the brew version (not clang). Or get ocaml
-# 4.01.0 via opam, which avoids this problem.
-test -d uint || (git clone https://github.com/andrenth/ocaml-uint.git && \
- cd ocaml-uint && git checkout 1.1.x)
-(cd ocaml-uint && make configure && make)