makefile tweak

This commit is contained in:
James Tomasino 2018-12-12 15:15:48 -05:00
parent 2316d618a3
commit d7af67e328
1 changed files with 6 additions and 5 deletions

View File

@ -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