├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── dune └── mkocaml.ml ├── dune-project ├── lib ├── git │ ├── dune │ └── gitUtils.ml ├── io │ ├── dune │ └── ioUtils.ml ├── makefile │ ├── dune │ └── makefileUtils.ml └── opam │ ├── dune │ └── opamUtils.ml └── mkocaml.opam /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/README.md -------------------------------------------------------------------------------- /bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/bin/dune -------------------------------------------------------------------------------- /bin/mkocaml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/bin/mkocaml.ml -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.11) 2 | (name mkocaml) 3 | -------------------------------------------------------------------------------- /lib/git/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/git/dune -------------------------------------------------------------------------------- /lib/git/gitUtils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/git/gitUtils.ml -------------------------------------------------------------------------------- /lib/io/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/io/dune -------------------------------------------------------------------------------- /lib/io/ioUtils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/io/ioUtils.ml -------------------------------------------------------------------------------- /lib/makefile/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/makefile/dune -------------------------------------------------------------------------------- /lib/makefile/makefileUtils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/makefile/makefileUtils.ml -------------------------------------------------------------------------------- /lib/opam/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/opam/dune -------------------------------------------------------------------------------- /lib/opam/opamUtils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/lib/opam/opamUtils.ml -------------------------------------------------------------------------------- /mkocaml.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisnevers/mkocaml/HEAD/mkocaml.opam --------------------------------------------------------------------------------