From 6b7775b2fd6737b6f3b5687e88bca9e4cf2a29d0 Mon Sep 17 00:00:00 2001 From: James Tomasino Date: Mon, 31 Dec 2018 12:54:26 -0500 Subject: [PATCH] skel support --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7e59a27..f265072 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -install: bin templates man completion files +install: bin templates man completion files skel bin: stow -t "/usr/local/bin" bin @@ -19,11 +19,15 @@ files: mkdir -p "/usr/share/games/fortunes" cd files && stow -t "/usr/share/games/fortunes" fortunes +skel: + rsync -avzh skel/ /etc/skel/ + 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 + #stow -t "/etc/skel" -D skel cd files && stow -t "/usr/share/games/fortunes" -D fortunes -.PHONY: bin templates man completion files +.PHONY: bin templates man completion files skel