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