Skip to content
Snippets Groups Projects
Commit 58315027 authored by Janno's avatar Janno
Browse files

Add static Makefile for CI

parent 99b0904b
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -15,4 +15,4 @@ ...@@ -15,4 +15,4 @@
.#* .#*
auto auto
*.fmt *.fmt
coq/*/Makefile coq/*/Makefile.coq
# 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
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