File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2,27 +2,27 @@ PROJECT_NAME=coq-ext-lib
22
33all : theories examples
44
5- theories :
6- $(MAKE ) -C theories
5+ theories : Makefile.coq
6+ $(MAKE ) -f Makefile.coq
77
8- install :
9- $(MAKE ) -C theories install
8+ Makefile.coq :
9+ coq_makefile -f _CoqProject -o Makefile.coq
10+
11+ install : Makefile.coq
12+ $(MAKE ) -f Makefile.coq install
1013
1114examples : theories
1215 $(MAKE ) -C examples
1316
1417clean :
15- $(MAKE ) -C theories clean
18+ $(MAKE ) -f Makefile.coq clean
1619 $(MAKE ) -C examples clean
1720
1821uninstall :
19- $(MAKE ) -C theories uninstall
22+ $(MAKE ) -f Makefile.coq uninstall
2023
2124
2225dist :
2326 @ git archive --prefix coq-ext-lib/ HEAD -o $(PROJECT_NAME ) .tgz
2427
25- .dir-locals.el : tools/dir-locals.el
26- @ sed s,PWD,$(shell pwd -P) ,g tools/dir-locals.el > .dir-locals.el
27-
2828.PHONY : all clean dist theories examples
You can’t perform that action at this time.
0 commit comments