blenderings/retopo_tools/Makefile

12 lines
162 B
Makefile
Raw Normal View History

2022-12-22 13:35:06 -07:00
all: retopo_tools_addon.zip
%.zip: *.py
2023-04-08 18:26:35 -06:00
mkdir retop_tools
cp *.py retop_tools/
zip -r $@ retop_tools/
rm -rf retop_tools/
2022-12-22 13:35:06 -07:00
.PHONY: clean
clean:
${RM} *.zip