-
Notifications
You must be signed in to change notification settings - Fork 1
/
Make
39 lines (35 loc) · 806 Bytes
/
Make
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
# Includes
##########
-I src
-R theories Cybele
## Targets
##########
CMX_TARGETS = "\
src/cybeleConstants.cmx \
src/cybeleState.cmx \
src/cybeleDynamicCompilation.cmx \
src/cybele.cmx \
src/cybelePluginModule.cmx"
CMO_TARGETS = $(CMX_TARGETS:.cmx=.cmo)
# Custom variables
##################
COQEPLUGIN = "src/cybelePlugin.cma"
COQEPLUGINOPT = "src/cybelePlugin.cmxs"
COQDOC = "$(COQBIN)coqdoc -interpolate -utf8"
CAMLP4OPTIONS = "-loc loc"
# Compilation units
###################
src/cybeleConstants.ml
src/cybeleState.mli
src/cybeleState.ml
src/cybeleDynamicCompilation.mli
src/cybeleDynamicCompilation.ml
src/cybele.ml4
src/cybelePluginModule.ml
src/cybelePlugin.mllib
theories/Cybele.v
theories/DataStructures.v
theories/Map.v
theories/Memoization.v
theories/Monad.v
theories/Reifiable.v