Skip to content

Commit c81ffca

Browse files
authored
Merge pull request #25 from Template-Coq/wcbveval
Weak call-by-value evaluation definition
2 parents aa2a2c4 + 1ea1a8f commit c81ffca

File tree

22 files changed

+3480
-35
lines changed

22 files changed

+3480
-35
lines changed

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
1-
all: template-coq checker
1+
all: template-coq checker extraction
22

33
.PHONY: all template-coq checker install html clean mrproper .merlin test-suite translations
44

55
install:
66
$(MAKE) -C template-coq install
77
$(MAKE) -C checker install
8+
$(MAKE) -C extraction install
89

910
html: all
1011
$(MAKE) -C template-coq html
12+
$(MAKE) -C extraction html
1113
mv template-coq/html/*.html html
1214
rm template-coq/html/coqdoc.css
1315
rm -d template-coq/html
1416

1517
clean:
1618
$(MAKE) -C template-coq clean
19+
$(MAKE) -C extraction clean
1720
$(MAKE) -C checker clean
1821
$(MAKE) -C test-suite clean
1922
$(MAKE) -C translations clean
2023

2124
mrproper:
2225
$(MAKE) -C template-coq mrproper
26+
$(MAKE) -C extraction mrproper
2327
$(MAKE) -C checker mrproper
2428

2529
.merlin:
@@ -29,6 +33,9 @@ mrproper:
2933
template-coq:
3034
$(MAKE) -C template-coq
3135

36+
extraction: template-coq
37+
$(MAKE) -C extraction
38+
3239
checker: template-coq
3340
./movefiles.sh
3441
$(MAKE) -C checker

0 commit comments

Comments
 (0)