mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
chore: better deps for unlabel
This commit is contained in:
parent
f02f291c7a
commit
b7e8dcb5ff
2 changed files with 11 additions and 11 deletions
|
|
@ -1,32 +1,32 @@
|
|||
(rule
|
||||
(targets CCArray.mli)
|
||||
(deps CCArrayLabels.mli)
|
||||
(deps (:mli CCArrayLabels.mli) ../unlabel.exe)
|
||||
(mode promote)
|
||||
(action (run ../unlabel.exe %{deps} %{targets})))
|
||||
(action (run ../unlabel.exe %{mli} %{targets})))
|
||||
|
||||
(rule
|
||||
(targets CCArray_slice.mli)
|
||||
(deps CCArray_sliceLabels.mli)
|
||||
(deps (:mli CCArray_sliceLabels.mli) ../unlabel.exe)
|
||||
(mode promote)
|
||||
(action (run ../unlabel.exe %{deps} %{targets})))
|
||||
(action (run ../unlabel.exe %{mli} %{targets})))
|
||||
|
||||
(rule
|
||||
(targets CCEqual.mli)
|
||||
(deps CCEqualLabels.mli)
|
||||
(deps (:mli CCEqualLabels.mli) ../unlabel.exe)
|
||||
(mode promote)
|
||||
(action (run ../unlabel.exe %{deps} %{targets})))
|
||||
(action (run ../unlabel.exe %{mli} %{targets})))
|
||||
|
||||
(rule
|
||||
(targets CCList.mli)
|
||||
(deps CCListLabels.mli)
|
||||
(deps (:mli CCListLabels.mli) ../unlabel.exe)
|
||||
(mode promote)
|
||||
(action (run ../unlabel.exe %{deps} %{targets})))
|
||||
(action (run ../unlabel.exe %{mli} %{targets})))
|
||||
|
||||
(rule
|
||||
(targets CCString.mli)
|
||||
(deps CCStringLabels.mli)
|
||||
(deps (:mli CCStringLabels.mli) ../unlabel.exe)
|
||||
(mode promote)
|
||||
(action (run ../unlabel.exe %{deps} %{targets})))
|
||||
(action (run ../unlabel.exe %{mli} %{targets})))
|
||||
|
||||
(library
|
||||
(name containers)
|
||||
|
|
|
|||
2
src/dune
2
src/dune
|
|
@ -6,7 +6,7 @@
|
|||
(executable
|
||||
(name unlabel)
|
||||
(modules unlabel)
|
||||
(libraries str compiler-libs.common))
|
||||
(libraries compiler-libs.common))
|
||||
|
||||
(rule
|
||||
(targets flambda.flags)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue