Skip to content

Commit

Permalink
Merge pull request #25 from Template-Coq/wcbveval
Browse files Browse the repository at this point in the history
Weak call-by-value evaluation definition
  • Loading branch information
mattam82 authored Aug 8, 2018
2 parents aa2a2c4 + 1ea1a8f commit c81ffca
Show file tree
Hide file tree
Showing 22 changed files with 3,480 additions and 35 deletions.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
all: template-coq checker
all: template-coq checker extraction

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

install:
$(MAKE) -C template-coq install
$(MAKE) -C checker install
$(MAKE) -C extraction install

html: all
$(MAKE) -C template-coq html
$(MAKE) -C extraction html
mv template-coq/html/*.html html
rm template-coq/html/coqdoc.css
rm -d template-coq/html

clean:
$(MAKE) -C template-coq clean
$(MAKE) -C extraction clean
$(MAKE) -C checker clean
$(MAKE) -C test-suite clean
$(MAKE) -C translations clean

mrproper:
$(MAKE) -C template-coq mrproper
$(MAKE) -C extraction mrproper
$(MAKE) -C checker mrproper

.merlin:
Expand All @@ -29,6 +33,9 @@ mrproper:
template-coq:
$(MAKE) -C template-coq

extraction: template-coq
$(MAKE) -C extraction

checker: template-coq
./movefiles.sh
$(MAKE) -C checker
Expand Down
Loading

0 comments on commit c81ffca

Please sign in to comment.