aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-05-22 12:23:24 -0400
committerDrew DeVault <sir@cmpwn.com>2019-05-22 12:23:24 -0400
commit80704f242206e56d4c07669a5ca42827c1d59b59 (patch)
tree0645fc5751cfacd8c3338a32942d4d505b742017 /Makefile
parent9b19e3ad054132fdab4062915f70122faaa5c163 (diff)
Add GOFLAGS variable to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 03dd7c3..64ba7d1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,7 @@
+GOFLAGS?=
+
aerc:
- go build -o aerc
+ go build $(GOFLAGS) -o aerc
%.1: doc/%.1.scd
scdoc < $< > $@