-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathMakefile
60 lines (41 loc) · 1.54 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
init:
git submodule update --init
cd rocket-chip && git submodule update --init hardfloat cde
compile:
mill -i CoupledL2.compile
test-top-l2:
mill -i CoupledL2.test.runMain coupledL2.TestTop_L2 -td build
test-top-l2standalone:
mill -i CoupledL2.test.runMain coupledL2.TestTop_L2_Standalone -td build
test-top-l2l3:
mill -i CoupledL2.test.runMain coupledL2.TestTop_L2L3 -td build
test-top-l2l3l2:
mill -i CoupledL2.test.runMain coupledL2.TestTop_L2L3L2 -td build
test-top-fullsys:
mill -i CoupledL2.test.runMain coupledL2.TestTop_fullSys -td build
test-top-chi-dualcore-0ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_DualCore_0UL -td build
test-top-chi-dualcore-2ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_DualCore_2UL -td build
test-top-chi-quadcore-0ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_QuadCore_0UL -td build
test-top-chi-quadcore-2ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_QuadCore_2UL -td build
test-top-chi-octacore-0ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_OctaCore_0UL -td build
test-top-chi-octacore-2ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_OctaCore_2UL -td build
test-top-chi-hexacore-0ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_HexaCore_0UL -td build
test-top-chi-hexacore-2ul:
mill -i CoupledL2.test.runMain coupledL2.TestTop_CHI_HexaCore_2UL -td build
clean:
rm -rf ./build
bsp:
mill -i mill.bsp.BSP/install
idea:
mill -i mill.scalalib.GenIdea/idea
reformat:
mill -i __.reformat
checkformat:
mill -i __.checkFormat