model-a/Makefile

14 lines
201 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
.lint: **.py
flake8
touch .lint