Moved specific keyboard sizes and positions to dimensions.py

This commit is contained in:
2023-04-15 19:21:03 -03:00
parent 158d7bfd87
commit 7217c7bc3b
7 changed files with 73 additions and 58 deletions

View File

@ -1,11 +1,13 @@
STL_FILES = base.stl hinged_lid.stl simple_lid.stl tandy_lid.stl
all: $(STL_FILES) .lint
all: $(STL_FILES) lint
%.stl: %.py dimensions.py utils.py
%.stl: %.py dimensions.py utils.py components/*py
python $<
.lint: *.py
lint: .lint
.lint: **.py
flake8
touch .lint