mirror of
https://github.com/mhinz/neovim-remote
synced 2024-11-11 13:10:34 +00:00
13 lines
185 B
Makefile
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
|