diff options
Diffstat (limited to '')
-rw-r--r-- | st/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/st/Makefile b/st/Makefile new file mode 100644 index 0000000..e9e6f52 --- /dev/null +++ b/st/Makefile @@ -0,0 +1,12 @@ +.POSIX: +include ../common.mk + +install: + $(CHECK_INSTALLED) dash + mkdir -p -- ~/.local/bin + ln -sf -- ~/.dotfiles/st/st ~/.local/bin/ + +uninstall: + -unlink -- ~/.local/bin/st + +.PHONY: install uninstall |