├── .gitignore ├── CHANGES.md ├── LICENSE.md ├── Makefile ├── README.md ├── pkg └── pkg.ml ├── src ├── jbuild ├── topkg_jbuilder.ml ├── topkg_jbuilder.mli └── topkg_jbuilder_auto.ml ├── topkg-jbuilder.descr └── topkg-jbuilder.opam /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | .merlin 3 | *.install 4 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/README.md -------------------------------------------------------------------------------- /pkg/pkg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/pkg/pkg.ml -------------------------------------------------------------------------------- /src/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/src/jbuild -------------------------------------------------------------------------------- /src/topkg_jbuilder.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/src/topkg_jbuilder.ml -------------------------------------------------------------------------------- /src/topkg_jbuilder.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/src/topkg_jbuilder.mli -------------------------------------------------------------------------------- /src/topkg_jbuilder_auto.ml: -------------------------------------------------------------------------------- 1 | let () = Topkg_jbuilder.describe () 2 | -------------------------------------------------------------------------------- /topkg-jbuilder.descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/topkg-jbuilder.descr -------------------------------------------------------------------------------- /topkg-jbuilder.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoht/topkg-jbuilder/HEAD/topkg-jbuilder.opam --------------------------------------------------------------------------------