From 5c659a673b9b7abeb13f97cf833d6fbbe4a2b884 Mon Sep 17 00:00:00 2001 From: Felix Boers Date: Thu, 18 Dec 2025 12:19:07 +0100 Subject: [PATCH] build: add Makefile --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..668f673 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) +PLUGIN_NAME:=albert-plugin-python-uuid-generator +INSTALL_ROOT:=$(HOME)/.local/share/albert/python/plugins +INSTALL_DIR:=$(INSTALL_ROOT)/$(PLUGIN_NAME) + +.PHONY: install +install: uninstall + ln -fs $(ROOT_DIR)/ $(INSTALL_DIR) + +.PHONY: uninstall +uninstall: + rm -f $(INSTALL_DIR) \ No newline at end of file