threadwatcher/Makefile

20 lines
283 B
Makefile
Raw Normal View History

2021-05-29 16:25:36 +02:00
# threadwatcher
# See LICENSE file for copyright and license details.
VERSION = 1.0
# paths
DESTDIR= /usr/bin
2021-05-29 16:25:36 +02:00
SRC = threadwatcher
install:
mkdir -p $(DESTDIR)
cp -f $(SRC) $(DESTDIR)/
chmod 755 $(DESTDIR)/$(SRC)
uninstall:
rm -f $(DESTDIR)/$(SRC)
.PHONY: install uninstall