aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-05-26 11:58:14 -0400
committerDrew DeVault <sir@cmpwn.com>2019-05-26 11:58:14 -0400
commit887ff6550d64aa0243192c922c977f41ce549e42 (patch)
tree92c09d90206b6d5c85ca35eba3678726c56a0357 /Makefile
parent3cf6c82633fb153663e7927e20818f355d949a89 (diff)
Implement :edit in compose screen
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 09ee192..0fb0217 100644
--- a/Makefile
+++ b/Makefile
@@ -8,11 +8,17 @@ GOFLAGS?=
GOSRC := \
$(wildcard *.go) \
$(wildcard commands/*.go) \
- $(wildcard config/*.go) \
+ $(wildcard commands/account/*.go) \
+ $(wildcard commands/compose/*.go) \
+ $(wildcard commands/msgview/*.go) \
+ $(wildcard config/terminal/*.go) \
$(wildcard lib/*.go) \
+ $(wildcard lib/ui/*.go) \
$(wildcard ui/*.go) \
$(wildcard widgets/*.go) \
$(wildcard worker/*.go) \
+ $(wildcard worker/imap/*.go) \
+ $(wildcard worker/types/*.go) \
go.mod go.sum
aerc: $(GOSRC)