File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
default_target : all
2
2
3
- .PHONY : update_all clone_all coqutil coq-record-update riscv-coq bedrock2_noex bedrock2_ex compiler_noex compiler_ex kami processor end2end all clean_coqutil clean_coq-record-update clean_riscv-coq clean_bedrock2 clean_compiler clean_kami clean_processor clean_end2end clean_manglenames clean install_coqutil install_coq-record-update install_kami install_riscv-coq install_bedrock2 install_compiler install_processor install_end2end install
3
+ .PHONY : update_all clone_all coqutil coq-record-update riscv-coq bedrock2_noex bedrock2_ex compiler_noex compiler_ex kami processor end2end all clean_coqutil clean_coq-record-update clean_riscv-coq clean_bedrock2 clean_compiler clean_kami clean_processor clean_end2end clean_manglenames clean install_coqutil install_coq-record-update install_kami install_riscv-coq install_bedrock2 install_bedrock2_ex install_bedrock2_noex install_compiler install_processor install_end2end install
4
4
5
5
clone_all :
6
6
git submodule update --init --recursive
@@ -110,6 +110,12 @@ clean_bedrock2:
110
110
install_bedrock2 :
111
111
$(MAKE ) -C $(ABS_ROOT_DIR ) /bedrock2 install
112
112
113
+ install_bedrock2_noex :
114
+ $(MAKE ) -C $(ABS_ROOT_DIR ) /bedrock2 install_noex
115
+
116
+ install_bedrock2_ex :
117
+ $(MAKE ) -C $(ABS_ROOT_DIR ) /bedrock2 install_ex
118
+
113
119
compiler_noex :
114
120
$(MAKE ) -C $(ABS_ROOT_DIR ) /compiler noex
115
121
Original file line number Diff line number Diff line change 1
1
default_target : all
2
2
3
- .PHONY : clean force all noex ex install test
3
+ .PHONY : clean force all noex ex install_noex install_ex install test
4
4
5
5
# absolute paths so that emacs compile mode knows where to find error
6
6
# use cygpath -m because Coq on Windows cannot handle cygwin paths
@@ -94,5 +94,10 @@ clean:: Makefile.coq.noex Makefile.coq.ex
94
94
find . -type f \( -name ' *~' -o -name ' *.aux' -o -name ' .lia.cache' -o -name ' .nia.cache' \) -delete
95
95
rm -f Makefile.coq.noex Makefile.coq.noex.conf Makefile.coq.ex Makefile.coq.ex.conf _CoqProject special/BytedumpTest.out
96
96
97
- install ::
97
+ install_noex ::
98
98
$(MAKE ) -f Makefile.coq.noex install
99
+
100
+ install_ex ::
101
+ $(MAKE ) -f Makefile.coq.ex install
102
+
103
+ install :: install_noex install_ex
You can’t perform that action at this time.
0 commit comments