From d7af67e32879b3044826458bf02ebb374070ff47 Mon Sep 17 00:00:00 2001 From: James Tomasino Date: Wed, 12 Dec 2018 15:15:48 -0500 Subject: [PATCH] makefile tweak --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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