model-a/Makefile

15 lines
235 B
Makefile
Raw Normal View History

2023-04-15 23:35:47 +00:00
STL_FILES = base.stl hinged_lid.stl simple_lid.stl tandy_lid.stl
all: $(STL_FILES) lint
%.stl: %.py dimensions.py utils.py components/*py
python $<
lint: .lint
2023-04-16 00:14:36 +00:00
.lint: *.py components/*.py
2023-04-15 23:35:47 +00:00
flake8
2023-04-16 00:14:36 +00:00
black *.py */*.py
2023-04-15 23:35:47 +00:00
touch .lint