Start refactoring to unscoped syntax
This commit is contained in:
parent
398a18d770
commit
9c17ec5cac
6 changed files with 994 additions and 1343 deletions
8
Makefile
8
Makefile
|
@ -6,7 +6,7 @@ theories: $(COQMAKEFILE) FORCE
|
|||
validate: $(COQMAKEFILE) FORCE
|
||||
$(MAKE) -f $(COQMAKEFILE) validate
|
||||
|
||||
$(COQMAKEFILE) : theories/Autosubst2/syntax.v theories/Autosubst2/core.v theories/Autosubst2/fintype.v
|
||||
$(COQMAKEFILE) : theories/Autosubst2/syntax.v theories/Autosubst2/core.v theories/Autosubst2/unscoped.v
|
||||
$(COQBIN)coq_makefile -f _CoqProject -o $(COQMAKEFILE)
|
||||
|
||||
install: $(COQMAKEFILE)
|
||||
|
@ -15,13 +15,13 @@ install: $(COQMAKEFILE)
|
|||
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
|
||||
theories/Autosubst2/syntax.v theories/Autosubst2/core.v theories/Autosubst2/unscoped.v : syntax.sig
|
||||
autosubst -f -v ge813 -s ucoq -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
|
||||
rm -f theories/Autosubst2/syntax.v theories/Autosubst2/core.v theories/Autosubst2/fintype.v theories/Autosubst2/unscoped.v
|
||||
|
||||
FORCE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue