├── .github └── workflows │ └── build.yml ├── .gitignore ├── .ocamlformat ├── LICENSE ├── README.md ├── doc ├── dune └── index.mld ├── dune-project ├── ppx_make.opam ├── src ├── arg_type.ml ├── deriver.ml ├── dune └── utils.ml └── test ├── dune ├── misc.types.mli ├── misc_types.ml ├── option.ml ├── option_types.ml ├── option_types.mli ├── poly_types.ml ├── poly_types.mli ├── record_types.ml ├── record_types.mli ├── test_make.ml ├── test_make_option.ml ├── test_make_poly.ml ├── test_make_record.ml ├── test_make_tuple.ml ├── test_make_variant.ml ├── tuple_types.ml ├── tuple_types.mli ├── variant_types.ml └── variant_types.mli /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/.ocamlformat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/README.md -------------------------------------------------------------------------------- /doc/dune: -------------------------------------------------------------------------------- 1 | (documentation 2 | (package ppx_make)) 3 | -------------------------------------------------------------------------------- /doc/index.mld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/doc/index.mld -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/dune-project -------------------------------------------------------------------------------- /ppx_make.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/ppx_make.opam -------------------------------------------------------------------------------- /src/arg_type.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/src/arg_type.ml -------------------------------------------------------------------------------- /src/deriver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/src/deriver.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/src/dune -------------------------------------------------------------------------------- /src/utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/src/utils.ml -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/dune -------------------------------------------------------------------------------- /test/misc.types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/misc.types.mli -------------------------------------------------------------------------------- /test/misc_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/misc_types.ml -------------------------------------------------------------------------------- /test/option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/option.ml -------------------------------------------------------------------------------- /test/option_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/option_types.ml -------------------------------------------------------------------------------- /test/option_types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/option_types.mli -------------------------------------------------------------------------------- /test/poly_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/poly_types.ml -------------------------------------------------------------------------------- /test/poly_types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/poly_types.mli -------------------------------------------------------------------------------- /test/record_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/record_types.ml -------------------------------------------------------------------------------- /test/record_types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/record_types.mli -------------------------------------------------------------------------------- /test/test_make.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/test_make.ml -------------------------------------------------------------------------------- /test/test_make_option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/test_make_option.ml -------------------------------------------------------------------------------- /test/test_make_poly.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/test_make_poly.ml -------------------------------------------------------------------------------- /test/test_make_record.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/test_make_record.ml -------------------------------------------------------------------------------- /test/test_make_tuple.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/test_make_tuple.ml -------------------------------------------------------------------------------- /test/test_make_variant.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/test_make_variant.ml -------------------------------------------------------------------------------- /test/tuple_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/tuple_types.ml -------------------------------------------------------------------------------- /test/tuple_types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/tuple_types.mli -------------------------------------------------------------------------------- /test/variant_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/variant_types.ml -------------------------------------------------------------------------------- /test/variant_types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bn-d/ppx_make/HEAD/test/variant_types.mli --------------------------------------------------------------------------------