-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathMakefile
40 lines (27 loc) · 897 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
init:
git submodule update --init
cd rocket-chip && git submodule update --init hardfloat cde
compile:
mill -i HuanCun.compile
test:
mill -i HuanCun.test.test
test-top-l2:
mill -i HuanCun.test.runMain huancun.TestTop_L2 -td build --target systemverilog --split-verilog
test-top-l2standalone:
mill -i HuanCun.test.runMain huancun.TestTop_L2_Standalone -td build --target systemverilog --split-verilog
test-top-l2l3:
mill -i HuanCun.test.runMain huancun.TestTop_L2L3 -td build --target systemverilog --split-verilog
test-top-fullsys:
mill -i HuanCun.test.runMain huancun.TestTop_FullSys -td build --target systemverilog --split-verilog
basic-test:
mill -i HuanCun.test.testOnly -o -s huancun.ConnectionTester
bsp:
mill -i mill.bsp.BSP/install
idea:
mill -i mill.scalalib.GenIdea/idea
clean:
rm -rf ./build
reformat:
mill -i __.reformat
checkformat:
mill -i __.checkFormat