blob: cc4f9db360f0d56c138ae450a8b2d78b944d7813 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
.POSIX:
install:
mkdir -p -- ~/.config/bash/aliases.d
test ! -d ~/.config/bash/aliases.d/featherweight
ln -sf -- ~/.dotfiles/featherweight/bash-aliases ~/.config/bash/aliases.d/featherweight
uninstall:
-unlink -- ~/.config/bash/aliases.d/featherweight
-rmdir -- ~/.config/bash/aliases.d
.PHONY: install uninstall
|