mirror of
https://github.com/Hopiu/django.git
synced 2026-03-19 15:30:24 +00:00
9 lines
239 B
Makefile
9 lines
239 B
Makefile
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
|