mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 02:02:22 +00:00
16 lines
327 B
Makefile
16 lines
327 B
Makefile
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
|