Skip to content
Snippets Groups Projects
Commit 66904606 authored by Ralf Jung's avatar Ralf Jung
Browse files

hack makefile to fix coqchk invocation

parent 6405ebbc
No related branches found
No related tags found
No related merge requests found
# Makefile originally taken from coq-club # Makefile originally taken from coq-club
%: Makefile.coq
+make -f Makefile.coq $@
all: Makefile.coq all: Makefile.coq
+make -f Makefile.coq all +make -f Makefile.coq all
...@@ -6,10 +10,11 @@ clean: Makefile.coq ...@@ -6,10 +10,11 @@ clean: Makefile.coq
+make -f Makefile.coq clean +make -f Makefile.coq clean
rm -f Makefile.coq rm -f Makefile.coq
Makefile.coq: _CoqProject Makefile.coq: _CoqProject Makefile
coq_makefile -f _CoqProject -o Makefile.coq coq_makefile -f _CoqProject | sed 's/$$(COQCHK) $$(COQCHKFLAGS) $$(COQLIBS)/$$(COQCHK) $$(COQCHKFLAGS) $$(subst -Q,-R,$$(COQLIBS))/' > Makefile.coq
%: Makefile.coq _CoqProject: ;
+make -f Makefile.coq $@
Makefile: ;
.PHONY: all clean .PHONY: all clean
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment