1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
;**************************************************************************
;* *
;* OCaml *
;* *
;* Thomas Refis, Jane Street Europe *
;* *
;* Copyright 2018 Jane Street Group LLC *
;* *
;* All rights reserved. This file is distributed under the terms of *
;* the GNU Lesser General Public License version 2.1, with the *
;* special exception on linking described in the file LICENSE. *
;* *
;**************************************************************************
(rule
(targets config.ml)
(mode fallback)
(deps config.generated.ml config.common.ml)
(action
(with-stdout-to %{targets}
(system "cat %{deps}"))))
(rule
(targets domainstate.ml)
(mode fallback)
(deps (:conf ../Makefile.config)
(:c domainstate.ml.c)
(:tbl ../runtime/caml/domain_state.tbl))
(action
(with-stdout-to %{targets}
(bash
"`grep '^CPP=' %{conf} | cut -d'=' -f2` -I ../runtime/caml %{c}"
))))
(rule
(targets domainstate.mli)
(mode fallback)
(deps (:conf ../Makefile.config)
(:c domainstate.mli.c)
(:tbl ../runtime/caml/domain_state.tbl))
(action
(with-stdout-to %{targets}
(bash
"`grep '^CPP=' %{conf} | cut -d'=' -f2` -I ../runtime/caml %{c}"
))))
|