Skip to content

Commit c076bad

Browse files
readme: use make commands for consistency
Part of #67
1 parent a717531 commit c076bad

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ Using `easy_install`::
1414

1515
You can also download the source tarball and install the package using distutils script::
1616

17-
# python setup.py install
17+
# make install

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
.PHONY: test
1+
.PHONY: install test
2+
install:
3+
python setup.py install
24
test:
35
python setup.py test
46
testdata:

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can also download zip archive, unpack it and run:
3333

3434
.. code-block:: bash
3535
36-
$ python setup.py install
36+
$ make install
3737
3838
Development version
3939
^^^^^^^^^^^^^^^^^^^
@@ -91,7 +91,7 @@ On Linux:
9191

9292
.. code-block:: bash
9393
94-
$ python setup.py test
94+
$ make test
9595
9696
On Windows:
9797

@@ -103,7 +103,7 @@ On Windows:
103103
* Set the following environment variables:
104104
* ``REMOTE_TARANTOOL_HOST=...``,
105105
* ``REMOTE_TARANTOOL_CONSOLE_PORT=3302``.
106-
* Run ``python setup.py test``.
106+
* Run ``make test``.
107107

108108
Build docs
109109
^^^^^^^^^^

0 commit comments

Comments
 (0)