mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-10-01 01:45:38 -04:00
23 lines
665 B
Makefile
23 lines
665 B
Makefile
SHELL := /bin/bash
|
|
|
|
PYTHON_FILES = \
|
|
usb_test.py \
|
|
icenvcm.py \
|
|
icebin2nvcm.py
|
|
|
|
lint:
|
|
autopep8 --in-place --max-line-length 70 --aggressive --aggressive ${PYTHON_FILES}
|
|
mypy --disallow-untyped-defs ${PYTHON_FILES}
|
|
pycodestyle --max-line-length 70 ${PYTHON_FILES}
|
|
|
|
# Check that the NVCM generator gives a correct output for a known binary
|
|
verify-nvcm:
|
|
./icebin2nvcm.py nvcm_test/application_fpga.bin verify.nvcm
|
|
cmp verify.nvcm nvcm_test/application_fpga.nvcm
|
|
|
|
verify:
|
|
time ./icenvcm.py --verify nvcm_test/application_fpga.bin
|
|
|
|
program:
|
|
time ./icenvcm.py --my-design-is-good-enough --write ../application_fpga/application_fpga.bin --ignore-blank
|