chore: better deps for unlabel

This commit is contained in:
Simon Cruanes 2018-10-13 19:01:23 -05:00
parent f02f291c7a
commit b7e8dcb5ff
2 changed files with 11 additions and 11 deletions

View file

@ -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)

View file

@ -6,7 +6,7 @@
(executable
(name unlabel)
(modules unlabel)
(libraries str compiler-libs.common))
(libraries compiler-libs.common))
(rule
(targets flambda.flags)