model-a/Makefile

15 lines
235 B
Makefile
Raw Normal View History

2023-04-15 20:35:47 -03: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-15 21:14:36 -03:00
.lint: *.py components/*.py
black *.py */*.py
2023-04-16 22:45:47 -03:00
flake8
2023-04-15 20:35:47 -03:00
touch .lint