diff --git a/Makefile b/Makefile index a67ab95..c539092 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,5 @@ install: bin templates man completion -clean: - stow -t "/usr/local/bin" -D bin - stow -t "/etc/templates" -D templates - stow -t "/usr/share/man/man1/" -D man - bin: stow -t "/usr/local/bin" bin @@ -20,4 +15,10 @@ completion: mkdir -p "/etc/bash_completion.d" stow -t "/etc/bash_completion.d" completion +uninstall: + stow -t "/usr/local/bin" -D bin + stow -t "/etc/templates" -D templates + stow -t "/usr/share/man/man1/" -D man + stow -t "/etc/bash_completion.d" -D completion + .PHONY: bin templates man completion