forked from geany/geany-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
189 lines (141 loc) · 2.4 KB
/
Makefile.am
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
ACLOCAL_AMFLAGS = -I build/cache -I build -I build/bundled -I geanypy/m4 --install
AM_DISTCHECK_CONFIGURE_FLAGS = --with-geany-libdir='$${libdir}'
SUBDIRS = po
if ENABLE_UTILSLIB
SUBDIRS += utils
endif
if ENABLE_ADDONS
SUBDIRS += addons
endif
if ENABLE_AUTOCLOSE
SUBDIRS += autoclose
endif
if ENABLE_AUTOMARK
SUBDIRS += automark
endif
if ENABLE_CODENAV
SUBDIRS += codenav
endif
if ENABLE_COMMANDER
SUBDIRS += commander
endif
if ENABLE_DEBUGGER
SUBDIRS += debugger
endif
if ENABLE_DEFINEFORMAT
SUBDIRS += defineformat
endif
if ENABLE_DEVHELP
SUBDIRS += devhelp
endif
if ENABLE_GEANYCTAGS
SUBDIRS += geanyctags
endif
if ENABLE_GEANYDOC
SUBDIRS += geanydoc
endif
if ENABLE_GEANYEXTRASEL
SUBDIRS += geanyextrasel
endif
if ENABLE_GEANYGENDOC
SUBDIRS += geanygendoc
endif
if ENABLE_GEANYINSERTNUM
SUBDIRS += geanyinsertnum
endif
if ENABLE_LATEX
SUBDIRS += latex
endif
if ENABLE_GEANYLUA
SUBDIRS += geanylua
endif
if ENABLE_GEANYMACRO
SUBDIRS += geanymacro
endif
if ENABLE_GEANYMINISCRIPT
SUBDIRS += geanyminiscript
endif
if ENABLE_GEANYNUMBEREDBOOKMARKS
SUBDIRS += geanynumberedbookmarks
endif
if ENABLE_GEANYPG
SUBDIRS += geanypg
endif
if ENABLE_GEANYPRJ
SUBDIRS += geanyprj
endif
if ENABLE_GEANYPY
SUBDIRS += geanypy
endif
if ENABLE_GEANYVC
SUBDIRS += geanyvc
endif
if ENABLE_GENIUSPASTE
SUBDIRS += geniuspaste
endif
if ENABLE_GITCHANGEBAR
SUBDIRS += git-changebar
endif
if ENABLE_KEYRECORD
SUBDIRS += keyrecord
endif
if ENABLE_LINEOPERATIONS
SUBDIRS += lineoperations
endif
if ENABLE_LIPSUM
SUBDIRS += lipsum
endif
if ENABLE_MARKDOWN
SUBDIRS += markdown
endif
if ENABLE_MULTITERM
SUBDIRS += multiterm
endif
if ENABLE_OVERVIEW
SUBDIRS += overview
endif
if ENABLE_PAIRTAGHIGHLIGHTER
SUBDIRS += pairtaghighlighter
endif
if ENABLE_POHELPER
SUBDIRS += pohelper
endif
if ENABLE_PRETTY_PRINTER
SUBDIRS += pretty-printer
endif
if ENABLE_PROJECTORGANIZER
SUBDIRS += projectorganizer
endif
if ENABLE_SCOPE
SUBDIRS += scope
endif
if ENABLE_SENDMAIL
SUBDIRS += sendmail
endif
if ENABLE_SHIFTCOLUMN
SUBDIRS += shiftcolumn
endif
if ENABLE_SPELLCHECK
SUBDIRS += spellcheck
endif
if ENABLE_TABLECONVERT
SUBDIRS += tableconvert
endif
if ENABLE_TREEBROWSER
SUBDIRS += treebrowser
endif
if ENABLE_UPDATECHECKER
SUBDIRS += updatechecker
endif
if ENABLE_VIMODE
SUBDIRS += vimode
endif
if ENABLE_WEBHELPER
SUBDIRS += webhelper
endif
if ENABLE_WORKBENCH
SUBDIRS += workbench
endif
if ENABLE_XMLSNIPPETS
SUBDIRS += xmlsnippets
endif