script and installer added

This commit is contained in:
2021-05-29 16:25:36 +02:00
parent 595751a704
commit 13771dcd92
2 changed files with 190 additions and 0 deletions

19
Makefile Normal file
View File

@ -0,0 +1,19 @@
# threadwatcher
# See LICENSE file for copyright and license details.
VERSION = 1.0
# paths
DESTDIR= ~/.local/bin
SRC = threadwatcher
install:
mkdir -p $(DESTDIR)
cp -f $(SRC) $(DESTDIR)/
chmod 755 $(DESTDIR)/$(SRC)
uninstall:
rm -f $(DESTDIR)/$(SRC)
.PHONY: install uninstall