2
0
mirror of https://github.com/mhinz/neovim-remote synced 2024-11-11 13:10:34 +00:00
neovim-remote/Makefile
2017-07-26 01:52:02 +02:00

13 lines
185 B
Makefile

default: install
install:
python3 setup.py install
upload: clean
python3 setup.py sdist bdist_wheel upload
clean:
rm -rf build dist neovim_remote.egg-info
.PHONY: install upload