]> git.armaanb.net Git - lightcards.git/blob - Makefile
Don't print more header separators than can fit
[lightcards.git] / Makefile
1 .DEFAULT_GOAL := local
2
3 global:
4         pip install .
5         cp ./lightcards.sh /usr/local/bin/lightcards
6
7 local:
8         pip install .
9         cp ./lightcards.sh ~/.local/bin/lightcards
10
11 global-uninstall:
12         pip uninstall lightcards
13         rm /usr/local/bin/lightcards
14
15 local-uninstall:
16         pip uninstall lightcards
17         rm ~/.local/bin/lightcards