Add a mostly finished eta postponement proof
This commit is contained in:
commit
2f04bcc75c
8 changed files with 4231 additions and 0 deletions
27
Makefile
Normal file
27
Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
COQMAKEFILE=CoqMakefile
|
||||
|
||||
theories: $(COQMAKEFILE) FORCE
|
||||
$(MAKE) -f $(COQMAKEFILE)
|
||||
|
||||
validate: $(COQMAKEFILE) FORCE
|
||||
$(MAKE) -f $(COQMAKEFILE) validate
|
||||
|
||||
$(COQMAKEFILE) : theories/Autosubst2/syntax.v theories/Autosubst2/core.v theories/Autosubst2/fintype.v
|
||||
$(COQBIN)coq_makefile -f _CoqProject -o $(COQMAKEFILE)
|
||||
|
||||
install: $(COQMAKEFILE)
|
||||
$(MAKE) -f $^ install
|
||||
|
||||
uninstall: $(COQMAKEFILE)
|
||||
$(MAKE) -f $(COQMAKEFILE) uninstall
|
||||
|
||||
theories/Autosubst2/syntax.v theories/Autosubst2/core.v theories/Autosubst2/fintype.v : syntax.sig
|
||||
autosubst -f -v ge813 -s coq -o theories/Autosubst2/syntax.v syntax.sig
|
||||
|
||||
.PHONY: clean FORCE
|
||||
|
||||
clean:
|
||||
test ! -f $(COQMAKEFILE) || ( $(MAKE) -f $(COQMAKEFILE) clean && rm $(COQMAKEFILE) )
|
||||
rm -f theories/Autosubst2/syntax.v theories/Autosubst2/core.v theories/Autosubst2/fintype.v
|
||||
|
||||
FORCE:
|
Loading…
Add table
Add a link
Reference in a new issue