-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
46 lines (34 loc) · 918 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
41
42
43
44
45
46
export TL ?= python
export WAVE ?= true
export VERBOSE ?= false
export EXAMPLE ?= false
export TARGET
default:
@echo "Usage"
@echo " test: run tests, use TEST=test_name specify test folder in tests, default test all tests"
@echo " uftb: build uFTB DUT module"
@echo " tage_sc: build TAGE_SC DUT module"
@echo " ftb: build FTB DUT module"
@echo " ras: build RAS DUT module"
@echo " ittage: build ITTAGE DUT module"
@echo " all: build all DUTs"
@echo "Make examples:"
@echo " make test TEST=uFTB-raw"
@echo " make uftb"
test:
make -f tests/Makefile
uftb:
make -f ./mk/uFTB.mk uftb
tage_sc:
make -f ./mk/Tage.mk tage_sc
ftb:
make -f ./mk/FTB.mk ftb
ras:
make -f ./mk/RAS.mk ras
ittage:
make -f ./mk/ITTAGE.mk ittage
bputop:
make -f ./mk/BPUTop.mk BPUTop
filter:
cat log|grep Cannot |awk '{print $8}'| sort| uniq|tr -d "'"
all: uftb tage_sc ftb ras ittage