Skip to content

Commit

Permalink
Merge branch 'master' of github.com:plclub/metalib
Browse files Browse the repository at this point in the history
  • Loading branch information
sweirich committed May 27, 2020
2 parents e99acf4 + 04b7aea commit 597fd7d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ defaults: &defaults
command: opam install .
- run:
name: Fsub
command: make -C Fsub
command: make -k -C Fsub
- run:
name: Tutorial
command: make -C Tutorial
command: make -k -C Tutorial
- run:
name: Stlc
command: make -C Stlc
command: make -k -C Stlc -B

jobs:
coq.8.10:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.v.d
.coqdeps.d
*.vo*
*.v-e
*.glob
.*.aux
*.v.d
Expand Down
3 changes: 1 addition & 2 deletions Stlc/Connect.v
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@

Require Import String.
Require Import Metalib.Metatheory.
Require Import Stlc.Definitions.
Require Import Stlc.Lemmas.

Require Import Stlc.Nominal.
Require Import Stlc.Lemmas.

Import StlcNotations.

Expand Down
4 changes: 2 additions & 2 deletions Stlc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ zipclean:

clean: Stlc.mk paperclean zipclean
make -f Stlc.mk clean
rm -f Stlc.mk
rm -f *.cmi *.cmo coqsplit
rm -f Stlc.mk*
rm -f *.cmi *.cmo coqsplit *_full* *_sol* *.v-e


coq: $(GENCOQ) Stlc.mk
Expand Down

0 comments on commit 597fd7d

Please sign in to comment.