aboutsummaryrefslogtreecommitdiff
path: root/debug/Makefile
blob: 79e89cbe397d912d024a26cdb09ddd081491c02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
RISCV_SIM ?= spike
XLEN ?= 64

src_dir ?= .
GDBSERVER_PY = $(src_dir)/gdbserver.py

default:	spike$(XLEN).log

all:	pylint spike32.log spike64.log

pylint:
	pylint --rcfile=pylint.rc *.py

%.log:
	$(GDBSERVER_PY) --isolate --$(subst .log,,$@) \
	    > $@ 2>&1 || (sed s/^/$@:\ / $@ && false)

clean:
	rm -f *.log *.pyc