1
0
Files
albert-plugin-python-http-s…/Makefile

12 lines
345 B
Makefile

ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
PLUGIN_NAME:=albert-plugin-python-http-status-codes
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)