Skip to content

Commit 42db0b1

Browse files
committed
Add bSDD makefile
1 parent 1248c89 commit 42db0b1

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

src/bsdd/Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
VERSION:=`date '+%y%m%d'`
2+
SED:=sed -i
3+
ifeq ($(UNAME_S),Darwin)
4+
SED:=sed -i '' -e
5+
endif
6+
7+
.PHONY: test
8+
test:
9+
pytest -p no:pytest-blender test
10+
11+
.PHONY: dist
12+
dist:
13+
rm -rf dist
14+
$(SED) "s/999999/$(VERSION)/" pyproject.toml
15+
python -m build
16+
$(SED) "s/$(VERSION)/999999/" pyproject.toml

0 commit comments

Comments
 (0)