Commit 506913cd authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

Stole the Makefile for building packages from master.

parent e61e20e4
Loading
Loading
Loading
Loading

extras/Makefile

0 → 100644
+9 −0
Original line number Diff line number Diff line
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