| 1 | .PHONY: help install uninstall clean reinstall reshim |
| 2 | |
| 3 | help: |
| 4 | @echo "Shtick Makefile" |
| 5 | @echo " make install - pip install -e . && asdf reshim python" |
| 6 | @echo " make uninstall - pip uninstall shtick" |
| 7 | @echo " make clean - rm -rf **/*/*.egg-info" |
| 8 | @echo " make reshim - asdf reshim python" |
| 9 | @echo " make reinstall - Uninstall, clean, then install & reshim" |
| 10 | |
| 11 | install: |
| 12 | pip install -e . |
| 13 | asdf reshim python |
| 14 | |
| 15 | uninstall: |
| 16 | pip uninstall -y shtick |
| 17 | |
| 18 | clean: |
| 19 | rm -rf **/*/*.egg-info |
| 20 | |
| 21 | reshim: |
| 22 | asdf reshim python |
| 23 | |
| 24 | reinstall: uninstall clean install |
| 25 | |
| 26 | test: |
| 27 | pytest tests/ |