Skip to content

Commit 1b98e49

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

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Diff for: INSTALL

+1-1
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

Diff for: Makefile

+3-1
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:

Diff for: README.rst

+3-3
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)