File tree 1 file changed +8
-11
lines changed
1 file changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,20 @@ REGR := regr
4
4
REGR-DIR := $(dir $(DV_AZADI ) /$(REGR ) /)
5
5
gen-regr := $(REGR-DIR )
6
6
7
+ all : simulate
8
+
9
+ .PHONY : all
10
+
7
11
$(gen-regr ) : % :
8
12
mkdir -p $@
9
13
10
- .PHONY : all
11
- all : env verify
14
+ setup : env verify
12
15
13
- .PHONY : env
14
16
env : google_riscv-dv azadi-new
15
17
16
18
$(DV_AZADI ) /google_riscv-dv :
17
19
git clone https://github.com/google/riscv-dv.git $(DV_AZADI ) /google_riscv-dv
18
20
19
- .PHONY : google_riscv-dv
20
21
google_riscv-dv : check-env $(DV_AZADI ) /google_riscv-dv
21
22
cd $(DV_AZADI ) /google_riscv-dv && \
22
23
git checkout master && git pull && \
@@ -26,22 +27,18 @@ google_riscv-dv: check-env $(DV_AZADI)/google_riscv-dv
26
27
$(DV_AZADI ) /azadi-new :
27
28
git clone https://github.com/merledu/azadi-new.git $(DV_AZADI ) /azadi-new
28
29
29
- .PHONY : azadi-new
30
30
azadi-new : check-env $(DV_AZADI ) /azadi-new
31
31
cd $(DV_AZADI ) /azadi-new && \
32
32
git checkout main && git pull && \
33
33
git checkout -qf $(AZADI_COMMIT )
34
34
35
- .PHONY : verify
36
35
verify : $(gen-regr )
37
36
cd $(DV_AZADI ) /regr && \
38
- make -f $(DV_AZADI ) /azadi-verify/env/core/vendor/core_ibex/Makefile \
39
- TEST=riscv_arithmetic_basic_test \
40
- ITERATIONS=1
37
+ make -f $(DV_AZADI ) /azadi-verify/env/core/vendor/core_ibex/Makefile TEST=riscv_arithmetic_basic_test ITERATIONS=1
41
38
39
+ simulate :
40
+ make -f $(DV_AZADI ) /azadi-verify/env/core/vendor/core_ibex/Makefile
42
41
43
- # echo "verify"
44
- # $(info $$DV_AZADI is [${DV_AZADI}])
45
42
46
43
check-env :
47
44
ifndef DV_AZADI
You can’t perform that action at this time.
0 commit comments