summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-05-28 18:20:35 -0400
committerAndrew Cady <d@jerkface.net>2020-05-28 18:25:26 -0400
commit9fbd4a9ea4ce0ef8df6b661b0858bfb16ba8d326 (patch)
tree2a3dea0bdf43dedba8e040debbd42d7ff17c622f /Makefile
parentbff2ac56b6c5cc969a5219c5a5bf608439436983 (diff)
Dynmically generate ~/.gitconfig
Ancient versions of 'git' would use the unix passwd identity as the default author/committer. This dynamically-generated ~/.gitconfig does the same. Might as well set excludesfile = ~/.config/git/ignore
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9609f9b..691e8a9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,9 @@ DOTFILES := $(shell find dot \( -type f -o -type l \) -not -name '.*')
6 6
7DESTINATIONS = $(DOTFILES:dot/%=${HOME}/.%) 7DESTINATIONS = $(DOTFILES:dot/%=${HOME}/.%)
8 8
9${HOME}/.gitconfig:
10 ./src/gitconfig.sh
11
9EXECUTABLES = $(filter dot/local/bin/%, $(DOTFILES)) 12EXECUTABLES = $(filter dot/local/bin/%, $(DOTFILES))
10 13
11$(HOME)/.%: dot/% 14$(HOME)/.%: dot/%