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

comment Makefile (by Zhen)

parent 71efeff7
No related branches found
No related tags found
No related merge requests found
Pipeline #
%: Makefile.coq phony
+@make -f Makefile.coq $@
# Compile this project
all: Makefile.coq
+@make -f Makefile.coq all
......@@ -11,11 +12,13 @@ clean: Makefile.coq
Makefile.coq: _CoqProject Makefile
coq_makefile -f _CoqProject | sed 's/$$(COQCHK) $$(COQCHKFLAGS) $$(COQLIBS)/$$(COQCHK) $$(COQCHKFLAGS) $$(subst -Q,-R,$$(COQLIBS))/' > Makefile.coq
iris-local: clean
git submodule update --init iris
ln -nsf iris iris-enabled
+make -C iris -f Makefile
# Use local Iris dependency
iris-local:
git submodule update --init iris # If not initialized, then initialize; If not updated with this remote, then update
ln -nsf iris iris-enabled # If not linked, then link
+make -C iris -f Makefile # If not built, then build
# Use system-installed Iris dependency
iris-system: clean
rm -f iris-enabled
......
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