-
Notifications
You must be signed in to change notification settings - Fork 5
/
META
65 lines (56 loc) · 1.39 KB
/
META
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- mode:sh -*-
# name="fan_top"
version = "0.1"
# directory= "+fan"
description= "metaprogramming tool for OCaml"
requires="dynlink"
# package "top" (
# requires = ""
# version = "0.1"
# description = "fan toplevel"
# archive(byte) = "libutils.cma"
# )
package "utils" (
requires = "fan"
version="0.1"
description="basic runtime support for Fan, it's mainly an enhancement for stdlib"
archive(byte)="libutils.cma"
archive(byte,plugin)="libutils.cma"
archive(native,plugin)="libutils.cmxs"
archive(native)="libutils.cmxa"
)
package "common" (
requires = "fan.utils"
version = "0.1"
archive(byte)="libcommon.cma"
archive(byte,plugin)="libcommon.cma"
archive(native)="libcommon.cmxa"
archive(native,plugin)="libcommon.cmxs"
)
package "treeparser" (
version="0.1"
description="fan toplevel"
requires = "fan.common"
archive(byte)="libtreeparser.cma"
)
package "toplib" (
version="0.1"
description="the toplevel lib"
requires="fan.treeparser"
archive(byte)="libmain_top.cma"
)
# package "full" (
# version="0.1"
# description="the full lib"
# archive(byte)="mkFan.cma"
# )
# package "ast"{
# requires = "fan.rts"
# version = "0.1"
# archive(byte)="astlib.cma"
# archive(byte,plugin)="astlib.cma"
# archive(native)="astlib.cmxa"
# archive(native,plugin)="astlib.cmxs"
# }
# version="dev"
# archive(byte) = "libutils.cma "