summaryrefslogtreecommitdiff
path: root/extras/Makefile
blob: 531fae63fcfb510b1a0b543c3eae4950626990d9 (plain)
1
2
3
4
5
6
7
8
9
all: sdist bdist_wheel

sdist:
	python setup.py sdist

bdist_wheel:
	python setup.py bdist_wheel --skip-scripts

.PHONY : sdist bdist_wheel