update/makefile

13 lines
310 B
Makefile
Raw Normal View History

VER = "v1.4"
2023-01-21 23:10:18 +01:00
install:
2023-01-21 23:10:18 +01:00
@echo "==> Installing update $(VER)..."
@sudo install -Dm755 update /usr/local/bin/update
@cp update.conf ${HOME}/.config/
@echo "==> Finished."
uninstall:
2023-01-21 23:10:18 +01:00
@echo "==> Uninstalling update $(VER)..."
@sudo rm /usr/local/bin/update ${HOME}/.config/update.conf
2022-12-19 13:45:34 +01:00
@echo "==> Finished."