Commit 818762e 1 parent c8c1734 commit 818762e Copy full SHA for 818762e
File tree 2 files changed +23
-2
lines changed
2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
-arg -w -arg -notation-overridden
4
4
5
- .
5
+ ./CtxEqLemmas.v
6
+ ./CtxEquiv.v
7
+ ./Elaborator.v
8
+ ./LibTactics.v
9
+ ./Parser.v
10
+ ./ParserExtraction.v
11
+ ./Presup.v
12
+ ./PresupLemmas.v
13
+ ./Relations.v
14
+ ./Syntax.v
15
+ ./System.v
Original file line number Diff line number Diff line change
1
+ empty :=
2
+ space := $(empty ) $(empty )
1
3
COQMAKEFILE := makefile.coq
4
+ COQFILES := $(sort $(wildcard ./* .v) $(patsubst % .vy,% .v,$(wildcard ./* .vy) ) )
2
5
3
6
.PHONY : all
4
7
all : $(COQMAKEFILE )
@@ -13,4 +16,12 @@ Parser.v: Parser.vy
13
16
menhir --coq " $? "
14
17
15
18
$(COQMAKEFILE ) : _CoqProject
16
- coq_makefile -f " $? " -o " $@ "
19
+ coq_makefile -f _CoqProject -o " $@ "
20
+
21
+ .PHONY : update_CoqProject
22
+ update_CoqProject :
23
+ (echo " -Q . Mcltt" ; \
24
+ echo ""; \
25
+ echo "-arg -w -arg -notation-overridden"; \
26
+ echo ""; \
27
+ echo -e "$(subst $(space),\n,$(COQFILES))") > _CoqProject
You can’t perform that action at this time.
0 commit comments