mirror of
https://github.com/mhinz/neovim-remote
synced 2024-11-13 07:10:27 +00:00
14 lines
199 B
Makefile
14 lines
199 B
Makefile
default: install
|
|
|
|
install:
|
|
python3 setup.py install
|
|
|
|
upload: clean
|
|
python3 setup.py sdist bdist_wheel
|
|
twine upload dist/*
|
|
|
|
clean:
|
|
rm -rf build dist neovim_remote.egg-info
|
|
|
|
.PHONY: install upload
|