aboutsummaryrefslogtreecommitdiffstats
path: root/featherweight/Makefile
blob: 48535565c83156a2c5b736c36241668c10c9cdff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
.POSIX:
include ../common.mk

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