diff options
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) |