diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-26 11:58:14 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-26 11:58:14 -0400 |
commit | 887ff6550d64aa0243192c922c977f41ce549e42 (patch) | |
tree | 92c09d90206b6d5c85ca35eba3678726c56a0357 /Makefile | |
parent | 3cf6c82633fb153663e7927e20818f355d949a89 (diff) | |
download | aerc-887ff6550d64aa0243192c922c977f41ce549e42.tar.gz |
Implement :edit in compose screen
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
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) |