-
Notifications
You must be signed in to change notification settings - Fork 2
/
not-increments.m4
460 lines (415 loc) · 14.4 KB
/
not-increments.m4
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
dnl **************************************************************************
dnl _ _ _ ___ _ _ _
dnl | \ | | | | / _ \ | | | | | |
dnl | \| | ___ | |_ / /_\ \_ _| |_ ___ | |_ ___ ___ | |___
dnl | . ` |/ _ \| __| | _ | | | | __/ _ \| __/ _ \ / _ \| / __|
dnl | |\ | (_) | |_ | | | | |_| | || (_) | || (_) | (_) | \__ \
dnl \_| \_/\___/ \__| \_| |_/\__,_|\__\___/ \__\___/ \___/|_|___/
dnl
dnl A collection of useful m4 macros for GNU Autotools
dnl
dnl -- Released under GNU GPL3 --
dnl
dnl https://github.com/madmurphy/not-autotools
dnl **************************************************************************
dnl **************************************************************************
dnl I N C R E M E N T I N G A N D D E C R E M E N T I N G M A C R O S
dnl **************************************************************************
dnl **************************************************************************
dnl NOTE: These utilities are designed to perform simple increment and
dnl decrement operations on numerical macros. If you are looking for
dnl full-fledged, self-updating counters, please see `n4_set_counter()`
dnl in `not-m4sugar.m4`.
dnl **************************************************************************
dnl n4_pp_amount(macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by incrementing it of one unit,
dnl then expand the new value (“plus-plus-amount”)
dnl
dnl This macro corresponds to ECMAScript `++macro`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_pp_amount([my_amount]) # Prints `101`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_pp_amount],
[m4_define([$1], m4_incr($1))[]$1])
dnl n4_ppn_amount(num, macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by incrementing it of `num`
dnl units, then expand the new value
dnl
dnl This macro corresponds to ECMAScript `(macro += num)`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_ppn_amount([12], [my_amount]) # Prints `112`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_ppn_amount],
[m4_define([$2], m4_eval($2[ + $1]))[]$2])
dnl n4_amount_pp(macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by incrementing it of one unit,
dnl then expand the old value (“amount-plus-plus”)
dnl
dnl This macro corresponds to ECMAScript `macro++`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_pp([my_amount]) # Prints `100`
dnl my_amount # Prints `101`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_pp],
[$1[]m4_define([$1], m4_incr($1))])
dnl n4_amount_ppn(num, macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by incrementing it of `num`
dnl units, then expand the old value
dnl
dnl This macro corresponds to ECMAScript `macro;void(macro += num);`. For
dnl example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_ppn([592], [my_amount]) # Prints `100`
dnl my_amount # Prints `692`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_ppn],
[$2[]m4_define([$2], m4_eval($2[ + $1]))])
dnl n4_amount_incr(macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by incrementing it of one unit,
dnl then expand an empty string
dnl
dnl This macro corresponds to ECMAScript `void(++macro)`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_incr([my_amount]) # Prints ``
dnl my_amount # Prints `101`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_incr],
[m4_define([$1], m4_incr($1))])
dnl n4_amount_add(num, macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by incrementing it of `num`
dnl units, then expand an empty string
dnl
dnl This macro corresponds to ECMAScript `void(macro += num)`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_add([999], [my_amount]) # Prints ``
dnl my_amount # Prints `1099`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_add],
[m4_define([$2], m4_eval($2[ + $1]))])
dnl n4_amounts_incr(macro-name1[, macro-name2[, ... macro-nameN]])
dnl **************************************************************************
dnl
dnl Redefine one or more numerical macros altogether by incrementing them of
dnl one unit, then expand an empty string
dnl
dnl Example:
dnl
dnl m4_define([my_amount_1], [0])
dnl m4_define([my_amount_2], [19])
dnl m4_define([my_amount_3], [98])
dnl n4_amounts_incr([my_amount_1], [my_amount_2], [my_amount_3])
dnl my_amount_1, my_amount_2, my_amount_3 # Prints `1, 20, 99`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amounts_incr],
[m4_if([$#], [0], [],
[m4_define([$1], m4_incr($1))[]m4_if([$#], [1], [],
[$0(m4_shift($@))])])])
dnl n4_amounts_add(num, macro-name1[, macro-name2[, ... macro-nameN]])
dnl **************************************************************************
dnl
dnl Redefine one or more numerical macros altogether by incrementing them of
dnl `num` units, then expand an empty string
dnl
dnl Example:
dnl
dnl m4_define([my_amount_1], [1])
dnl m4_define([my_amount_2], [20])
dnl m4_define([my_amount_3], [99])
dnl n4_amounts_add([897], [my_amount_1], [my_amount_2], [my_amount_3])
dnl my_amount_1 / my_amount_2 / my_amount_3 # Prints `898 / 917 / 996`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amounts_add],
[m4_if([$#], [0], [], [$#], [1], [],
[m4_define([$2], m4_eval($2[ + $1]))[]m4_if([$#], [2], [],
[$0([$1], m4_shift2($@))])])])
dnl n4_mm_amount(macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by decrementing it of one unit,
dnl then expand the new value (“minus-minus-amount”)
dnl
dnl This macro corresponds to ECMAScript `--macro`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_mm_amount([my_amount]) # Prints `99`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_mm_amount],
[m4_define([$1], m4_decr($1))[]$1])
dnl n4_mmn_amount(num, macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by decrementing it of `num`
dnl units, then expand the new value
dnl
dnl This macro corresponds to ECMAScript `(macro -= num)`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_mmn_amount([23], [my_amount]) # Prints `77`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_mmn_amount],
[m4_define([$2], m4_eval($2[ - $1]))[]$2])
dnl n4_amount_mm(macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by decrementing it of one unit,
dnl then expand the old value (“amount-minus-minus”)
dnl
dnl This macro corresponds to ECMAScript `macro--`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_mm([my_amount]) # Prints `100`
dnl my_amount # Prints `99`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_mm],
[$1[]m4_define([$1], m4_decr($1))])
dnl n4_amount_mmn(num, macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by decrementing it of `num`
dnl units, then expand the old value
dnl
dnl This macro corresponds to ECMAScript `macro;void(macro -= num);`. For
dnl example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_mmn([1022], [my_amount]) # Prints `100`
dnl my_amount # Prints `-922`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_mmn],
[$2[]m4_define([$2], m4_eval($2[ - $1]))])
dnl n4_amount_decr(macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by decrementing it of one unit,
dnl then expand an empty string
dnl
dnl This macro corresponds to ECMAScript `void(--macro)`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_decr([my_amount]) # Prints ``
dnl my_amount # Prints `99`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_decr],
[m4_define([$1], m4_decr($1))])
dnl n4_amount_subtract(num, macro-name)
dnl **************************************************************************
dnl
dnl Redefine the numerical macro `macro-name` by decrementing it of `num`
dnl units, then expand an empty string
dnl
dnl This macro corresponds to ECMAScript `void(macro -= num)`.
dnl
dnl Example:
dnl
dnl m4_define([my_amount], [100])
dnl n4_amount_subtract([8], [my_amount]) # Prints ``
dnl my_amount # Prints `92`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amount_subtract],
[m4_define([$2], m4_eval($2[ - $1]))])
dnl n4_amounts_decr(num, macro-name1[, macro-name2[, ... macro-nameN]])
dnl **************************************************************************
dnl
dnl Redefine one or more numerical macros altogether by decrementing them of
dnl one unit, then expand an empty string
dnl
dnl Example:
dnl
dnl m4_define([my_amount_1], [898])
dnl m4_define([my_amount_2], [917])
dnl m4_define([my_amount_3], [996])
dnl n4_amounts_decr([my_amount_1], [my_amount_2], [my_amount_3])
dnl my_amount_1 / my_amount_2 / my_amount_3 # Prints `897 / 916 / 995`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amounts_decr],
[m4_if([$#], [0], [],
[m4_define([$1], m4_decr($1))[]m4_if([$#], [1], [],
[$0(m4_shift($@))])])])
dnl n4_amounts_subtract(num, macro-name1[, macro-name2[, ... macro-nameN]])
dnl **************************************************************************
dnl
dnl Redefine one or more numerical macros altogether by decrementing them of
dnl `num` units, then expand an empty string
dnl
dnl Example:
dnl
dnl m4_define([my_amount_1], [897])
dnl m4_define([my_amount_2], [916])
dnl m4_define([my_amount_3], [995])
dnl n4_amounts_subtract([897], [my_amount_1], [my_amount_2], [my_amount_3])
dnl my_amount_1 / my_amount_2 / my_amount_3 # Prints `0 / 19 / 98`
dnl
dnl This macro may be invoked before `AC_INIT()`.
dnl
dnl Expansion type: literal (void)
dnl Requires: nothing
dnl Version: 1.0.0
dnl Author: madmurphy
dnl
dnl **************************************************************************
m4_define([n4_amounts_subtract],
[m4_if([$#], [0], [], [$#], [1], [],
[m4_define([$2], m4_eval($2[ - $1]))[]m4_if([$#], [2], [],
[$0([$1], m4_shift2($@))])])])
dnl **************************************************************************
dnl NOTE: The `n4_` prefix (which stands for "Not m4sugar") is used with the
dnl purpose of avoiding collisions with the default Autotools prefix
dnl `m4_`.
dnl **************************************************************************
dnl EOF