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

update build system

parent 7ae77142
No related branches found
No related tags found
No related merge requests found
Pipeline #35390 passed
# Default target
all: Makefile.coq
+@make -f Makefile.coq all
.PHONY: all
# Permit local customization
-include Makefile.local
# Forward most targets to Coq makefile (with some trick to make this phony)
%: Makefile.coq phony
@#echo "Forwarding $@"
+@make -f Makefile.coq $@
all: Makefile.coq
+@make -f Makefile.coq all
.PHONY: all
phony: ;
.PHONY: phony
clean: Makefile.coq
+@make -f Makefile.coq clean
find theories tests exercises solutions \( -name "*.d" -o -name "*.vo" -o -name "*.vo[sk]" -o -name "*.aux" -o -name "*.cache" -o -name "*.glob" -o -name "*.vio" \) -print -delete || true
rm -f Makefile.coq .lia.cache
rm -f Makefile.coq .lia.cache build-dep
.PHONY: clean
# Create Coq Makefile.
......@@ -20,27 +24,28 @@ Makefile.coq: _CoqProject Makefile
"$(COQBIN)coq_makefile" -f _CoqProject -o Makefile.coq $(EXTRA_COQFILES)
# Install build-dependencies
build-dep/opam: opam Makefile
@echo "# Creating build-dep package."
OPAMFILES=$(wildcard *.opam)
BUILDDEPFILES=$(addsuffix -build-dep.opam, $(addprefix build-dep/,$(basename $(OPAMFILES))))
build-dep/%-build-dep.opam: %.opam Makefile
@echo "# Creating build-dep package for $<."
@mkdir -p build-dep
@sed <opam -E 's/^(build|install|remove):.*/\1: []/; s/^name: *"(.*)" */name: "\1-builddep"/' >build-dep/opam
@fgrep builddep build-dep/opam >/dev/null || (echo "sed failed to fix the package name" && exit 1) # sanity check
@sed <$< -E 's/^(build|install|remove):.*/\1: []/; s/^name: *"(.*)" */name: "\1-build-dep"/; s/"(.*)"(.*= *version.*)$$/"\1-build-dep"\2/;' >$@
@fgrep build-dep $@ >/dev/null || (echo "sed failed to fix the package name" && exit 1) # sanity check
build-dep-opamfiles: $(BUILDDEPFILES)
.PHONY: build-dep-opamfiles
build-dep: build-dep/opam phony
build-dep: build-dep-opamfiles
@# We want opam to not just instal the build-deps now, but to also keep satisfying these
@# constraints. Otherwise, `opam upgrade` may well update some packages to versions
@# that are incompatible with our build requirements.
@# To achieve this, we create a fake opam package that has our build-dependencies as
@# dependencies, but does not actually install anything itself.
@echo "# Installing build-dep package."
@opam install $(OPAMFLAGS) build-dep/
@opam install $(OPAMFLAGS) $(BUILDDEPFILES)
.PHONY: build-dep
# Some files that do *not* need to be forwarded to Makefile.coq
Makefile: ;
_CoqProject: ;
opam: ;
Makefile.local: ;
# Phony wildcard targets
phony: ;
.PHONY: phony
# Some files that do *not* need to be forwarded to Makefile.coq.
# ("::" lets Makefile.local overwrite this.)
Makefile Makefile.local _CoqProject $(OPAMFILES):: ;
File moved
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