Arthur de Jong

Open Source / Free Software developer

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

sdist:
	python setup.py sdist

bdist_wheel:
	python -c "import setuptools;__file__='setup.py';exec(compile(open(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))" bdist_wheel

.PHONY : sdist bdist_wheel