diff --git a/Makefile b/Makefile index 331cb03f841de9ffc5711e876acd402e4816fb87..163ff30fbfb4a5d31365afc12ac48aa56b027ef0 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +# Permit local customization +-include Makefile.local + # Forward most targets to Coq makefile (with some trick to make this phony) %: Makefile.coq phony +@make -f Makefile.coq $@ @@ -14,7 +17,7 @@ clean: Makefile.coq # Create Coq Makefile. Makefile.coq: _CoqProject Makefile - "$(COQBIN)coq_makefile" -f _CoqProject -o Makefile.coq + "$(COQBIN)coq_makefile" -f _CoqProject -o Makefile.coq $(EXTRA_COQFILES) # Install build-dependencies build-dep/opam: opam Makefile @@ -36,6 +39,7 @@ build-dep: build-dep/opam phony Makefile: ; _CoqProject: ; opam: ; +Makefile.local: ; # Phony wildcard targets phony: ;