aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-02-28 15:09:34 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-02-28 15:09:34 +1300
commit1c1998212fafee784a41373578e56c41ee2a4d42 (patch)
tree128a8d36fa8e335700229b595b828d24f522ce96 /Makefile
parentAdd plenv scripts (diff)
downloaddotfiles-1c1998212fafee784a41373578e56c41ee2a4d42.tar.gz
dotfiles-1c1998212fafee784a41373578e56c41ee2a4d42.zip
Use just = rather than := in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 80c91721..33af926b 100644
--- a/Makefile
+++ b/Makefile
@@ -61,10 +61,10 @@
.SUFFIXES: .awk .bash .pl .sed
-NAME := Tom Ryder
-EMAIL := tom@sanctum.geek.nz
-KEY := 0xC14286EA77BB8872
-SENDMAIL := msmtp
+NAME = Tom Ryder
+EMAIL = tom@sanctum.geek.nz
+KEY = 0xC14286EA77BB8872
+SENDMAIL = msmtp
BINS = bin/brnl \
bin/csmw \
@@ -125,7 +125,7 @@ git/gitconfig : git/gitconfig.m4
-D DOTFILES_SENDMAIL="$(SENDMAIL)" \
git/gitconfig.m4 > git/gitconfig
-KEYSERVER := hkps://hkps.pool.sks-keyservers.net
+KEYSERVER = hkps://hkps.pool.sks-keyservers.net
gnupg/gpg.conf : gnupg/gpg.conf.m4
m4 \
@@ -137,10 +137,10 @@ man/man7/dotfiles.7df : README.markdown man/man7/dotfiles.7df.header
cat man/man7/dotfiles.7df.header README.markdown | \
pandoc -sS -t man -o "$@"
-MAILDIR := $(HOME)/Mail
+MAILDIR = $(HOME)/Mail
-TMUX_BG := colour237
-TMUX_FG := colour248
+TMUX_BG = colour237
+TMUX_FG = colour248
tmux/tmux.conf : tmux/tmux.conf.m4
m4 -D TMUX_BG="$(TMUX_BG)" -D TMUX_FG="$(TMUX_FG)" \