Up

module Reflected

: sig
#
module Action : sig
#
type t = Job.t
#
val dir : t -> Path.t
#
val string_for_sh : t -> string
#
val string_for_one_line_make_recipe : t -> string
end
#
module Trip : sig
#
type t = {
# targets
: Path.t list;
# deps
: Path.t list;
# action
: Action.t;
}
#
val to_string : t -> string
end
end