Package IFCSverchok

This commit is contained in:
Dion Moult
2020-10-25 18:17:10 +11:00
parent b5d43b1d58
commit 5df723b9db
2 changed files with 17 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
VERSION:=`date '+%y%m%d'`
.PHONY: dist
dist:
rm -rf dist
mkdir -p dist/ifcsverchok
cp -r ./*.py dist/ifcsverchok/
cp -r ./nodes dist/ifcsverchok/
cd dist/ifcsverchok && sed -i "s/999999/$(VERSION)/" __init__.py
cd dist && zip -r ifcsverchok-$(VERSION).zip ./*
rm -rf dist/ifcsverchok
.PHONY: clean
clean:
rm -rf dist