Mercurial > hg > pub > prymula > scripts
comparison verysimpleslideshow/Makefile @ 0:dcd610585610
INIT
author | prymula <prymula76@outlook.com> |
---|---|
date | Thu, 21 Sep 2023 22:32:14 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:dcd610585610 |
---|---|
1 | |
2 prefix=/usr/local | |
3 | |
4 all: | |
5 | |
6 install: | |
7 install -m 0755 verysimpleslideshow.py $(prefix)/bin | |
8 ln -s $(prefix)/bin/verysimpleslideshow.py $(prefix)/bin/vsss | |
9 | |
10 | |
11 uninstall: | |
12 rm $(prefix)/bin/vsss | |
13 rm $(prefix)/bin/verysimpleslideshow.py | |
14 | |
15 .PHONY: all install uninstall |