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