script and installer added
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal 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
|
Reference in New Issue
Block a user