ocaml-containers/src/core/dune
Christopher Zimmermann f02f291c7a Create CCEqualLabels
2018-10-13 19:09:36 -05:00

38 lines
916 B
Text

(rule
(targets CCArray.mli)
(deps CCArrayLabels.mli)
(mode promote)
(action (run ../unlabel.exe %{deps} %{targets})))
(rule
(targets CCArray_slice.mli)
(deps CCArray_sliceLabels.mli)
(mode promote)
(action (run ../unlabel.exe %{deps} %{targets})))
(rule
(targets CCEqual.mli)
(deps CCEqualLabels.mli)
(mode promote)
(action (run ../unlabel.exe %{deps} %{targets})))
(rule
(targets CCList.mli)
(deps CCListLabels.mli)
(mode promote)
(action (run ../unlabel.exe %{deps} %{targets})))
(rule
(targets CCString.mli)
(deps CCStringLabels.mli)
(mode promote)
(action (run ../unlabel.exe %{deps} %{targets})))
(library
(name containers)
(public_name containers)
(wrapped false)
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -safe-string -nolabels -open CCMonomorphic)
(ocamlopt_flags (:include ../flambda.flags))
(libraries result uchar containers.monomorphic)
)