blob: 9f076dbc4ede7ddf49d5c263bf16787fab5d70d1 (
plain)
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
|
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Sebastien Hinderer, projet Gallium, INRIA Paris *)
(* *)
(* Copyright 2016 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* 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. *)
(* *)
(**************************************************************************)
(* Definition of a few built-in actions *)
val pass : Actions.t
val skip : Actions.t
val fail : Actions.t
val dumpenv : Actions.t
val libunix : Actions.t
val libwin32unix : Actions.t
val windows : Actions.t
val not_windows : Actions.t
val bsd : Actions.t
val not_bsd : Actions.t
val arch32 : Actions.t
val arch64 : Actions.t
val setup_build_env : Actions.t
val setup_simple_build_env : Actions.t
val run : Actions.t
val script : Actions.t
val check_program_output : Actions.t
|