├── .gitignore ├── .merlin ├── Makefile ├── README.md ├── _tags └── opam /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/opam-build/HEAD/.gitignore -------------------------------------------------------------------------------- /.merlin: -------------------------------------------------------------------------------- 1 | PKG fmt astring 2 | S . 3 | B _build/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/opam-build/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/opam-build/HEAD/README.md -------------------------------------------------------------------------------- /_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/opam-build/HEAD/_tags -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/opam-build/HEAD/opam --------------------------------------------------------------------------------