From e5bd97f4ad08b277057a23094f2cc76abbeeaddb Mon Sep 17 00:00:00 2001 From: Son Ho Date: Mon, 14 Nov 2022 14:05:26 +0100 Subject: Add a `-use-fuel` option --- tests/coq/Makefile.template | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/coq/Makefile.template (limited to 'tests/coq/Makefile.template') diff --git a/tests/coq/Makefile.template b/tests/coq/Makefile.template new file mode 100644 index 00000000..ff1ccd39 --- /dev/null +++ b/tests/coq/Makefile.template @@ -0,0 +1,22 @@ +# Makefile originally taken from coq-club + +%: Makefile.coq phony + +make -f Makefile.coq $@ + +all: Makefile.coq + +make -f Makefile.coq all + +clean: Makefile.coq + +make -f Makefile.coq clean + rm -f Makefile.coq + +Makefile.coq: _CoqProject Makefile + coq_makefile -f _CoqProject | sed 's/$$(COQCHK) $$(COQCHKFLAGS) $$(COQLIBS)/$$(COQCHK) $$(COQCHKFLAGS) $$(subst -Q,-R,$$(COQLIBS))/' > Makefile.coq + +_CoqProject: ; + +Makefile: ; + +phony: ; + +.PHONY: all clean phony -- cgit v1.2.3