summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Makefile17
1 files changed, 2 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 0fb0217..3a20fc8 100644
--- a/Makefile
+++ b/Makefile
@@ -5,21 +5,8 @@ SHAREDIR?=$(_INSTDIR)/share/aerc
 MANDIR?=$(_INSTDIR)/share/man
 GOFLAGS?=
 
-GOSRC := \
-	$(wildcard *.go) \
-	$(wildcard commands/*.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
+GOSRC!=find -name '*.go'
+GOSRC+=go.mod go.sum
 
 aerc: $(GOSRC)
 	go build $(GOFLAGS) \
t; 2019-07-25 13:59:17 -0700 5476' href='/akkartik/mu/commit/subx/build?h=hlt&id=ecbdc925d43f489e5c5b101900db88f9d260efe7'>ecbdc925 ^
8c1a6908 ^
248e789e ^
















































72f278ae ^

248e789e ^

bfadbd4b ^





f898ee7a ^
6e1eeeeb ^
248e789e ^

72f278ae ^
9e5e87ca ^
248e789e ^
9e5e87ca ^
248e789e ^

9e5e87ca ^


248e789e ^
9e5e87ca ^

5170e27c ^
75f2c123 ^

248e789e ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104