mirror of
https://github.com/enjoy-digital/litescope.git
synced 2025-01-04 09:52:27 -05:00
14 lines
184 B
Makefile
14 lines
184 B
Makefile
|
COREDIR = ../../
|
||
|
PYTHON = python3
|
||
|
SERIAL ?= 2
|
||
|
|
||
|
CMD = PYTHONPATH=$(COREDIR) $(PYTHON) make.py --port $(SERIAL)
|
||
|
|
||
|
test_io:
|
||
|
$(CMD) test_io
|
||
|
|
||
|
test_la:
|
||
|
$(CMD) test_la
|
||
|
|
||
|
all: test_io test_la
|