cadquery/notebook_nueva/Makefile

14 lines
201 B
Makefile
Raw Normal View History

2023-04-15 18:22:44 -03:00
STL_FILES = base.stl hinged_lid.stl simple_lid.stl tandy_lid.stl
all: $(STL_FILES) lint
2023-04-15 18:22:44 -03:00
%.stl: %.py dimensions.py utils.py components/*py
2023-04-15 18:59:08 -03:00
python $<
lint: .lint
.lint: **.py
2023-04-15 18:59:08 -03:00
flake8
touch .lint