bthandler/Makefile

34 lines
668 B
Makefile
Raw Normal View History

2020-04-18 21:41:04 +02:00
# bthandler
# See LICENSE file for copyright and license details.
VERSION = 1.1
2020-04-18 21:53:07 +02:00
# paths
2020-07-04 20:26:30 +02:00
DESTDIR= ~/.local/bin
DATA_DIR = ~/.local/share/bt#if changed, needs adjustment in bt as well (defined in the beginning)
SRC = bt
2020-04-18 21:41:04 +02:00
install:
2020-07-04 20:26:30 +02:00
mkdir -p $(DESTDIR)
mkdir -p $(DATA_DIR)
2020-07-04 20:26:30 +02:00
cp -f bt $(DESTDIR)/bt
chmod 755 $(DESTDIR)/bt
touch $(DATA_DIR)/blacklist
touch $(DATA_DIR)/paired
2021-06-28 20:10:16 +02:00
touch $(DATA_DIR)/alias
2020-04-18 21:41:04 +02:00
uninstall:
2020-07-04 20:26:30 +02:00
rm -f $(DESTDIR)/bt
rm -rf $(DATA_DIR)
2020-04-18 21:41:04 +02:00
#clears manual paired devices list and blacklist
clear:
rm -rf $(DATA_DIR)
mkdir -p $(DATA_DIR)
touch $(DATA_DIR)/paired
touch $(DATA_DIR)/blacklist
2021-06-28 20:10:16 +02:00
touch $(DATA_DIR)/alias
.PHONY: install uninstall clear