aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@debian.org>2017-02-02 16:35:39 -0500
committerRyan Kavanagh <rak@debian.org>2017-02-02 16:35:39 -0500
commit56eb8d2a414d78dd6a31a064527649782a88a1ab (patch)
tree1a06334eb6314c4c0829f36cb6621163eeb53a2f /Makefile
parentDon't use non-posix options for grep on OpenBSD (diff)
Make font building toggleable
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4fbdb1d..d5578ea 100755
--- a/Makefile
+++ b/Makefile
@@ -93,6 +93,7 @@ SHA256 = $(call get-val,SHA256)
GPG_DISABLED = $(call get-val,GPG_DISABLED)
GPG_BINARY = $(call get-val,GPG_BINARY)
EMACS_DISABLED= $(call get-val,EMACS_DISABLED)
+BUILD_FONTS = $(call get-val,BUILD_FONTS)
MAIL_PASS = GMAIL_PASS QUEENSU_PASS RYANAKCA_PASS LOCAL_PASS CMU_PASS CMUSCS_PASS
@@ -146,7 +147,7 @@ emacsen:
[ "$(EMACS_DISABLED)" = "True" ] || $(MAKE) -C $@ install
fonts:
- $(MAKE) -C .fonts install
+ [ "$(BUILD_FONTS)" != "True" ] || $(MAKE) -C .fonts install
build/bin/msmtp/msmtp-default: build/.msmtprc
-mkdir -p $(dir $@)