forked from mit-plv/koika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune
202 lines (168 loc) · 5.9 KB
/
dune
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
(coq.theory
(name examples)
(modules :standard)
(theories Koika))
(env
(dev (flags (:standard -w -39))))
;; --- DO NOT EDIT BELOW THIS LINE (use ‘make configure’) ---
(dirs :standard _objects)
;; -*- dune -*-
(subdir "_objects/collatz.v"
(rule (write-file "collatz_extr.v"
"Require Coq.extraction.Extraction examples.collatz.
Extraction \"collatz.ml\" collatz.prog."))
(coq.extraction
(prelude collatz_extr)
(extracted_modules collatz)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/conflicts.v"
(rule (write-file "conflicts_extr.v"
"Require Coq.extraction.Extraction examples.conflicts.
Extraction \"conflicts.ml\" conflicts.prog."))
(coq.extraction
(prelude conflicts_extr)
(extracted_modules conflicts)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/conflicts_modular.v"
(rule (write-file "conflicts_modular_extr.v"
"Require Coq.extraction.Extraction examples.conflicts_modular.
Extraction \"conflicts_modular.ml\" conflicts_modular.prog."))
(coq.extraction
(prelude conflicts_modular_extr)
(extracted_modules conflicts_modular)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/cosimulation.v"
(rule (write-file "cosimulation_extr.v"
"Require Coq.extraction.Extraction examples.cosimulation.
Extraction \"cosimulation.ml\" cosimulation.prog."))
(coq.extraction
(prelude cosimulation_extr)
(extracted_modules cosimulation)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/datatypes.v"
(rule (write-file "datatypes_extr.v"
"Require Coq.extraction.Extraction examples.datatypes.
Extraction \"datatypes.ml\" datatypes.prog."))
(coq.extraction
(prelude datatypes_extr)
(extracted_modules datatypes)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/external_rule.v"
(rule (write-file "external_rule_extr.v"
"Require Coq.extraction.Extraction examples.external_rule.
Extraction \"external_rule.ml\" external_rule.prog."))
(coq.extraction
(prelude external_rule_extr)
(extracted_modules external_rule)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/fft.v"
(rule (write-file "fft_extr.v"
"Require Coq.extraction.Extraction examples.fft.
Extraction \"fft.ml\" fft.prog."))
(coq.extraction
(prelude fft_extr)
(extracted_modules fft)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/fir.v"
(rule (write-file "fir_extr.v"
"Require Coq.extraction.Extraction examples.fir.
Extraction \"fir.ml\" fir.prog."))
(coq.extraction
(prelude fir_extr)
(extracted_modules fir)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/function_call.v"
(rule (write-file "function_call_extr.v"
"Require Coq.extraction.Extraction examples.function_call.
Extraction \"function_call.ml\" function_call.prog."))
(coq.extraction
(prelude function_call_extr)
(extracted_modules function_call)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/gcd_machine.v"
(rule (write-file "gcd_machine_extr.v"
"Require Coq.extraction.Extraction examples.gcd_machine.
Extraction \"gcd_machine.ml\" gcd_machine.prog."))
(coq.extraction
(prelude gcd_machine_extr)
(extracted_modules gcd_machine)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/method_call.v"
(rule (write-file "method_call_extr.v"
"Require Coq.extraction.Extraction examples.method_call.
Extraction \"method_call.ml\" method_call.prog."))
(coq.extraction
(prelude method_call_extr)
(extracted_modules method_call)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/pipeline.v"
(rule (write-file "pipeline_extr.v"
"Require Coq.extraction.Extraction examples.pipeline.
Extraction \"pipeline.ml\" pipeline.prog."))
(coq.extraction
(prelude pipeline_extr)
(extracted_modules pipeline)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/pipeline_tutorial.v"
(rule (write-file "pipeline_tutorial_extr.v"
"Require Coq.extraction.Extraction examples.pipeline_tutorial.
Extraction \"pipeline_tutorial.ml\" pipeline_tutorial.prog."))
(coq.extraction
(prelude pipeline_tutorial_extr)
(extracted_modules pipeline_tutorial)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/save_restore.v"
(rule (write-file "save_restore_extr.v"
"Require Coq.extraction.Extraction examples.save_restore.
Extraction \"save_restore.ml\" save_restore.prog."))
(coq.extraction
(prelude save_restore_extr)
(extracted_modules save_restore)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/uart.v"
(rule (write-file "uart_extr.v"
"Require Coq.extraction.Extraction examples.uart.
Extraction \"uart.ml\" uart.prog."))
(coq.extraction
(prelude uart_extr)
(extracted_modules uart)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))
;; -*- dune -*-
(subdir "_objects/vector.v"
(rule (write-file "vector_extr.v"
"Require Coq.extraction.Extraction examples.vector.
Extraction \"vector.ml\" vector.prog."))
(coq.extraction
(prelude vector_extr)
(extracted_modules vector)
(theories Koika examples)
(flags "-w" "-overriding-logical-loadpath")))