Skip to content

Commit b5e98ea

Browse files
author
Kevin Kirsche
committed
Add RST text and update package to use it
1 parent 2d2fb9f commit b5e98ea

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

Makefile

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,23 @@ clean-virtual-environment:
1111
lint:
1212
flake8 --exclude=.tox
1313

14-
build-sdist: clean-build
14+
build-readme:
15+
/usr/bin/env pandoc -s -r markdown -w rst README.md -o README.rst
16+
17+
build-sdist: clean-build build-readme
1518
/usr/bin/env python setup.py sdist
1619

17-
build-wheel: clean-build
20+
build-wheel: clean-build build-readme
1821
pip install -U wheel
1922
/usr/bin/env python setup.py bdist_wheel --universal
2023

21-
wheel: build-wheel build-readme
22-
23-
build-rpm: clean-build
24+
build-rpm: clean-build build-readme
2425
pip install -U wheel
2526
/usr/bin/env python setup.py bdist --format=rpm
2627

27-
build-readme:
28-
/usr/bin/env pandoc -s -r markdown -w rst README.md -o README.rst
29-
30-
release: build-wheel build-readme
28+
release: build-wheel
3129

32-
wheel: build-wheel build-readme
30+
wheel: build-wheel
3331

3432
virtual-environment:
3533
/usr/bin/env python -m virtualenv venv

0 commit comments

Comments
 (0)