From 769135621aaa1eae94e1d118f7f319e2108d41bb Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Sun, 19 Apr 2020 10:13:49 +0200 Subject: [PATCH] Updated Makefile for blacklist file --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2076401..6103d15 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,10 @@ install: mkdir -p $(DESTDIR)$(PREFIX) cp -f bthandler $(DESTDIR)$(PREFIX) chmod 755 $(DESTDIR)$(PREFIX)/bthandler + touch $(DESTDIR)$(PREFIX)/bt_blacklist uninstall: rm -f $(DESTDIR)$(PREFIX)/bthandler + rm -f $(DESTDIR)$(PREFIX)/bt_blacklist .PHONY: install uninstall