11 lines
162 B
Makefile
11 lines
162 B
Makefile
all: retopo_tools_addon.zip
|
|
|
|
%.zip: *.py
|
|
mkdir retop_tools
|
|
cp *.py retop_tools/
|
|
zip -r $@ retop_tools/
|
|
rm -rf retop_tools/
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
${RM} *.zip
|