diff --git a/Makefile b/Makefile index 2e453d9..22a1915 100644 --- a/Makefile +++ b/Makefile @@ -14,3 +14,11 @@ uninstall: @rm -rf $(DESTDIR)$(BINDIR)/fontpreview @rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(BINDIR) @echo fontpreview has been removed from your device + +local_install: + @read -p "Local binaries path: " lbin_path && ln -sf $$(pwd)/fontpreview $$lbin_path + @echo fontpreview has been locally installed on your device + +local_uninstall: + @read -p "Local binaries path: " lbin_path && rm -f $$lbin_path/fontpreview + @echo fontpreview has been locally uninstalled from your device