Add uninstall target

This commit is contained in:
xSlendiX 2021-09-08 01:49:41 +03:00
parent af258658c1
commit 39e1542466

View File

@ -14,3 +14,10 @@ else
chmod 4711 /usr/bin/sus
endif
uninstall: clean
ifneq ($(shell id -u), 0)
@echo "You must be root to perform this action."
else
rm -f /usr/bin/sus
endif