Skip to content
Snippets Groups Projects
Makefile 1.98 KiB
Newer Older
Ralf Jung's avatar
Ralf Jung committed
# Forward most targets to Coq makefile (with some trick to make this phony)
%: Makefile.coq phony
	+@make -f Makefile.coq $@
all: Makefile.coq
	+@make -f Makefile.coq all
Ralf Jung's avatar
Ralf Jung committed
.PHONY: all

clean: Makefile.coq
	+@make -f Makefile.coq clean
	find theories \( -name "*.v.d" -o -name "*.vo" -o -name "*.aux" -o -name "*.cache" -o -name "*.glob" -o -name "*.vio" \) -print -delete
	rm -f Makefile.coq
Ralf Jung's avatar
Ralf Jung committed
.PHONY: clean
# Create Coq Makefile. POSIX awk can't do in-place editing, but coq_makefile wants the real
# filename, so we do some file gymnastics.
Makefile.coq: _CoqProject Makefile awk.Makefile
Ralf Jung's avatar
Ralf Jung committed
	coq_makefile -f _CoqProject -o Makefile.coq
	mv Makefile.coq Makefile.coq.tmp && awk -f awk.Makefile Makefile.coq.tmp > Makefile.coq && rm Makefile.coq.tmp
Ralf Jung's avatar
Ralf Jung committed
# Install build-dependencies
Ralf Jung's avatar
Ralf Jung committed
build-dep/opam: opam Makefile
Ralf Jung's avatar
Ralf Jung committed
	# Create the build-dep package.
	@mkdir -p build-dep
Ralf Jung's avatar
Ralf Jung committed
	@sed <opam -E 's/^(build|install|remove):.*/\1: []/; s/^name: *"(.*)" */name: "\1-builddep"/' >build-dep/opam
Ralf Jung's avatar
Ralf Jung committed
	@fgrep builddep build-dep/opam >/dev/null || (echo "sed failed to fix the package name" && exit 1) # sanity check

build-dep: build-dep/opam phony
	@# 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.
Ralf Jung's avatar
Ralf Jung committed
	# Add the pin and (re)install build-dep package.
Ralf Jung's avatar
Ralf Jung committed
	@# Reinstallation is needed in case the pin already exists, but the builddep package changed.
	@BUILD_DEP_PACKAGE="$$(egrep "^name:" build-dep/opam | sed 's/^name: *"\(.*\)" */\1/')"; \
Ralf Jung's avatar
Ralf Jung committed
	  opam pin add "$$BUILD_DEP_PACKAGE".dev "$$(pwd)/build-dep" -k path $(OPAMFLAGS) && \
	  opam reinstall "$$BUILD_DEP_PACKAGE"
Ralf Jung's avatar
Ralf Jung committed
# Some files that do *not* need to be forwarded to Makefile.coq
Makefile: ;
Ralf Jung's avatar
Ralf Jung committed
_CoqProject: ;
opam: ;
Ralf Jung's avatar
Ralf Jung committed
# Phony wildcard targets
Ralf Jung's avatar
Ralf Jung committed
.PHONY: phony