File: files.am

package info (click to toggle)
groonga 15.0.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 163,080 kB
  • sloc: ansic: 770,564; cpp: 48,925; ruby: 40,447; javascript: 10,250; yacc: 7,045; sh: 5,602; python: 2,821; makefile: 1,672
file content (5000 lines) | stat: -rw-r--r-- 295,429 bytes parent folder | download
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
absolute_source_files = \
	$(top_srcdir)/doc/source/__init__.py \
	$(top_srcdir)/doc/source/_static/favicon.ico \
	$(top_srcdir)/doc/source/_static/groonga.png \
	$(top_srcdir)/doc/source/_static/switcher.json \
	$(top_srcdir)/doc/source/characteristic.rst \
	$(top_srcdir)/doc/source/client.rst \
	$(top_srcdir)/doc/source/community.rst \
	$(top_srcdir)/doc/source/conf.py \
	$(top_srcdir)/doc/source/contribution.rst \
	$(top_srcdir)/doc/source/contribution/development.rst \
	$(top_srcdir)/doc/source/contribution/development/build.rst \
	$(top_srcdir)/doc/source/contribution/development/build/unix_autotools.rst \
	$(top_srcdir)/doc/source/contribution/development/build/unix_cmake.rst \
	$(top_srcdir)/doc/source/contribution/development/build/windows_cmake.rst \
	$(top_srcdir)/doc/source/contribution/development/com.rst \
	$(top_srcdir)/doc/source/contribution/development/cooperation.rst \
	$(top_srcdir)/doc/source/contribution/development/query.rst \
	$(top_srcdir)/doc/source/contribution/development/release.rst \
	$(top_srcdir)/doc/source/contribution/development/repository.rst \
	$(top_srcdir)/doc/source/contribution/development/test.rst \
	$(top_srcdir)/doc/source/contribution/documentation.rst \
	$(top_srcdir)/doc/source/contribution/documentation/c-api.rst \
	$(top_srcdir)/doc/source/contribution/documentation/i18n.rst \
	$(top_srcdir)/doc/source/contribution/documentation/introduction.md \
	$(top_srcdir)/doc/source/contribution/report.rst \
	$(top_srcdir)/doc/source/development.rst \
	$(top_srcdir)/doc/source/development/travis-ci.rst \
	$(top_srcdir)/doc/source/example/reference/alias/existing_name.log \
	$(top_srcdir)/doc/source/example/reference/alias/register.log \
	$(top_srcdir)/doc/source/example/reference/alias/schema.log \
	$(top_srcdir)/doc/source/example/reference/alias/select_age.log \
	$(top_srcdir)/doc/source/example/reference/alias/select_age_after_rename.log \
	$(top_srcdir)/doc/source/example/reference/alias/select_age_by_alias.log \
	$(top_srcdir)/doc/source/example/reference/alias/table_and_column.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_adjuster_weight.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_create_normal.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_create_weight.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_filter_normal.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_filter_weight.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_index_normal.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_index_weight.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_load_normal.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_load_weight.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_output_normal.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_output_weight.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_query_normal.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_query_weight.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_query_weight_normal.log \
	$(top_srcdir)/doc/source/example/reference/columns/vector/usage_query_weight_weight.log \
	$(top_srcdir)/doc/source/example/reference/command/n_workers/status.md \
	$(top_srcdir)/doc/source/example/reference/commands/cache_limit/get.log \
	$(top_srcdir)/doc/source/example/reference/commands/cache_limit/set.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_column_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_column_type_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_column_value_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_column_value_type_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_table_key_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_table_key_type_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_table_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/change_table_type_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/from_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/from_table_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/move_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/move_column_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/to_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_copy/to_table_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/generated_column_load.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/generated_column_schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/invalid_mode_scalar_load_initial.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/invalid_mode_scalar_load_update.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/invalid_mode_scalar_schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/invalid_mode_vector_load.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/invalid_mode_vector_schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/missing_mode_scalar_load.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/missing_mode_scalar_schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/missing_mode_vector_load.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/missing_mode_vector_schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_full_text_search_index_create_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_full_text_search_index_create_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_full_text_search_index_select.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_index_create_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_index_create_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_index_select.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_large_index_create_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_medium_index_create_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_multiple_columns_index_create_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_multiple_columns_index_create_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_multiple_columns_index_select.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_reference_create_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_reference_create_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_reference_load.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_reference_select.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_scalar_create.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_scalar_load.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_scalar_select.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_small_index_create_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_vector_create.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_vector_load.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_create/usage_vector_select.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_list/column_list.log \
	$(top_srcdir)/doc/source/example/reference/commands/column_rename/column_rename.log \
	$(top_srcdir)/doc/source/example/reference/commands/config_delete/existent.log \
	$(top_srcdir)/doc/source/example/reference/commands/config_delete/nonexistent.log \
	$(top_srcdir)/doc/source/example/reference/commands/config_get/existent.log \
	$(top_srcdir)/doc/source/example/reference/commands/config_get/nonexistent.log \
	$(top_srcdir)/doc/source/example/reference/commands/config_set/set_and_get.log \
	$(top_srcdir)/doc/source/example/reference/commands/database_unmap/usage_failure.log \
	$(top_srcdir)/doc/source/example/reference/commands/database_unmap/usage_success.log \
	$(top_srcdir)/doc/source/example/reference/commands/delete/cascade.log \
	$(top_srcdir)/doc/source/example/reference/commands/delete/status.log \
	$(top_srcdir)/doc/source/example/reference/commands/index_column_diff/index_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/all.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/only_opened_yes.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/recursive_default.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/recursive_invalid.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/recursive_no.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/recursive_yes.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/target_name_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/target_name_database.log \
	$(top_srcdir)/doc/source/example/reference/commands/io_flush/target_name_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/load/usage_lock_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/load/usage_parameter.log \
	$(top_srcdir)/doc/source/example/reference/commands/load/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/load/usage_standard_input.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_acquire/column.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_acquire/database.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_acquire/database_release.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_acquire/table.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_clear/column.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_clear/database.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_clear/table.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_release/column.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_release/database.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_release/database_release.log \
	$(top_srcdir)/doc/source/example/reference/commands/lock_release/table.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/cache_no.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/columns_name_flags.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/columns_name_stage.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/columns_name_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/columns_name_value.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/columns_name_window_group_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/columns_name_window_sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/count_shutdown.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/logical_table_existent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/logical_table_nonexistent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/max.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/max_border.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/min.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/min_border.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/post_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/setup_data.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/usage.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/usage_plugin_register.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_count/window_function_for_over_shard.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_parameters/range_index_always.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_parameters/range_index_auto.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_parameters/range_index_never.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_parameters/usage_get.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_parameters/usage_register.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_parameters/usage_set.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/cache_no.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/columns_name_flags.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/columns_name_stage.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/columns_name_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/columns_name_value.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/columns_name_window_group_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/columns_name_window_sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/limit.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/logical_table_existent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/logical_table_nonexistent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/offset.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/order_existent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/output_columns.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/post_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/sort_keys_on_shared_key.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/sort_keys_one.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/usage_plugin_register.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_range_filter/window_function_for_over_shard.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/cache_no.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/columns_name_flags.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/columns_name_stage.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/columns_name_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/columns_name_value.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/columns_name_window_group_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/columns_name_window_sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldown.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldown_calc_types.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldown_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldown_limit.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldown_offset.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldown_output_columns.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldown_sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_calc_types.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_columns_name_flags.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_columns_name_stage.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_columns_name_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_columns_name_value.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_columns_name_window_group_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_columns_name_window_sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_limit.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_offset.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_output_columns.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/drilldowns_label_sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/limit.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/load_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/logical_table_existent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/logical_table_nonexistent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/match_columns.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/max.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/max_border.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/min.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/min_border.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/offset.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/output_columns.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/post_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/query.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/shard_key_existent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/usage_plugin_register.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_select/window_function_for_over_shard.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_shard_list/logical_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_shard_list/usage_list.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_shard_list/usage_register.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_shard_list/usage_shards.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/basic_usage_create_shards.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/basic_usage_list_shards_after.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/basic_usage_list_shards_before.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/basic_usage_remove_all.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_create.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_index_column_exist.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_remove.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_remove_force.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_parts_create_shards.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_parts_dump.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_parts_remove.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_with_for_shard_configm.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_with_for_shard_create.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_with_for_shard_remove.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_with_reference_confirm.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_with_reference_create.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_with_reference_default.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/remove_with_reference_dependent.log \
	$(top_srcdir)/doc/source/example/reference/commands/logical_table_remove/usage_register.log \
	$(top_srcdir)/doc/source/example/reference/commands/normalize/normalizer_auto_ascii.log \
	$(top_srcdir)/doc/source/example/reference/commands/normalize/normalizer_auto_with_checks.log \
	$(top_srcdir)/doc/source/example/reference/commands/normalizer_list/simple_example.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_exist/name_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_exist/usage.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_inspect/usage-database.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_inspect/usage-name.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_list/output.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_list/sample.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_remove/name_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_remove/usage.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_remove/usage_broken_with_force.log \
	$(top_srcdir)/doc/source/example/reference/commands/object_remove/usage_broken_without_force.log \
	$(top_srcdir)/doc/source/example/reference/commands/plugin_register/query_expanders_tsv.log \
	$(top_srcdir)/doc/source/example/reference/commands/plugin_unregister/query_expanders_tsv.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/all.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/column.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/for_output.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/for_search.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/recursive_default.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/recursive_dependent.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/recursive_invalid.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/recursive_no.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/recursive_yes.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/release.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/table.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/target_name_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/target_name_database.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_acquire/target_name_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_release/same_arguments.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_release/schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_release/target_name_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_release/target_name_database.log \
	$(top_srcdir)/doc/source/example/reference/commands/reference_release/target_name_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/register/query_expanders_tsv.log \
	$(top_srcdir)/doc/source/example/reference/commands/reindex/data_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/reindex/database.log \
	$(top_srcdir)/doc/source/example/reference/commands/reindex/index_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/reindex/table.log \
	$(top_srcdir)/doc/source/example/reference/commands/ruby_eval/calc.log \
	$(top_srcdir)/doc/source/example/reference/commands/schema/output.log \
	$(top_srcdir)/doc/source/example/reference/commands/schema/sample.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/adjuster_multiple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/adjuster_no_factor.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/adjuster_no_weight.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/adjuster_one.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/cache_no.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/columns_name_flags.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/columns_name_stage.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/columns_name_type.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/columns_name_value.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/columns_name_window_group_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/columns_name_window_sort_keys.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_calc_types_all.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_calc_types_avg.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_calc_types_max.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_calc_types_min.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_calc_types_sum.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_limit_negative.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_limit_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_max_n_target_records.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_multiple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_offset_negative.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_offset_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_output_columns_referenced_type_column_asterisk.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_output_columns_referenced_type_column_definition.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_output_columns_referenced_type_column_label.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_output_columns_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_sort_keys_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_sortby_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldown_with_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldowns_label_columns_name_stage.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldowns_label_keys_multiple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldowns_label_none.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldowns_label_output_columns_multiple_group_key.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldowns_label_output_columns_single_group_key.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldowns_label_power_set.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/drilldowns_label_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/filter_equal.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/filter_less_than.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/fuzzy_max_distance.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/fuzzy_max_distance_ratio.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/fuzzy_max_expansions.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/fuzzy_prefix_length.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/fuzzy_tokenize.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/fuzzy_with_transposition.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/limit_negative.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/limit_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/load_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/match_columns_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/match_columns_some_columns.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/match_columns_weight.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/match_escalation.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/match_escalation_threshold.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/no_limit.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/offset_negative.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/offset_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/output_columns_asterisk.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/output_columns_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/paging.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_and.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_equal.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_expander_complex.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_expander_substitute.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_expander_substitution_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_flags_allow_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_flags_allow_leading_not.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_flags_allow_update.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_flags_no_query_no_syntax_error.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_flags_none.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_flags_query_no_syntax_error.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_flags_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_less_than.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/query_or.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/simple_filter.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/simple_query.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/simple_usage.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/sort_keys_descending.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/sort_keys_score_with_query.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/sort_keys_simple.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/table_nonexistent.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/usage_drilldown.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/usage_drilldown_only_query.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/usage_dynamic_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/usage_fuzzy_max_distance_ratio.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/usage_typo_tolerance_japanese.log \
	$(top_srcdir)/doc/source/example/reference/commands/select/usage_window_function.log \
	$(top_srcdir)/doc/source/example/reference/commands/shutdown/default.log \
	$(top_srcdir)/doc/source/example/reference/commands/shutdown/graceful.log \
	$(top_srcdir)/doc/source/example/reference/commands/shutdown/immediate.log \
	$(top_srcdir)/doc/source/example/reference/commands/status.log \
	$(top_srcdir)/doc/source/example/reference/commands/suggest-completion.log \
	$(top_srcdir)/doc/source/example/reference/commands/suggest-correction.log \
	$(top_srcdir)/doc/source/example/reference/commands/suggest-learn-completion.log \
	$(top_srcdir)/doc/source/example/reference/commands/suggest-learn-correction.log \
	$(top_srcdir)/doc/source/example/reference/commands/suggest-learn-suggestion.log \
	$(top_srcdir)/doc/source/example/reference/commands/suggest-mixed.log \
	$(top_srcdir)/doc/source/example/reference/commands/suggest-suggestion.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_create/data_store_table_no_key.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_create/large_data_store_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_create/lexicon_pat_key.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_create/range_index_table_dat_key.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_create/tag_index_table_hash_key.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_list.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/basic_usage_create_entries_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/basic_usage_create_index_for_entries_table.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/basic_usage_create_index_for_entries_table_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/basic_usage_dump_after_table_remove.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/basic_usage_dump_before_table_remove.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/basic_usage_table_remove.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/decreases_used_resources_close_temporary_opened_objects.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/remove_dependents_default.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/remove_dependents_schema.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/remove_dependents_yes.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/unremovable_cases_key_type_create.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/unremovable_cases_key_type_remove_fail.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/unremovable_cases_key_type_remove_success.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/unremovable_cases_value_type_create.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/unremovable_cases_value_type_remove_fail.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_remove/unremovable_cases_value_type_remove_success.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_rename/usage.log \
	$(top_srcdir)/doc/source/example/reference/commands/table_tokenize/simple_example.log \
	$(top_srcdir)/doc/source/example/reference/commands/thread_dump/usage.log \
	$(top_srcdir)/doc/source/example/reference/commands/thread_limit/max.log \
	$(top_srcdir)/doc/source/example/reference/commands/thread_limit/usage_get.log \
	$(top_srcdir)/doc/source/example/reference/commands/thread_limit/usage_set.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/add_mode.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/flags_enable_tokenized_delimiter.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/get_mode.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/normalizer_none.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/normalizer_use.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/normalizer_use_with_split_symbol_alpha.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/simple_example.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/string_include_spaces.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenize/tokenizer_token_trigram.log \
	$(top_srcdir)/doc/source/example/reference/commands/tokenizer_list/simple_example.log \
	$(top_srcdir)/doc/source/example/reference/commands/truncate/truncate_column.log \
	$(top_srcdir)/doc/source/example/reference/commands/truncate/truncate_table.log \
	$(top_srcdir)/doc/source/example/reference/executables/groonga-httpd.log \
	$(top_srcdir)/doc/source/example/reference/executables/groonga-suggest-httpd/complete.log \
	$(top_srcdir)/doc/source/example/reference/executables/groonga-suggest-httpd/launch-lerner.log \
	$(top_srcdir)/doc/source/example/reference/executables/groonga-suggest-httpd/launch.log \
	$(top_srcdir)/doc/source/example/reference/executables/groonga-suggest-httpd/learn-and-complete.log \
	$(top_srcdir)/doc/source/example/reference/executables/groonga-suggest-httpd/learn.log \
	$(top_srcdir)/doc/source/example/reference/executables/groonga-suggest-httpd/setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/between/usage_age.log \
	$(top_srcdir)/doc/source/example/reference/functions/between/usage_options.log \
	$(top_srcdir)/doc/source/example/reference/functions/between/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/between/usage_value.log \
	$(top_srcdir)/doc/source/example/reference/functions/cast_loose/usage_basic.log \
	$(top_srcdir)/doc/source/example/reference/functions/cast_loose/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/escalate/usage_age.log \
	$(top_srcdir)/doc/source/example/reference/functions/escalate/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/escalate/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_distance_ellipsoid.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_distance_rectangle.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_distance_rectangle_across_equator.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_distance_rectangle_across_meridian.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_distance_rectangle_across_the_date_line.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_distance_sphere.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_location_ellipsoid.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_location_rectangle.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_location_sphere.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_setup_distance.log \
	$(top_srcdir)/doc/source/example/reference/functions/geo_distance_setup_location.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight/usage_basic.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight/usage_string_literal.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight_full/usage_basic.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight_full/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight_full/usage_string_literal.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight_html/usage_basic.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight_html/usage_sequential_class_tag_mode.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight_html/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/highlight_html/usage_string_literal.log \
	$(top_srcdir)/doc/source/example/reference/functions/html_untag/usage_html_untag.log \
	$(top_srcdir)/doc/source/example/reference/functions/html_untag/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/html_untag/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_records/usage_search.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_records/usage_setup_conditions.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_records/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_records/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_values/usage_only.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_values/usage_options.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_values/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/in_values/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/language_model_vectorize/usage_register.md \
	$(top_srcdir)/doc/source/example/reference/functions/language_model_vectorize/usage_rerank.md \
	$(top_srcdir)/doc/source/example/reference/functions/language_model_vectorize/usage_setup_data.md \
	$(top_srcdir)/doc/source/example/reference/functions/language_model_vectorize/usage_setup_generated_column.md \
	$(top_srcdir)/doc/source/example/reference/functions/language_model_vectorize/usage_setup_schema.md \
	$(top_srcdir)/doc/source/example/reference/functions/math_abs/nearest_shops.log \
	$(top_srcdir)/doc/source/example/reference/functions/math_abs/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/math_abs/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_add_no_reading_completion_target.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_loose_completion.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_prefix_rk_only_completion.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_prefix_search_combined_completion.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_setup_completion.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_setup_loose_completion.log \
	$(top_srcdir)/doc/source/example/reference/functions/prefix_rk_search/usage_simple.log \
	$(top_srcdir)/doc/source/example/reference/functions/query/usage_basic.log \
	$(top_srcdir)/doc/source/example/reference/functions/query/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/query/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/query/usage_with_query.log \
	$(top_srcdir)/doc/source/example/reference/functions/query/usage_without_query.log \
	$(top_srcdir)/doc/source/example/reference/functions/query_parallel_or/usage_basic.log \
	$(top_srcdir)/doc/source/example/reference/functions/query_parallel_or/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/query_parallel_or/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet/usage_delimiter_regexp.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet/usage_keywords.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet/usage_keywords_from_conditions.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet/usage_max_n_results.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet/usage_tags.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet/usage_width.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet_html/usage.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet_html/usage_basic.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet_html/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/functions/snippet_html/usage_string_literal.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_slice/usage_number.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_slice/usage_regexp_default.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_slice/usage_regexp_name.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_slice/usage_regexp_number.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_slice/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_slice/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_slice/usage_string_literal.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_substring/usage_default.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_substring/usage_negative.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_substring/usage_number.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_substring/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_substring/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/string_substring/usage_string_literal.log \
	$(top_srcdir)/doc/source/example/reference/functions/sub_filter/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/sub_filter/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/sub_filter/usage_with_sub_filter.log \
	$(top_srcdir)/doc/source/example/reference/functions/sub_filter/usage_without_sub_filter.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day/usage_classify.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day/usage_register.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day_of_week/usage_classify.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day_of_week/usage_register.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day_of_week/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/time_classify_day_of_week/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_find/usage_find.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_find/usage_find_mode.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_find/usage_register.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_find/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_find/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_size/usage_only.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_size/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/functions/vector_size/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_product_search_max_element_intervals.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_product_search_options.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_product_search_simple.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_search_additional_last_interval_negative.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_search_additional_last_interval_positive.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_search_max_element_intervals.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_search_max_interval.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_phrase_search_search.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_search_max_element_intervals.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_search_max_element_intervals_extra.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_search_max_element_intervals_omit.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_search_max_interval.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_search_search.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/near_search_word.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/ordered_near_phrase_product_search_simple.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/ordered_near_phrase_search_search.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/setup.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_equal.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_greater_than.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_grouping.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_less_than.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_logical_and.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_logical_not.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_logical_or.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_not_equal.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_regular_expression.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/near_phrase_product_search_operator_options.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/near_phrase_search_operator_additional_last_interval_negative.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/near_phrase_search_operator_additional_last_interval_positive.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/near_phrase_search_operator_max_interval.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/near_search_operator_max_element_intervals.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/near_search_operator_max_element_intervals_extra.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/near_search_operator_max_element_intervals_omit.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_addition_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_and_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_division_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_function.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_grouping.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_left_shift_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_match_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_modulo_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_multiplication_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_near_phrase_product_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_near_phrase_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_or_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_ordered_near_phrase_product_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_ordered_near_phrase_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_regular_expression_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_subtraction_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log \
	$(top_srcdir)/doc/source/example/reference/grn_expr/script_syntax/simple_xor_assignment_operator.log \
	$(top_srcdir)/doc/source/example/reference/indexing-data.log \
	$(top_srcdir)/doc/source/example/reference/indexing-offline-index-construction.log \
	$(top_srcdir)/doc/source/example/reference/indexing-online-index-construction.log \
	$(top_srcdir)/doc/source/example/reference/indexing-schema.log \
	$(top_srcdir)/doc/source/example/reference/indexing-search-after-offline-index-construction.log \
	$(top_srcdir)/doc/source/example/reference/indexing-search-after-online-index-construction.log \
	$(top_srcdir)/doc/source/example/reference/indexing-search-without-index.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/example-load.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/example-table-create.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-auto.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-katakana-gu-small-sounds.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-remove-symbol.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-hyphen-and-prolonged-sound-mark.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-hyphen.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-kana-case-hiragana.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-kana-case-katakana.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-kana-hyphen.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-kana-prolonged-sound-mark.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-kana.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-bu-sounds.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-di-sound.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-du-small-sounds.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-du-sound.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-trailing-o.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-v-sounds.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-wo-sound.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-katakana-zu-small-sounds.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-latin-alphabet-with.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-middle-dot.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-prolonged-sound-mark.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-to-katakana.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-to-romaji-complex.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-to-romaji.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-voiced-sound-mark-hiragana.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-unify-voiced-sound-mark-katakana.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc-version.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc.md \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-katakana-gu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-hyphen-and-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-kana-case-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-kana-case-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-kana-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-kana-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-kana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-bu-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-di-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-du-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-du-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-trailing-o.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-v-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-wo-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-zu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-middle-dot.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-to-romaji-complex.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-to-romaji.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-voiced-sound-mark-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100-unify-voiced-sound-mark-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc100.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-katakana-gu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-hyphen-and-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-kana-case-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-kana-case-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-kana-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-kana-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-kana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-bu-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-di-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-du-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-du-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-trailing-o.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-v-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-wo-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-zu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-middle-dot.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-to-romaji-complex.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-to-romaji.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-voiced-sound-mark-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121-unify-voiced-sound-mark-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc121.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-katakana-gu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-remove-symbol.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-hyphen-and-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-kana-case-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-kana-case-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-kana-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-kana-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-kana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-bu-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-di-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-du-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-du-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-trailing-o.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-v-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-wo-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-zu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-middle-dot.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-to-romaji-complex.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-to-romaji.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-voiced-sound-mark-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130-unify-voiced-sound-mark-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc130.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-katakana-gu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-remove-symbol.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-hyphen-and-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-kana-case-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-kana-case-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-kana-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-kana-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-kana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-bu-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-di-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-du-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-du-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-trailing-o.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-v-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-wo-sound.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-zu-small-sounds.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-latin-alphabet-with.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-middle-dot.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-to-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-to-romaji-complex.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-to-romaji.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-voiced-sound-mark-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150-unify-voiced-sound-mark-katakana.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc150.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-nfkc51.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-table-advanced-usage-prepare.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-table-simple-usage-output.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-table-simple-usage-prepare.log \
	$(top_srcdir)/doc/source/example/reference/normalizers/normalizer-table-simple-usage-unicode-version.log \
	$(top_srcdir)/doc/source/example/reference/operations/prefix_rk_search/usage_register_kana.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/anchor_z.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/character_class_characters.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/character_class_range.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/choice.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/group_back_reference.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/group_scope_reducing.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/index_definitions.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/quantifier_plus.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/search_by_index_filter.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/search_by_index_query.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/usage_filter.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/usage_query.log \
	$(top_srcdir)/doc/source/example/reference/regular_expression/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/scorer/usage_default_and_custom_scorers.log \
	$(top_srcdir)/doc/source/example/reference/scorer/usage_multiple_scorers.log \
	$(top_srcdir)/doc/source/example/reference/scorer/usage_one_no_argument_no_weight.log \
	$(top_srcdir)/doc/source/example/reference/scorer/usage_one_no_argument_weight.log \
	$(top_srcdir)/doc/source/example/reference/scorer/usage_one_one_argument_no_weight.log \
	$(top_srcdir)/doc/source/example/reference/scorer/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/scorer/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/scorers/scorer_tf_at_most/usage_no_weight.log \
	$(top_srcdir)/doc/source/example/reference/scorers/scorer_tf_at_most/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/scorers/scorer_tf_at_most/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/scorers/scorer_tf_idf/usage_no_weight.log \
	$(top_srcdir)/doc/source/example/reference/scorers/scorer_tf_idf/usage_setup_data.log \
	$(top_srcdir)/doc/source/example/reference/scorers/scorer_tf_idf/usage_setup_schema.log \
	$(top_srcdir)/doc/source/example/reference/suggest/complete/registered-word-japan.log \
	$(top_srcdir)/doc/source/example/reference/suggest/complete/registered-word-japanese.log \
	$(top_srcdir)/doc/source/example/reference/suggest/complete/rk-search-nihon.log \
	$(top_srcdir)/doc/source/example/reference/suggest/complete/rk-search-nippon.log \
	$(top_srcdir)/doc/source/example/reference/suggest/complete/select.log \
	$(top_srcdir)/doc/source/example/reference/suggest/complete/update-rk-data.log \
	$(top_srcdir)/doc/source/example/reference/suggest/correction/select.log \
	$(top_srcdir)/doc/source/example/reference/suggest/suggest/select.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/example-table-create.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc-unify-hyphen.md \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc-unify-kana.md \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc-unify-to-romaji.md \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc-version.md \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc-with-token-mecab.md \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc.md \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-hiragana-and-kanji.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-hyphen-and-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-kana-case-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-kana-case-katakana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-kana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-katakana-bu-sounds.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-katakana-di-sound.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-katakana-v-sounds.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-middle-dot.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-to-romaji.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-voiced-sound-mark-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-unify-voiced-sound-mark-katakana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100-with-token-mecab.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc100.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-hiragana-and-kanji.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-hyphen-and-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-hyphen.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-kana-case-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-kana-case-katakana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-kana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-katakana-bu-sounds.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-katakana-v-sounds.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-middle-dot.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-prolonged-sound-mark.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-to-romaji.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-voiced-sound-mark-hiragana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-unify-voiced-sound-mark-katakana.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150-with-token-mecab.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/nfkc150.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/stem-algorithm-option.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/stem.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/stop-word-columns-option.log \
	$(top_srcdir)/doc/source/example/reference/token_filters/stop_word.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-ascii-and-character-type-change-with-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-ascii-and-white-space-with-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-ignore-blank-split-symbol-with-white-spaces-and-symbol-and-alphabet-digit.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-ignore-blank-split-symbol-with-white-spaces-and-symbol-and-alphabet.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-ignore-blank-split-symbol-with-white-spaces-and-symbol.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-ignore-blank-with-white-spaces.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-no-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-non-ascii-with-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-split-symbol-alpha-digit-with-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-split-symbol-alpha-with-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-split-symbol-with-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-with-white-spaces-and-symbol-and-alphabet-and-digit.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-with-white-spaces-and-symbol-and-alphabet.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-with-white-spaces-and-symbol.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-bigram-with-white-spaces.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-delimit-delimiter-option-multiple-delimiters.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-delimit-delimiter-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-delimit-null.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-delimit-pattern-option-with-complex-pattern.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-delimit-pattern-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-delimit.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab-include-class-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab-include-form-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab-include-reading-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab-target-class-and-include-class-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab-target-class-option-complex.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab-target-class-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab-use-reading-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-mecab.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-bi-gram.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-loose-symbol-and-loose-blank.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-no-option-with-normalizer.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-no-option.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-no-report-source-location.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-report-source-location.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-tri-gram.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-uni-gram.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-unify-alphabet.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-unify-digit.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-ngram-unify-symbol.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-pattern-schema.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-pattern-search-apple.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-pattern-search-raspberry.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-regexp-add.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-table-schema.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-table-search-raspberry.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-table-search-stargazy.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-trigram-non-ascii.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-trigram.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-unigram-non-ascii.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/token-unigram.log \
	$(top_srcdir)/doc/source/example/reference/tokenizers/tokenize-example.log \
	$(top_srcdir)/doc/source/example/reference/window_functions/window_rank/usage_group.log \
	$(top_srcdir)/doc/source/example/reference/window_functions/window_rank/usage_group_descending.log \
	$(top_srcdir)/doc/source/example/reference/window_functions/window_rank/usage_setup.log \
	$(top_srcdir)/doc/source/example/reference/window_functions/window_rank/usage_sort_keys.log \
	$(top_srcdir)/doc/source/example/spec/gqtp/client.log \
	$(top_srcdir)/doc/source/example/tutorial/data-1.log \
	$(top_srcdir)/doc/source/example/tutorial/data-2.log \
	$(top_srcdir)/doc/source/example/tutorial/data-3.log \
	$(top_srcdir)/doc/source/example/tutorial/data-4.log \
	$(top_srcdir)/doc/source/example/tutorial/data-5.log \
	$(top_srcdir)/doc/source/example/tutorial/data-6.log \
	$(top_srcdir)/doc/source/example/tutorial/data-7.log \
	$(top_srcdir)/doc/source/example/tutorial/data-8.log \
	$(top_srcdir)/doc/source/example/tutorial/drilldown-1.log \
	$(top_srcdir)/doc/source/example/tutorial/drilldown-country.log \
	$(top_srcdir)/doc/source/example/tutorial/drilldown-domain.log \
	$(top_srcdir)/doc/source/example/tutorial/drilldown-limit.log \
	$(top_srcdir)/doc/source/example/tutorial/drilldown-multiple-column.log \
	$(top_srcdir)/doc/source/example/tutorial/drilldown-output-columns.log \
	$(top_srcdir)/doc/source/example/tutorial/drilldown-sortby.log \
	$(top_srcdir)/doc/source/example/tutorial/index-1.log \
	$(top_srcdir)/doc/source/example/tutorial/index-2.log \
	$(top_srcdir)/doc/source/example/tutorial/index-3.log \
	$(top_srcdir)/doc/source/example/tutorial/index-4.log \
	$(top_srcdir)/doc/source/example/tutorial/index-5.log \
	$(top_srcdir)/doc/source/example/tutorial/index-6.log \
	$(top_srcdir)/doc/source/example/tutorial/index-7.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-1.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-10.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-11.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-12.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-13.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-14.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-15.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-16.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-17.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-18.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-2.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-3.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-4.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-5.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-6.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-7.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-8.log \
	$(top_srcdir)/doc/source/example/tutorial/introduction-9.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-1.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-2.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-3.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-4.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-indexes-with-weight.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-nested-index-data-with-three-relationship.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-nested-index-data.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-nested-index-schema-with-three-relationship.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-nested-index-schema.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-nested-index-select-with-three-relationship.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-nested-index-select.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-specific-body-index.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-specific-index-schema.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-specific-title-index.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-specific-whole-with-body.log \
	$(top_srcdir)/doc/source/example/tutorial/match_columns-specific-whole-with-title.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_drilldown.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_favorite.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_follower.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_hash_tag.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_keyword.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_keyword_and_location.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_last_modified.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_now.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_posted_by.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_score.log \
	$(top_srcdir)/doc/source/example/tutorial/micro_blog_user.log \
	$(top_srcdir)/doc/source/example/tutorial/network-3.log \
	$(top_srcdir)/doc/source/example/tutorial/patricia_trie-2.log \
	$(top_srcdir)/doc/source/example/tutorial/patricia_trie_prefix_search.log \
	$(top_srcdir)/doc/source/example/tutorial/query_expansion-1.log \
	$(top_srcdir)/doc/source/example/tutorial/query_expansion-2.log \
	$(top_srcdir)/doc/source/example/tutorial/query_expansion-3.log \
	$(top_srcdir)/doc/source/example/tutorial/search-1.log \
	$(top_srcdir)/doc/source/example/tutorial/search-2.log \
	$(top_srcdir)/doc/source/example/tutorial/search-3.log \
	$(top_srcdir)/doc/source/example/tutorial/search-4.log \
	$(top_srcdir)/doc/source/example/tutorial/search-5.log \
	$(top_srcdir)/doc/source/example/tutorial/search-6.log \
	$(top_srcdir)/doc/source/example/tutorial/search-7.log \
	$(top_srcdir)/doc/source/images/fulltext-introduction/array.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/array.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/columns.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/columns.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/hash-table.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/hash-table.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/index-column.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/index-column.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/inverted-index.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/inverted-index.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/patricia-trie.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/patricia-trie.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/prefix-search.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/prefix-search.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/record-id.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/record-id.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/record.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/record.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/scalar-column.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/scalar-column.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-bigram-index-column-value.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-bigram-index-column-value.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-bigram-token-id.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-bigram-token-id.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-bigram.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-bigram.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-choose-tokenizer.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-choose-tokenizer.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-first-index-column-value.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-first-index-column-value.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-first-token-id.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-first-token-id.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-initial-state.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-initial-state.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-on-key-table.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-on-key-table.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-result.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-result.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-second-index-column-value.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-second-index-column-value.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-second-token-id.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/search-second-token-id.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/tokenizer.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/tokenizer.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-initial.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-initial.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-first-data-first-token.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-first-data-first-token.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-first-data-second-token.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-first-data-second-token.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-second-data-first-token.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-second-data-first-token.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-second-data-second-token.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-process-second-data-second-token.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-save-first-data.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-save-first-data.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-save-second-data.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/update-save-second-data.svg \
	$(top_srcdir)/doc/source/images/fulltext-introduction/vector-column.png \
	$(top_srcdir)/doc/source/images/fulltext-introduction/vector-column.svg \
	$(top_srcdir)/doc/source/images/geo-encode-leading-2bit.png \
	$(top_srcdir)/doc/source/images/geo-encode-leading-2bit.svg \
	$(top_srcdir)/doc/source/images/geo-encode-leading-4bit.png \
	$(top_srcdir)/doc/source/images/geo-encode-leading-4bit.svg \
	$(top_srcdir)/doc/source/images/geo-in-rectangle.png \
	$(top_srcdir)/doc/source/images/geo-points-distance.png \
	$(top_srcdir)/doc/source/images/geo-points-distance.svg \
	$(top_srcdir)/doc/source/images/geo-points-in-circle.png \
	$(top_srcdir)/doc/source/images/geo-points-in-circle.svg \
	$(top_srcdir)/doc/source/images/geo-points-in-rectangle.png \
	$(top_srcdir)/doc/source/images/geo-points-in-rectangle.svg \
	$(top_srcdir)/doc/source/images/geo-points-sort.png \
	$(top_srcdir)/doc/source/images/geo-points-sort.svg \
	$(top_srcdir)/doc/source/images/geo-points.png \
	$(top_srcdir)/doc/source/images/geo-points.svg \
	$(top_srcdir)/doc/source/images/geo-search-in-circle.png \
	$(top_srcdir)/doc/source/images/geo-search-in-circle.svg \
	$(top_srcdir)/doc/source/images/geo-search-in-rectangle.png \
	$(top_srcdir)/doc/source/images/geo-search-in-rectangle.svg \
	$(top_srcdir)/doc/source/images/reference/tokenizers/used-when-indexing.png \
	$(top_srcdir)/doc/source/images/reference/tokenizers/used-when-indexing.svg \
	$(top_srcdir)/doc/source/images/reference/tokenizers/used-when-searching.png \
	$(top_srcdir)/doc/source/images/reference/tokenizers/used-when-searching.svg \
	$(top_srcdir)/doc/source/images/zulip-icon-128x128.png \
	$(top_srcdir)/doc/source/index.rst \
	$(top_srcdir)/doc/source/install.rst \
	$(top_srcdir)/doc/source/install/almalinux.rst \
	$(top_srcdir)/doc/source/install/amazon_linux.rst \
	$(top_srcdir)/doc/source/install/centos.rst \
	$(top_srcdir)/doc/source/install/cmake.md \
	$(top_srcdir)/doc/source/install/debian.rst \
	$(top_srcdir)/doc/source/install/docker.rst \
	$(top_srcdir)/doc/source/install/mac_os_x.rst \
	$(top_srcdir)/doc/source/install/others.rst \
	$(top_srcdir)/doc/source/install/server-use.md \
	$(top_srcdir)/doc/source/install/server-use.rst \
	$(top_srcdir)/doc/source/install/ubuntu.md \
	$(top_srcdir)/doc/source/install/windows.rst \
	$(top_srcdir)/doc/source/limitations.rst \
	$(top_srcdir)/doc/source/news.rst \
	$(top_srcdir)/doc/source/news/0.rst \
	$(top_srcdir)/doc/source/news/1.0.rst \
	$(top_srcdir)/doc/source/news/1.1.rst \
	$(top_srcdir)/doc/source/news/1.2.rst \
	$(top_srcdir)/doc/source/news/1.3.rst \
	$(top_srcdir)/doc/source/news/10.rst \
	$(top_srcdir)/doc/source/news/11.rst \
	$(top_srcdir)/doc/source/news/12.rst \
	$(top_srcdir)/doc/source/news/13.md \
	$(top_srcdir)/doc/source/news/14.md \
	$(top_srcdir)/doc/source/news/15.md \
	$(top_srcdir)/doc/source/news/2.rst \
	$(top_srcdir)/doc/source/news/3.rst \
	$(top_srcdir)/doc/source/news/4.rst \
	$(top_srcdir)/doc/source/news/5.rst \
	$(top_srcdir)/doc/source/news/6.rst \
	$(top_srcdir)/doc/source/news/7.rst \
	$(top_srcdir)/doc/source/news/8.rst \
	$(top_srcdir)/doc/source/news/9.rst \
	$(top_srcdir)/doc/source/news/senna.rst \
	$(top_srcdir)/doc/source/origin.md \
	$(top_srcdir)/doc/source/reference.rst \
	$(top_srcdir)/doc/source/reference/alias.rst \
	$(top_srcdir)/doc/source/reference/api.rst \
	$(top_srcdir)/doc/source/reference/api/global_configurations.rst \
	$(top_srcdir)/doc/source/reference/api/grn_cache.rst \
	$(top_srcdir)/doc/source/reference/api/grn_column.rst \
	$(top_srcdir)/doc/source/reference/api/grn_command_version.rst \
	$(top_srcdir)/doc/source/reference/api/grn_content_type.rst \
	$(top_srcdir)/doc/source/reference/api/grn_ctx.rst \
	$(top_srcdir)/doc/source/reference/api/grn_db.rst \
	$(top_srcdir)/doc/source/reference/api/grn_encoding.rst \
	$(top_srcdir)/doc/source/reference/api/grn_expr.rst \
	$(top_srcdir)/doc/source/reference/api/grn_geo.rst \
	$(top_srcdir)/doc/source/reference/api/grn_hook.rst \
	$(top_srcdir)/doc/source/reference/api/grn_ii.rst \
	$(top_srcdir)/doc/source/reference/api/grn_index_cursor.rst \
	$(top_srcdir)/doc/source/reference/api/grn_info.rst \
	$(top_srcdir)/doc/source/reference/api/grn_inspect.rst \
	$(top_srcdir)/doc/source/reference/api/grn_match_escalation.rst \
	$(top_srcdir)/doc/source/reference/api/grn_obj.rst \
	$(top_srcdir)/doc/source/reference/api/grn_proc.rst \
	$(top_srcdir)/doc/source/reference/api/grn_search.rst \
	$(top_srcdir)/doc/source/reference/api/grn_table.rst \
	$(top_srcdir)/doc/source/reference/api/grn_table_cursor.rst \
	$(top_srcdir)/doc/source/reference/api/grn_thread.rst \
	$(top_srcdir)/doc/source/reference/api/grn_type.rst \
	$(top_srcdir)/doc/source/reference/api/grn_user_data.rst \
	$(top_srcdir)/doc/source/reference/api/overview.rst \
	$(top_srcdir)/doc/source/reference/api/plugin.rst \
	$(top_srcdir)/doc/source/reference/cast.rst \
	$(top_srcdir)/doc/source/reference/column.rst \
	$(top_srcdir)/doc/source/reference/columns/index.rst \
	$(top_srcdir)/doc/source/reference/columns/pseudo.rst \
	$(top_srcdir)/doc/source/reference/columns/scalar.rst \
	$(top_srcdir)/doc/source/reference/columns/vector.rst \
	$(top_srcdir)/doc/source/reference/command.rst \
	$(top_srcdir)/doc/source/reference/command/command_version.rst \
	$(top_srcdir)/doc/source/reference/command/n_workers.md \
	$(top_srcdir)/doc/source/reference/command/output_format.rst \
	$(top_srcdir)/doc/source/reference/command/output_trace_log.md \
	$(top_srcdir)/doc/source/reference/command/pretty_print.rst \
	$(top_srcdir)/doc/source/reference/command/request_id.rst \
	$(top_srcdir)/doc/source/reference/command/request_timeout.rst \
	$(top_srcdir)/doc/source/reference/command/return_code.rst \
	$(top_srcdir)/doc/source/reference/command/return_codes/grn_input_output_error.rst \
	$(top_srcdir)/doc/source/reference/command/return_codes/grn_invalid_argument.rst \
	$(top_srcdir)/doc/source/reference/command/return_codes/grn_no_such_file_or_directory.rst \
	$(top_srcdir)/doc/source/reference/command/return_codes/grn_not_enough_space.rst \
	$(top_srcdir)/doc/source/reference/command/return_codes/grn_operation_not_permitted.rst \
	$(top_srcdir)/doc/source/reference/command/return_codes/grn_resource_deadlock_avoided.rst \
	$(top_srcdir)/doc/source/reference/commands/cache_limit.rst \
	$(top_srcdir)/doc/source/reference/commands/check.rst \
	$(top_srcdir)/doc/source/reference/commands/clearlock.rst \
	$(top_srcdir)/doc/source/reference/commands/column_copy.rst \
	$(top_srcdir)/doc/source/reference/commands/column_create.rst \
	$(top_srcdir)/doc/source/reference/commands/column_list.rst \
	$(top_srcdir)/doc/source/reference/commands/column_remove.rst \
	$(top_srcdir)/doc/source/reference/commands/column_rename.rst \
	$(top_srcdir)/doc/source/reference/commands/compress_filter.rst \
	$(top_srcdir)/doc/source/reference/commands/config_delete.rst \
	$(top_srcdir)/doc/source/reference/commands/config_get.rst \
	$(top_srcdir)/doc/source/reference/commands/config_set.rst \
	$(top_srcdir)/doc/source/reference/commands/database_unmap.rst \
	$(top_srcdir)/doc/source/reference/commands/define_selector.rst \
	$(top_srcdir)/doc/source/reference/commands/defrag.rst \
	$(top_srcdir)/doc/source/reference/commands/delete.rst \
	$(top_srcdir)/doc/source/reference/commands/dump.rst \
	$(top_srcdir)/doc/source/reference/commands/index_column_diff.rst \
	$(top_srcdir)/doc/source/reference/commands/io_flush.rst \
	$(top_srcdir)/doc/source/reference/commands/load.rst \
	$(top_srcdir)/doc/source/reference/commands/lock_acquire.rst \
	$(top_srcdir)/doc/source/reference/commands/lock_clear.rst \
	$(top_srcdir)/doc/source/reference/commands/lock_release.rst \
	$(top_srcdir)/doc/source/reference/commands/log_level.rst \
	$(top_srcdir)/doc/source/reference/commands/log_put.rst \
	$(top_srcdir)/doc/source/reference/commands/log_reopen.rst \
	$(top_srcdir)/doc/source/reference/commands/logical_count.rst \
	$(top_srcdir)/doc/source/reference/commands/logical_parameters.rst \
	$(top_srcdir)/doc/source/reference/commands/logical_range_filter.rst \
	$(top_srcdir)/doc/source/reference/commands/logical_select.rst \
	$(top_srcdir)/doc/source/reference/commands/logical_shard_list.rst \
	$(top_srcdir)/doc/source/reference/commands/logical_table_remove.rst \
	$(top_srcdir)/doc/source/reference/commands/normalize.rst \
	$(top_srcdir)/doc/source/reference/commands/normalizer_list.rst \
	$(top_srcdir)/doc/source/reference/commands/object_exist.rst \
	$(top_srcdir)/doc/source/reference/commands/object_inspect.rst \
	$(top_srcdir)/doc/source/reference/commands/object_list.rst \
	$(top_srcdir)/doc/source/reference/commands/object_remove.rst \
	$(top_srcdir)/doc/source/reference/commands/plugin_register.rst \
	$(top_srcdir)/doc/source/reference/commands/plugin_unregister.rst \
	$(top_srcdir)/doc/source/reference/commands/query_expand.rst \
	$(top_srcdir)/doc/source/reference/commands/quit.rst \
	$(top_srcdir)/doc/source/reference/commands/range_filter.rst \
	$(top_srcdir)/doc/source/reference/commands/reference_acquire.rst \
	$(top_srcdir)/doc/source/reference/commands/reference_release.rst \
	$(top_srcdir)/doc/source/reference/commands/register.rst \
	$(top_srcdir)/doc/source/reference/commands/reindex.rst \
	$(top_srcdir)/doc/source/reference/commands/request_cancel.rst \
	$(top_srcdir)/doc/source/reference/commands/ruby_eval.rst \
	$(top_srcdir)/doc/source/reference/commands/schema.rst \
	$(top_srcdir)/doc/source/reference/commands/select.rst \
	$(top_srcdir)/doc/source/reference/commands/shutdown.rst \
	$(top_srcdir)/doc/source/reference/commands/status.rst \
	$(top_srcdir)/doc/source/reference/commands/suggest.rst \
	$(top_srcdir)/doc/source/reference/commands/table_copy.rst \
	$(top_srcdir)/doc/source/reference/commands/table_create.rst \
	$(top_srcdir)/doc/source/reference/commands/table_list.rst \
	$(top_srcdir)/doc/source/reference/commands/table_remove.rst \
	$(top_srcdir)/doc/source/reference/commands/table_rename.rst \
	$(top_srcdir)/doc/source/reference/commands/table_tokenize.rst \
	$(top_srcdir)/doc/source/reference/commands/thread_dump.rst \
	$(top_srcdir)/doc/source/reference/commands/thread_limit.rst \
	$(top_srcdir)/doc/source/reference/commands/tokenize.rst \
	$(top_srcdir)/doc/source/reference/commands/tokenizer_list.rst \
	$(top_srcdir)/doc/source/reference/commands/truncate.rst \
	$(top_srcdir)/doc/source/reference/configuration.rst \
	$(top_srcdir)/doc/source/reference/executables.rst \
	$(top_srcdir)/doc/source/reference/executables/grndb.rst \
	$(top_srcdir)/doc/source/reference/executables/grnslap.rst \
	$(top_srcdir)/doc/source/reference/executables/groonga-benchmark.rst \
	$(top_srcdir)/doc/source/reference/executables/groonga-httpd.rst \
	$(top_srcdir)/doc/source/reference/executables/groonga-server-http.rst \
	$(top_srcdir)/doc/source/reference/executables/groonga-suggest-create-dataset.rst \
	$(top_srcdir)/doc/source/reference/executables/groonga-suggest-httpd.rst \
	$(top_srcdir)/doc/source/reference/executables/groonga-suggest-learner.rst \
	$(top_srcdir)/doc/source/reference/executables/groonga.rst \
	$(top_srcdir)/doc/source/reference/function.rst \
	$(top_srcdir)/doc/source/reference/functions/between.rst \
	$(top_srcdir)/doc/source/reference/functions/cast_loose.rst \
	$(top_srcdir)/doc/source/reference/functions/edit_distance.rst \
	$(top_srcdir)/doc/source/reference/functions/escalate.rst \
	$(top_srcdir)/doc/source/reference/functions/fuzzy_search.rst \
	$(top_srcdir)/doc/source/reference/functions/geo_distance.rst \
	$(top_srcdir)/doc/source/reference/functions/geo_in_circle.rst \
	$(top_srcdir)/doc/source/reference/functions/geo_in_rectangle.rst \
	$(top_srcdir)/doc/source/reference/functions/highlight.rst \
	$(top_srcdir)/doc/source/reference/functions/highlight_full.rst \
	$(top_srcdir)/doc/source/reference/functions/highlight_html.rst \
	$(top_srcdir)/doc/source/reference/functions/html_untag.rst \
	$(top_srcdir)/doc/source/reference/functions/in_records.rst \
	$(top_srcdir)/doc/source/reference/functions/in_values.rst \
	$(top_srcdir)/doc/source/reference/functions/language_model_vectorize.md \
	$(top_srcdir)/doc/source/reference/functions/math_abs.rst \
	$(top_srcdir)/doc/source/reference/functions/now.rst \
	$(top_srcdir)/doc/source/reference/functions/number_classify.rst \
	$(top_srcdir)/doc/source/reference/functions/prefix_rk_search.rst \
	$(top_srcdir)/doc/source/reference/functions/query.rst \
	$(top_srcdir)/doc/source/reference/functions/query_parallel_or.rst \
	$(top_srcdir)/doc/source/reference/functions/rand.rst \
	$(top_srcdir)/doc/source/reference/functions/snippet.rst \
	$(top_srcdir)/doc/source/reference/functions/snippet_html.rst \
	$(top_srcdir)/doc/source/reference/functions/string_length.rst \
	$(top_srcdir)/doc/source/reference/functions/string_slice.rst \
	$(top_srcdir)/doc/source/reference/functions/string_substring.rst \
	$(top_srcdir)/doc/source/reference/functions/sub_filter.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_day.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_day_of_week.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_hour.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_minute.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_month.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_second.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_week.rst \
	$(top_srcdir)/doc/source/reference/functions/time_classify_year.rst \
	$(top_srcdir)/doc/source/reference/functions/vector_find.rst \
	$(top_srcdir)/doc/source/reference/functions/vector_new.rst \
	$(top_srcdir)/doc/source/reference/functions/vector_size.rst \
	$(top_srcdir)/doc/source/reference/functions/vector_slice.rst \
	$(top_srcdir)/doc/source/reference/grn_expr.rst \
	$(top_srcdir)/doc/source/reference/grn_expr/query_syntax.rst \
	$(top_srcdir)/doc/source/reference/grn_expr/script_syntax.rst \
	$(top_srcdir)/doc/source/reference/indexing.rst \
	$(top_srcdir)/doc/source/reference/language_model.md \
	$(top_srcdir)/doc/source/reference/log.rst \
	$(top_srcdir)/doc/source/reference/normalizers.rst \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_auto.rst \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_nfkc.md \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_nfkc100.rst \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_nfkc121.rst \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_nfkc130.rst \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_nfkc150.rst \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_nfkc51.rst \
	$(top_srcdir)/doc/source/reference/normalizers/normalizer_table.rst \
	$(top_srcdir)/doc/source/reference/operations.rst \
	$(top_srcdir)/doc/source/reference/operations/geolocation_search.rst \
	$(top_srcdir)/doc/source/reference/operations/prefix_rk_search.rst \
	$(top_srcdir)/doc/source/reference/output.rst \
	$(top_srcdir)/doc/source/reference/query_expanders.rst \
	$(top_srcdir)/doc/source/reference/query_expanders/tsv.rst \
	$(top_srcdir)/doc/source/reference/regular_expression.rst \
	$(top_srcdir)/doc/source/reference/scorer.rst \
	$(top_srcdir)/doc/source/reference/scorers/scorer_tf_at_most.rst \
	$(top_srcdir)/doc/source/reference/scorers/scorer_tf_idf.rst \
	$(top_srcdir)/doc/source/reference/scoring_note.rst \
	$(top_srcdir)/doc/source/reference/sharding.rst \
	$(top_srcdir)/doc/source/reference/suggest.rst \
	$(top_srcdir)/doc/source/reference/suggest/completion.rst \
	$(top_srcdir)/doc/source/reference/suggest/correction.rst \
	$(top_srcdir)/doc/source/reference/suggest/introduction.rst \
	$(top_srcdir)/doc/source/reference/suggest/suggestion.rst \
	$(top_srcdir)/doc/source/reference/tables.rst \
	$(top_srcdir)/doc/source/reference/token_filter/summary.rst \
	$(top_srcdir)/doc/source/reference/token_filters.rst \
	$(top_srcdir)/doc/source/reference/token_filters/token_filter_nfkc.md \
	$(top_srcdir)/doc/source/reference/token_filters/token_filter_nfkc100.rst \
	$(top_srcdir)/doc/source/reference/token_filters/token_filter_nfkc150.rst \
	$(top_srcdir)/doc/source/reference/token_filters/token_filter_stem.rst \
	$(top_srcdir)/doc/source/reference/token_filters/token_filter_stop_word.rst \
	$(top_srcdir)/doc/source/reference/tokenizer/summary.rst \
	$(top_srcdir)/doc/source/reference/tokenizers.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram_ignore_blank.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram_ignore_blank_split_symbol.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram_split_symbol.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram_split_symbol_alpha.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_bigram_split_symbol_alpha_digit.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_delimit.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_delimit_null.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_mecab.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_ngram.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_pattern.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_regexp.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_table.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_trigram.rst \
	$(top_srcdir)/doc/source/reference/tokenizers/token_unigram.rst \
	$(top_srcdir)/doc/source/reference/tuning.rst \
	$(top_srcdir)/doc/source/reference/types.rst \
	$(top_srcdir)/doc/source/reference/window_function.rst \
	$(top_srcdir)/doc/source/reference/window_functions/record_number.rst \
	$(top_srcdir)/doc/source/reference/window_functions/window_count.rst \
	$(top_srcdir)/doc/source/reference/window_functions/window_rank.rst \
	$(top_srcdir)/doc/source/reference/window_functions/window_record_number.rst \
	$(top_srcdir)/doc/source/reference/window_functions/window_sum.rst \
	$(top_srcdir)/doc/source/server.rst \
	$(top_srcdir)/doc/source/server/gqtp.rst \
	$(top_srcdir)/doc/source/server/http.rst \
	$(top_srcdir)/doc/source/server/http/comparison.rst \
	$(top_srcdir)/doc/source/server/http/groonga-httpd.rst \
	$(top_srcdir)/doc/source/server/http/groonga.rst \
	$(top_srcdir)/doc/source/server/memcached.rst \
	$(top_srcdir)/doc/source/server/package.rst \
	$(top_srcdir)/doc/source/spec.rst \
	$(top_srcdir)/doc/source/spec/gqtp.rst \
	$(top_srcdir)/doc/source/spec/search.rst \
	$(top_srcdir)/doc/source/textile.py \
	$(top_srcdir)/doc/source/troubleshooting.rst \
	$(top_srcdir)/doc/source/troubleshooting/different_results_with_the_same_keyword.rst \
	$(top_srcdir)/doc/source/troubleshooting/how_to_analyze_error_message.rst \
	$(top_srcdir)/doc/source/troubleshooting/mmap_cannot_allocate_memory.rst \
	$(top_srcdir)/doc/source/tutorial.rst \
	$(top_srcdir)/doc/source/tutorial/data.rst \
	$(top_srcdir)/doc/source/tutorial/drilldown.rst \
	$(top_srcdir)/doc/source/tutorial/index.rst \
	$(top_srcdir)/doc/source/tutorial/introduction.rst \
	$(top_srcdir)/doc/source/tutorial/lexicon.rst \
	$(top_srcdir)/doc/source/tutorial/match_columns.rst \
	$(top_srcdir)/doc/source/tutorial/micro_blog.rst \
	$(top_srcdir)/doc/source/tutorial/network.rst \
	$(top_srcdir)/doc/source/tutorial/patricia_trie.rst \
	$(top_srcdir)/doc/source/tutorial/query_expansion.rst \
	$(top_srcdir)/doc/source/tutorial/search.rst \
	$(NULL)

source_files_relative_from_doc_dir = \
	source/__init__.py \
	source/_static/favicon.ico \
	source/_static/groonga.png \
	source/_static/switcher.json \
	source/characteristic.rst \
	source/client.rst \
	source/community.rst \
	source/conf.py \
	source/contribution.rst \
	source/contribution/development.rst \
	source/contribution/development/build.rst \
	source/contribution/development/build/unix_autotools.rst \
	source/contribution/development/build/unix_cmake.rst \
	source/contribution/development/build/windows_cmake.rst \
	source/contribution/development/com.rst \
	source/contribution/development/cooperation.rst \
	source/contribution/development/query.rst \
	source/contribution/development/release.rst \
	source/contribution/development/repository.rst \
	source/contribution/development/test.rst \
	source/contribution/documentation.rst \
	source/contribution/documentation/c-api.rst \
	source/contribution/documentation/i18n.rst \
	source/contribution/documentation/introduction.md \
	source/contribution/report.rst \
	source/development.rst \
	source/development/travis-ci.rst \
	source/example/reference/alias/existing_name.log \
	source/example/reference/alias/register.log \
	source/example/reference/alias/schema.log \
	source/example/reference/alias/select_age.log \
	source/example/reference/alias/select_age_after_rename.log \
	source/example/reference/alias/select_age_by_alias.log \
	source/example/reference/alias/table_and_column.log \
	source/example/reference/columns/vector/usage_adjuster_weight.log \
	source/example/reference/columns/vector/usage_create_normal.log \
	source/example/reference/columns/vector/usage_create_weight.log \
	source/example/reference/columns/vector/usage_filter_normal.log \
	source/example/reference/columns/vector/usage_filter_weight.log \
	source/example/reference/columns/vector/usage_index_normal.log \
	source/example/reference/columns/vector/usage_index_weight.log \
	source/example/reference/columns/vector/usage_load_normal.log \
	source/example/reference/columns/vector/usage_load_weight.log \
	source/example/reference/columns/vector/usage_output_normal.log \
	source/example/reference/columns/vector/usage_output_weight.log \
	source/example/reference/columns/vector/usage_query_normal.log \
	source/example/reference/columns/vector/usage_query_weight.log \
	source/example/reference/columns/vector/usage_query_weight_normal.log \
	source/example/reference/columns/vector/usage_query_weight_weight.log \
	source/example/reference/command/n_workers/status.md \
	source/example/reference/commands/cache_limit/get.log \
	source/example/reference/commands/cache_limit/set.log \
	source/example/reference/commands/column_copy/change_column_type.log \
	source/example/reference/commands/column_copy/change_column_type_setup.log \
	source/example/reference/commands/column_copy/change_column_value_type.log \
	source/example/reference/commands/column_copy/change_column_value_type_setup.log \
	source/example/reference/commands/column_copy/change_table_key_type.log \
	source/example/reference/commands/column_copy/change_table_key_type_setup.log \
	source/example/reference/commands/column_copy/change_table_type.log \
	source/example/reference/commands/column_copy/change_table_type_setup.log \
	source/example/reference/commands/column_copy/from_table.log \
	source/example/reference/commands/column_copy/from_table_setup.log \
	source/example/reference/commands/column_copy/move_column.log \
	source/example/reference/commands/column_copy/move_column_setup.log \
	source/example/reference/commands/column_copy/to_table.log \
	source/example/reference/commands/column_copy/to_table_setup.log \
	source/example/reference/commands/column_create/generated_column_load.log \
	source/example/reference/commands/column_create/generated_column_schema.log \
	source/example/reference/commands/column_create/invalid_mode_scalar_load_initial.log \
	source/example/reference/commands/column_create/invalid_mode_scalar_load_update.log \
	source/example/reference/commands/column_create/invalid_mode_scalar_schema.log \
	source/example/reference/commands/column_create/invalid_mode_vector_load.log \
	source/example/reference/commands/column_create/invalid_mode_vector_schema.log \
	source/example/reference/commands/column_create/missing_mode_scalar_load.log \
	source/example/reference/commands/column_create/missing_mode_scalar_schema.log \
	source/example/reference/commands/column_create/missing_mode_vector_load.log \
	source/example/reference/commands/column_create/missing_mode_vector_schema.log \
	source/example/reference/commands/column_create/usage_full_text_search_index_create_column.log \
	source/example/reference/commands/column_create/usage_full_text_search_index_create_table.log \
	source/example/reference/commands/column_create/usage_full_text_search_index_select.log \
	source/example/reference/commands/column_create/usage_index_create_column.log \
	source/example/reference/commands/column_create/usage_index_create_table.log \
	source/example/reference/commands/column_create/usage_index_select.log \
	source/example/reference/commands/column_create/usage_large_index_create_column.log \
	source/example/reference/commands/column_create/usage_medium_index_create_column.log \
	source/example/reference/commands/column_create/usage_multiple_columns_index_create_column.log \
	source/example/reference/commands/column_create/usage_multiple_columns_index_create_table.log \
	source/example/reference/commands/column_create/usage_multiple_columns_index_select.log \
	source/example/reference/commands/column_create/usage_reference_create_column.log \
	source/example/reference/commands/column_create/usage_reference_create_table.log \
	source/example/reference/commands/column_create/usage_reference_load.log \
	source/example/reference/commands/column_create/usage_reference_select.log \
	source/example/reference/commands/column_create/usage_scalar_create.log \
	source/example/reference/commands/column_create/usage_scalar_load.log \
	source/example/reference/commands/column_create/usage_scalar_select.log \
	source/example/reference/commands/column_create/usage_small_index_create_column.log \
	source/example/reference/commands/column_create/usage_table.log \
	source/example/reference/commands/column_create/usage_vector_create.log \
	source/example/reference/commands/column_create/usage_vector_load.log \
	source/example/reference/commands/column_create/usage_vector_select.log \
	source/example/reference/commands/column_list/column_list.log \
	source/example/reference/commands/column_rename/column_rename.log \
	source/example/reference/commands/config_delete/existent.log \
	source/example/reference/commands/config_delete/nonexistent.log \
	source/example/reference/commands/config_get/existent.log \
	source/example/reference/commands/config_get/nonexistent.log \
	source/example/reference/commands/config_set/set_and_get.log \
	source/example/reference/commands/database_unmap/usage_failure.log \
	source/example/reference/commands/database_unmap/usage_success.log \
	source/example/reference/commands/delete/cascade.log \
	source/example/reference/commands/delete/status.log \
	source/example/reference/commands/index_column_diff/index_column.log \
	source/example/reference/commands/io_flush/all.log \
	source/example/reference/commands/io_flush/only_opened_yes.log \
	source/example/reference/commands/io_flush/recursive_default.log \
	source/example/reference/commands/io_flush/recursive_invalid.log \
	source/example/reference/commands/io_flush/recursive_no.log \
	source/example/reference/commands/io_flush/recursive_yes.log \
	source/example/reference/commands/io_flush/target_name_column.log \
	source/example/reference/commands/io_flush/target_name_database.log \
	source/example/reference/commands/io_flush/target_name_table.log \
	source/example/reference/commands/load/usage_lock_table.log \
	source/example/reference/commands/load/usage_parameter.log \
	source/example/reference/commands/load/usage_setup.log \
	source/example/reference/commands/load/usage_standard_input.log \
	source/example/reference/commands/lock_acquire/column.log \
	source/example/reference/commands/lock_acquire/database.log \
	source/example/reference/commands/lock_acquire/database_release.log \
	source/example/reference/commands/lock_acquire/table.log \
	source/example/reference/commands/lock_clear/column.log \
	source/example/reference/commands/lock_clear/database.log \
	source/example/reference/commands/lock_clear/table.log \
	source/example/reference/commands/lock_release/column.log \
	source/example/reference/commands/lock_release/database.log \
	source/example/reference/commands/lock_release/database_release.log \
	source/example/reference/commands/lock_release/table.log \
	source/example/reference/commands/logical_count/cache_no.log \
	source/example/reference/commands/logical_count/columns_name_flags.log \
	source/example/reference/commands/logical_count/columns_name_stage.log \
	source/example/reference/commands/logical_count/columns_name_type.log \
	source/example/reference/commands/logical_count/columns_name_value.log \
	source/example/reference/commands/logical_count/columns_name_window_group_keys.log \
	source/example/reference/commands/logical_count/columns_name_window_sort_keys.log \
	source/example/reference/commands/logical_count/count_shutdown.log \
	source/example/reference/commands/logical_count/filter.log \
	source/example/reference/commands/logical_count/logical_table_existent.log \
	source/example/reference/commands/logical_count/logical_table_nonexistent.log \
	source/example/reference/commands/logical_count/max.log \
	source/example/reference/commands/logical_count/max_border.log \
	source/example/reference/commands/logical_count/min.log \
	source/example/reference/commands/logical_count/min_border.log \
	source/example/reference/commands/logical_count/post_filter.log \
	source/example/reference/commands/logical_count/setup_data.log \
	source/example/reference/commands/logical_count/setup_schema.log \
	source/example/reference/commands/logical_count/usage.log \
	source/example/reference/commands/logical_count/usage_plugin_register.log \
	source/example/reference/commands/logical_count/window_function_for_over_shard.log \
	source/example/reference/commands/logical_parameters/range_index_always.log \
	source/example/reference/commands/logical_parameters/range_index_auto.log \
	source/example/reference/commands/logical_parameters/range_index_never.log \
	source/example/reference/commands/logical_parameters/usage_get.log \
	source/example/reference/commands/logical_parameters/usage_register.log \
	source/example/reference/commands/logical_parameters/usage_set.log \
	source/example/reference/commands/logical_range_filter/cache_no.log \
	source/example/reference/commands/logical_range_filter/columns_name_flags.log \
	source/example/reference/commands/logical_range_filter/columns_name_stage.log \
	source/example/reference/commands/logical_range_filter/columns_name_type.log \
	source/example/reference/commands/logical_range_filter/columns_name_value.log \
	source/example/reference/commands/logical_range_filter/columns_name_window_group_keys.log \
	source/example/reference/commands/logical_range_filter/columns_name_window_sort_keys.log \
	source/example/reference/commands/logical_range_filter/limit.log \
	source/example/reference/commands/logical_range_filter/logical_table_existent.log \
	source/example/reference/commands/logical_range_filter/logical_table_nonexistent.log \
	source/example/reference/commands/logical_range_filter/offset.log \
	source/example/reference/commands/logical_range_filter/order_existent.log \
	source/example/reference/commands/logical_range_filter/output_columns.log \
	source/example/reference/commands/logical_range_filter/post_filter.log \
	source/example/reference/commands/logical_range_filter/sort_keys_on_shared_key.log \
	source/example/reference/commands/logical_range_filter/sort_keys_one.log \
	source/example/reference/commands/logical_range_filter/usage_plugin_register.log \
	source/example/reference/commands/logical_range_filter/usage_setup.log \
	source/example/reference/commands/logical_range_filter/window_function_for_over_shard.log \
	source/example/reference/commands/logical_select/cache_no.log \
	source/example/reference/commands/logical_select/columns_name_flags.log \
	source/example/reference/commands/logical_select/columns_name_stage.log \
	source/example/reference/commands/logical_select/columns_name_type.log \
	source/example/reference/commands/logical_select/columns_name_value.log \
	source/example/reference/commands/logical_select/columns_name_window_group_keys.log \
	source/example/reference/commands/logical_select/columns_name_window_sort_keys.log \
	source/example/reference/commands/logical_select/drilldown.log \
	source/example/reference/commands/logical_select/drilldown_calc_types.log \
	source/example/reference/commands/logical_select/drilldown_filter.log \
	source/example/reference/commands/logical_select/drilldown_limit.log \
	source/example/reference/commands/logical_select/drilldown_offset.log \
	source/example/reference/commands/logical_select/drilldown_output_columns.log \
	source/example/reference/commands/logical_select/drilldown_sort_keys.log \
	source/example/reference/commands/logical_select/drilldowns_label_calc_types.log \
	source/example/reference/commands/logical_select/drilldowns_label_columns_name_flags.log \
	source/example/reference/commands/logical_select/drilldowns_label_columns_name_stage.log \
	source/example/reference/commands/logical_select/drilldowns_label_columns_name_type.log \
	source/example/reference/commands/logical_select/drilldowns_label_columns_name_value.log \
	source/example/reference/commands/logical_select/drilldowns_label_columns_name_window_group_keys.log \
	source/example/reference/commands/logical_select/drilldowns_label_columns_name_window_sort_keys.log \
	source/example/reference/commands/logical_select/drilldowns_label_filter.log \
	source/example/reference/commands/logical_select/drilldowns_label_keys.log \
	source/example/reference/commands/logical_select/drilldowns_label_limit.log \
	source/example/reference/commands/logical_select/drilldowns_label_offset.log \
	source/example/reference/commands/logical_select/drilldowns_label_output_columns.log \
	source/example/reference/commands/logical_select/drilldowns_label_sort_keys.log \
	source/example/reference/commands/logical_select/filter.log \
	source/example/reference/commands/logical_select/limit.log \
	source/example/reference/commands/logical_select/load_table.log \
	source/example/reference/commands/logical_select/logical_table_existent.log \
	source/example/reference/commands/logical_select/logical_table_nonexistent.log \
	source/example/reference/commands/logical_select/match_columns.log \
	source/example/reference/commands/logical_select/max.log \
	source/example/reference/commands/logical_select/max_border.log \
	source/example/reference/commands/logical_select/min.log \
	source/example/reference/commands/logical_select/min_border.log \
	source/example/reference/commands/logical_select/offset.log \
	source/example/reference/commands/logical_select/output_columns.log \
	source/example/reference/commands/logical_select/post_filter.log \
	source/example/reference/commands/logical_select/query.log \
	source/example/reference/commands/logical_select/shard_key_existent.log \
	source/example/reference/commands/logical_select/sort_keys.log \
	source/example/reference/commands/logical_select/usage_plugin_register.log \
	source/example/reference/commands/logical_select/usage_setup.log \
	source/example/reference/commands/logical_select/window_function_for_over_shard.log \
	source/example/reference/commands/logical_shard_list/logical_table.log \
	source/example/reference/commands/logical_shard_list/usage_list.log \
	source/example/reference/commands/logical_shard_list/usage_register.log \
	source/example/reference/commands/logical_shard_list/usage_shards.log \
	source/example/reference/commands/logical_table_remove/basic_usage_create_shards.log \
	source/example/reference/commands/logical_table_remove/basic_usage_list_shards_after.log \
	source/example/reference/commands/logical_table_remove/basic_usage_list_shards_before.log \
	source/example/reference/commands/logical_table_remove/basic_usage_remove_all.log \
	source/example/reference/commands/logical_table_remove/remove_broken_tables_create.log \
	source/example/reference/commands/logical_table_remove/remove_broken_tables_index_column_exist.log \
	source/example/reference/commands/logical_table_remove/remove_broken_tables_remove.log \
	source/example/reference/commands/logical_table_remove/remove_broken_tables_remove_force.log \
	source/example/reference/commands/logical_table_remove/remove_parts_create_shards.log \
	source/example/reference/commands/logical_table_remove/remove_parts_dump.log \
	source/example/reference/commands/logical_table_remove/remove_parts_remove.log \
	source/example/reference/commands/logical_table_remove/remove_with_for_shard_configm.log \
	source/example/reference/commands/logical_table_remove/remove_with_for_shard_create.log \
	source/example/reference/commands/logical_table_remove/remove_with_for_shard_remove.log \
	source/example/reference/commands/logical_table_remove/remove_with_reference_confirm.log \
	source/example/reference/commands/logical_table_remove/remove_with_reference_create.log \
	source/example/reference/commands/logical_table_remove/remove_with_reference_default.log \
	source/example/reference/commands/logical_table_remove/remove_with_reference_dependent.log \
	source/example/reference/commands/logical_table_remove/usage_register.log \
	source/example/reference/commands/normalize/normalizer_auto_ascii.log \
	source/example/reference/commands/normalize/normalizer_auto_with_checks.log \
	source/example/reference/commands/normalizer_list/simple_example.log \
	source/example/reference/commands/object_exist/name_column.log \
	source/example/reference/commands/object_exist/usage.log \
	source/example/reference/commands/object_inspect/usage-database.log \
	source/example/reference/commands/object_inspect/usage-name.log \
	source/example/reference/commands/object_list/output.log \
	source/example/reference/commands/object_list/sample.log \
	source/example/reference/commands/object_remove/name_column.log \
	source/example/reference/commands/object_remove/usage.log \
	source/example/reference/commands/object_remove/usage_broken_with_force.log \
	source/example/reference/commands/object_remove/usage_broken_without_force.log \
	source/example/reference/commands/plugin_register/query_expanders_tsv.log \
	source/example/reference/commands/plugin_unregister/query_expanders_tsv.log \
	source/example/reference/commands/reference_acquire/all.log \
	source/example/reference/commands/reference_acquire/column.log \
	source/example/reference/commands/reference_acquire/for_output.log \
	source/example/reference/commands/reference_acquire/for_search.log \
	source/example/reference/commands/reference_acquire/recursive_default.log \
	source/example/reference/commands/reference_acquire/recursive_dependent.log \
	source/example/reference/commands/reference_acquire/recursive_invalid.log \
	source/example/reference/commands/reference_acquire/recursive_no.log \
	source/example/reference/commands/reference_acquire/recursive_yes.log \
	source/example/reference/commands/reference_acquire/release.log \
	source/example/reference/commands/reference_acquire/schema.log \
	source/example/reference/commands/reference_acquire/table.log \
	source/example/reference/commands/reference_acquire/target_name_column.log \
	source/example/reference/commands/reference_acquire/target_name_database.log \
	source/example/reference/commands/reference_acquire/target_name_table.log \
	source/example/reference/commands/reference_release/same_arguments.log \
	source/example/reference/commands/reference_release/schema.log \
	source/example/reference/commands/reference_release/target_name_column.log \
	source/example/reference/commands/reference_release/target_name_database.log \
	source/example/reference/commands/reference_release/target_name_table.log \
	source/example/reference/commands/register/query_expanders_tsv.log \
	source/example/reference/commands/reindex/data_column.log \
	source/example/reference/commands/reindex/database.log \
	source/example/reference/commands/reindex/index_column.log \
	source/example/reference/commands/reindex/table.log \
	source/example/reference/commands/ruby_eval/calc.log \
	source/example/reference/commands/schema/output.log \
	source/example/reference/commands/schema/sample.log \
	source/example/reference/commands/select/adjuster_multiple.log \
	source/example/reference/commands/select/adjuster_no_factor.log \
	source/example/reference/commands/select/adjuster_no_weight.log \
	source/example/reference/commands/select/adjuster_one.log \
	source/example/reference/commands/select/cache_no.log \
	source/example/reference/commands/select/columns_name_flags.log \
	source/example/reference/commands/select/columns_name_stage.log \
	source/example/reference/commands/select/columns_name_type.log \
	source/example/reference/commands/select/columns_name_value.log \
	source/example/reference/commands/select/columns_name_window_group_keys.log \
	source/example/reference/commands/select/columns_name_window_sort_keys.log \
	source/example/reference/commands/select/drilldown_calc_types_all.log \
	source/example/reference/commands/select/drilldown_calc_types_avg.log \
	source/example/reference/commands/select/drilldown_calc_types_max.log \
	source/example/reference/commands/select/drilldown_calc_types_min.log \
	source/example/reference/commands/select/drilldown_calc_types_sum.log \
	source/example/reference/commands/select/drilldown_filter.log \
	source/example/reference/commands/select/drilldown_limit_negative.log \
	source/example/reference/commands/select/drilldown_limit_simple.log \
	source/example/reference/commands/select/drilldown_max_n_target_records.log \
	source/example/reference/commands/select/drilldown_multiple.log \
	source/example/reference/commands/select/drilldown_offset_negative.log \
	source/example/reference/commands/select/drilldown_offset_simple.log \
	source/example/reference/commands/select/drilldown_output_columns_referenced_type_column_asterisk.log \
	source/example/reference/commands/select/drilldown_output_columns_referenced_type_column_definition.log \
	source/example/reference/commands/select/drilldown_output_columns_referenced_type_column_label.log \
	source/example/reference/commands/select/drilldown_output_columns_simple.log \
	source/example/reference/commands/select/drilldown_simple.log \
	source/example/reference/commands/select/drilldown_sort_keys_simple.log \
	source/example/reference/commands/select/drilldown_sortby_simple.log \
	source/example/reference/commands/select/drilldown_with_filter.log \
	source/example/reference/commands/select/drilldowns_label_columns_name_stage.log \
	source/example/reference/commands/select/drilldowns_label_keys_multiple.log \
	source/example/reference/commands/select/drilldowns_label_none.log \
	source/example/reference/commands/select/drilldowns_label_output_columns_multiple_group_key.log \
	source/example/reference/commands/select/drilldowns_label_output_columns_single_group_key.log \
	source/example/reference/commands/select/drilldowns_label_power_set.log \
	source/example/reference/commands/select/drilldowns_label_table.log \
	source/example/reference/commands/select/filter_equal.log \
	source/example/reference/commands/select/filter_less_than.log \
	source/example/reference/commands/select/fuzzy_max_distance.log \
	source/example/reference/commands/select/fuzzy_max_distance_ratio.log \
	source/example/reference/commands/select/fuzzy_max_expansions.log \
	source/example/reference/commands/select/fuzzy_prefix_length.log \
	source/example/reference/commands/select/fuzzy_tokenize.log \
	source/example/reference/commands/select/fuzzy_with_transposition.log \
	source/example/reference/commands/select/limit_negative.log \
	source/example/reference/commands/select/limit_simple.log \
	source/example/reference/commands/select/load_table.log \
	source/example/reference/commands/select/match_columns_simple.log \
	source/example/reference/commands/select/match_columns_some_columns.log \
	source/example/reference/commands/select/match_columns_weight.log \
	source/example/reference/commands/select/match_escalation.log \
	source/example/reference/commands/select/match_escalation_threshold.log \
	source/example/reference/commands/select/no_limit.log \
	source/example/reference/commands/select/offset_negative.log \
	source/example/reference/commands/select/offset_simple.log \
	source/example/reference/commands/select/output_columns_asterisk.log \
	source/example/reference/commands/select/output_columns_simple.log \
	source/example/reference/commands/select/paging.log \
	source/example/reference/commands/select/query_and.log \
	source/example/reference/commands/select/query_equal.log \
	source/example/reference/commands/select/query_expander_complex.log \
	source/example/reference/commands/select/query_expander_substitute.log \
	source/example/reference/commands/select/query_expander_substitution_table.log \
	source/example/reference/commands/select/query_flags_allow_column.log \
	source/example/reference/commands/select/query_flags_allow_leading_not.log \
	source/example/reference/commands/select/query_flags_allow_update.log \
	source/example/reference/commands/select/query_flags_no_query_no_syntax_error.log \
	source/example/reference/commands/select/query_flags_none.log \
	source/example/reference/commands/select/query_flags_query_no_syntax_error.log \
	source/example/reference/commands/select/query_flags_setup.log \
	source/example/reference/commands/select/query_less_than.log \
	source/example/reference/commands/select/query_or.log \
	source/example/reference/commands/select/simple_filter.log \
	source/example/reference/commands/select/simple_query.log \
	source/example/reference/commands/select/simple_usage.log \
	source/example/reference/commands/select/sort_keys_descending.log \
	source/example/reference/commands/select/sort_keys_score_with_query.log \
	source/example/reference/commands/select/sort_keys_simple.log \
	source/example/reference/commands/select/table_nonexistent.log \
	source/example/reference/commands/select/usage_drilldown.log \
	source/example/reference/commands/select/usage_drilldown_only_query.log \
	source/example/reference/commands/select/usage_dynamic_column.log \
	source/example/reference/commands/select/usage_fuzzy_max_distance_ratio.log \
	source/example/reference/commands/select/usage_setup.log \
	source/example/reference/commands/select/usage_typo_tolerance_japanese.log \
	source/example/reference/commands/select/usage_window_function.log \
	source/example/reference/commands/shutdown/default.log \
	source/example/reference/commands/shutdown/graceful.log \
	source/example/reference/commands/shutdown/immediate.log \
	source/example/reference/commands/status.log \
	source/example/reference/commands/suggest-completion.log \
	source/example/reference/commands/suggest-correction.log \
	source/example/reference/commands/suggest-learn-completion.log \
	source/example/reference/commands/suggest-learn-correction.log \
	source/example/reference/commands/suggest-learn-suggestion.log \
	source/example/reference/commands/suggest-mixed.log \
	source/example/reference/commands/suggest-suggestion.log \
	source/example/reference/commands/table_create/data_store_table_no_key.log \
	source/example/reference/commands/table_create/large_data_store_table.log \
	source/example/reference/commands/table_create/lexicon_pat_key.log \
	source/example/reference/commands/table_create/range_index_table_dat_key.log \
	source/example/reference/commands/table_create/tag_index_table_hash_key.log \
	source/example/reference/commands/table_list.log \
	source/example/reference/commands/table_remove/basic_usage_create_entries_table.log \
	source/example/reference/commands/table_remove/basic_usage_create_index_for_entries_table.log \
	source/example/reference/commands/table_remove/basic_usage_create_index_for_entries_table_column.log \
	source/example/reference/commands/table_remove/basic_usage_dump_after_table_remove.log \
	source/example/reference/commands/table_remove/basic_usage_dump_before_table_remove.log \
	source/example/reference/commands/table_remove/basic_usage_table_remove.log \
	source/example/reference/commands/table_remove/decreases_used_resources_close_temporary_opened_objects.log \
	source/example/reference/commands/table_remove/remove_dependents_default.log \
	source/example/reference/commands/table_remove/remove_dependents_schema.log \
	source/example/reference/commands/table_remove/remove_dependents_yes.log \
	source/example/reference/commands/table_remove/unremovable_cases_key_type_create.log \
	source/example/reference/commands/table_remove/unremovable_cases_key_type_remove_fail.log \
	source/example/reference/commands/table_remove/unremovable_cases_key_type_remove_success.log \
	source/example/reference/commands/table_remove/unremovable_cases_value_type_create.log \
	source/example/reference/commands/table_remove/unremovable_cases_value_type_remove_fail.log \
	source/example/reference/commands/table_remove/unremovable_cases_value_type_remove_success.log \
	source/example/reference/commands/table_rename/usage.log \
	source/example/reference/commands/table_tokenize/simple_example.log \
	source/example/reference/commands/thread_dump/usage.log \
	source/example/reference/commands/thread_limit/max.log \
	source/example/reference/commands/thread_limit/usage_get.log \
	source/example/reference/commands/thread_limit/usage_set.log \
	source/example/reference/commands/tokenize/add_mode.log \
	source/example/reference/commands/tokenize/flags_enable_tokenized_delimiter.log \
	source/example/reference/commands/tokenize/get_mode.log \
	source/example/reference/commands/tokenize/normalizer_none.log \
	source/example/reference/commands/tokenize/normalizer_use.log \
	source/example/reference/commands/tokenize/normalizer_use_with_split_symbol_alpha.log \
	source/example/reference/commands/tokenize/simple_example.log \
	source/example/reference/commands/tokenize/string_include_spaces.log \
	source/example/reference/commands/tokenize/tokenizer_token_trigram.log \
	source/example/reference/commands/tokenizer_list/simple_example.log \
	source/example/reference/commands/truncate/truncate_column.log \
	source/example/reference/commands/truncate/truncate_table.log \
	source/example/reference/executables/groonga-httpd.log \
	source/example/reference/executables/groonga-suggest-httpd/complete.log \
	source/example/reference/executables/groonga-suggest-httpd/launch-lerner.log \
	source/example/reference/executables/groonga-suggest-httpd/launch.log \
	source/example/reference/executables/groonga-suggest-httpd/learn-and-complete.log \
	source/example/reference/executables/groonga-suggest-httpd/learn.log \
	source/example/reference/executables/groonga-suggest-httpd/setup.log \
	source/example/reference/functions/between/usage_age.log \
	source/example/reference/functions/between/usage_options.log \
	source/example/reference/functions/between/usage_setup.log \
	source/example/reference/functions/between/usage_value.log \
	source/example/reference/functions/cast_loose/usage_basic.log \
	source/example/reference/functions/cast_loose/usage_setup.log \
	source/example/reference/functions/escalate/usage_age.log \
	source/example/reference/functions/escalate/usage_setup_data.log \
	source/example/reference/functions/escalate/usage_setup_schema.log \
	source/example/reference/functions/geo_distance_distance_ellipsoid.log \
	source/example/reference/functions/geo_distance_distance_rectangle.log \
	source/example/reference/functions/geo_distance_distance_rectangle_across_equator.log \
	source/example/reference/functions/geo_distance_distance_rectangle_across_meridian.log \
	source/example/reference/functions/geo_distance_distance_rectangle_across_the_date_line.log \
	source/example/reference/functions/geo_distance_distance_sphere.log \
	source/example/reference/functions/geo_distance_location_ellipsoid.log \
	source/example/reference/functions/geo_distance_location_rectangle.log \
	source/example/reference/functions/geo_distance_location_sphere.log \
	source/example/reference/functions/geo_distance_setup_distance.log \
	source/example/reference/functions/geo_distance_setup_location.log \
	source/example/reference/functions/highlight/usage_basic.log \
	source/example/reference/functions/highlight/usage_setup.log \
	source/example/reference/functions/highlight/usage_string_literal.log \
	source/example/reference/functions/highlight_full/usage_basic.log \
	source/example/reference/functions/highlight_full/usage_setup.log \
	source/example/reference/functions/highlight_full/usage_string_literal.log \
	source/example/reference/functions/highlight_html/usage_basic.log \
	source/example/reference/functions/highlight_html/usage_sequential_class_tag_mode.log \
	source/example/reference/functions/highlight_html/usage_setup.log \
	source/example/reference/functions/highlight_html/usage_string_literal.log \
	source/example/reference/functions/html_untag/usage_html_untag.log \
	source/example/reference/functions/html_untag/usage_setup_data.log \
	source/example/reference/functions/html_untag/usage_setup_schema.log \
	source/example/reference/functions/in_records/usage_search.log \
	source/example/reference/functions/in_records/usage_setup_conditions.log \
	source/example/reference/functions/in_records/usage_setup_data.log \
	source/example/reference/functions/in_records/usage_setup_schema.log \
	source/example/reference/functions/in_values/usage_only.log \
	source/example/reference/functions/in_values/usage_options.log \
	source/example/reference/functions/in_values/usage_setup_data.log \
	source/example/reference/functions/in_values/usage_setup_schema.log \
	source/example/reference/functions/language_model_vectorize/usage_register.md \
	source/example/reference/functions/language_model_vectorize/usage_rerank.md \
	source/example/reference/functions/language_model_vectorize/usage_setup_data.md \
	source/example/reference/functions/language_model_vectorize/usage_setup_generated_column.md \
	source/example/reference/functions/language_model_vectorize/usage_setup_schema.md \
	source/example/reference/functions/math_abs/nearest_shops.log \
	source/example/reference/functions/math_abs/usage_setup_data.log \
	source/example/reference/functions/math_abs/usage_setup_schema.log \
	source/example/reference/functions/prefix_rk_search/usage_add_no_reading_completion_target.log \
	source/example/reference/functions/prefix_rk_search/usage_loose_completion.log \
	source/example/reference/functions/prefix_rk_search/usage_prefix_rk_only_completion.log \
	source/example/reference/functions/prefix_rk_search/usage_prefix_search_combined_completion.log \
	source/example/reference/functions/prefix_rk_search/usage_setup.log \
	source/example/reference/functions/prefix_rk_search/usage_setup_completion.log \
	source/example/reference/functions/prefix_rk_search/usage_setup_loose_completion.log \
	source/example/reference/functions/prefix_rk_search/usage_simple.log \
	source/example/reference/functions/query/usage_basic.log \
	source/example/reference/functions/query/usage_setup_data.log \
	source/example/reference/functions/query/usage_setup_schema.log \
	source/example/reference/functions/query/usage_with_query.log \
	source/example/reference/functions/query/usage_without_query.log \
	source/example/reference/functions/query_parallel_or/usage_basic.log \
	source/example/reference/functions/query_parallel_or/usage_setup_data.log \
	source/example/reference/functions/query_parallel_or/usage_setup_schema.log \
	source/example/reference/functions/snippet/usage_delimiter_regexp.log \
	source/example/reference/functions/snippet/usage_keywords.log \
	source/example/reference/functions/snippet/usage_keywords_from_conditions.log \
	source/example/reference/functions/snippet/usage_max_n_results.log \
	source/example/reference/functions/snippet/usage_setup.log \
	source/example/reference/functions/snippet/usage_tags.log \
	source/example/reference/functions/snippet/usage_width.log \
	source/example/reference/functions/snippet_html/usage.log \
	source/example/reference/functions/snippet_html/usage_basic.log \
	source/example/reference/functions/snippet_html/usage_setup.log \
	source/example/reference/functions/snippet_html/usage_string_literal.log \
	source/example/reference/functions/string_slice/usage_number.log \
	source/example/reference/functions/string_slice/usage_regexp_default.log \
	source/example/reference/functions/string_slice/usage_regexp_name.log \
	source/example/reference/functions/string_slice/usage_regexp_number.log \
	source/example/reference/functions/string_slice/usage_setup_data.log \
	source/example/reference/functions/string_slice/usage_setup_schema.log \
	source/example/reference/functions/string_slice/usage_string_literal.log \
	source/example/reference/functions/string_substring/usage_default.log \
	source/example/reference/functions/string_substring/usage_negative.log \
	source/example/reference/functions/string_substring/usage_number.log \
	source/example/reference/functions/string_substring/usage_setup_data.log \
	source/example/reference/functions/string_substring/usage_setup_schema.log \
	source/example/reference/functions/string_substring/usage_string_literal.log \
	source/example/reference/functions/sub_filter/usage_setup_data.log \
	source/example/reference/functions/sub_filter/usage_setup_schema.log \
	source/example/reference/functions/sub_filter/usage_with_sub_filter.log \
	source/example/reference/functions/sub_filter/usage_without_sub_filter.log \
	source/example/reference/functions/time_classify_day/usage_classify.log \
	source/example/reference/functions/time_classify_day/usage_register.log \
	source/example/reference/functions/time_classify_day/usage_setup_data.log \
	source/example/reference/functions/time_classify_day/usage_setup_schema.log \
	source/example/reference/functions/time_classify_day_of_week/usage_classify.log \
	source/example/reference/functions/time_classify_day_of_week/usage_register.log \
	source/example/reference/functions/time_classify_day_of_week/usage_setup_data.log \
	source/example/reference/functions/time_classify_day_of_week/usage_setup_schema.log \
	source/example/reference/functions/vector_find/usage_find.log \
	source/example/reference/functions/vector_find/usage_find_mode.log \
	source/example/reference/functions/vector_find/usage_register.log \
	source/example/reference/functions/vector_find/usage_setup_data.log \
	source/example/reference/functions/vector_find/usage_setup_schema.log \
	source/example/reference/functions/vector_size/usage_only.log \
	source/example/reference/functions/vector_size/usage_setup_data.log \
	source/example/reference/functions/vector_size/usage_setup_schema.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_product_search_max_element_intervals.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_product_search_options.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_product_search_simple.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_search_additional_last_interval_negative.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_search_additional_last_interval_positive.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_search_max_element_intervals.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_search_max_interval.log \
	source/example/reference/grn_expr/query_syntax/near_phrase_search_search.log \
	source/example/reference/grn_expr/query_syntax/near_search_max_element_intervals.log \
	source/example/reference/grn_expr/query_syntax/near_search_max_element_intervals_extra.log \
	source/example/reference/grn_expr/query_syntax/near_search_max_element_intervals_omit.log \
	source/example/reference/grn_expr/query_syntax/near_search_max_interval.log \
	source/example/reference/grn_expr/query_syntax/near_search_search.log \
	source/example/reference/grn_expr/query_syntax/near_search_word.log \
	source/example/reference/grn_expr/query_syntax/ordered_near_phrase_product_search_simple.log \
	source/example/reference/grn_expr/query_syntax/ordered_near_phrase_search_search.log \
	source/example/reference/grn_expr/query_syntax/setup.log \
	source/example/reference/grn_expr/query_syntax/simple_equal.log \
	source/example/reference/grn_expr/query_syntax/simple_full_text_search.log \
	source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log \
	source/example/reference/grn_expr/query_syntax/simple_greater_than.log \
	source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log \
	source/example/reference/grn_expr/query_syntax/simple_grouping.log \
	source/example/reference/grn_expr/query_syntax/simple_less_than.log \
	source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log \
	source/example/reference/grn_expr/query_syntax/simple_logical_and.log \
	source/example/reference/grn_expr/query_syntax/simple_logical_not.log \
	source/example/reference/grn_expr/query_syntax/simple_logical_or.log \
	source/example/reference/grn_expr/query_syntax/simple_not_equal.log \
	source/example/reference/grn_expr/query_syntax/simple_phrase_search.log \
	source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log \
	source/example/reference/grn_expr/query_syntax/simple_prefix_search.log \
	source/example/reference/grn_expr/query_syntax/simple_regular_expression.log \
	source/example/reference/grn_expr/query_syntax/simple_suffix_search.log \
	source/example/reference/grn_expr/script_syntax/near_phrase_product_search_operator_options.log \
	source/example/reference/grn_expr/script_syntax/near_phrase_search_operator_additional_last_interval_negative.log \
	source/example/reference/grn_expr/script_syntax/near_phrase_search_operator_additional_last_interval_positive.log \
	source/example/reference/grn_expr/script_syntax/near_phrase_search_operator_max_interval.log \
	source/example/reference/grn_expr/script_syntax/near_search_operator_max_element_intervals.log \
	source/example/reference/grn_expr/script_syntax/near_search_operator_max_element_intervals_extra.log \
	source/example/reference/grn_expr/script_syntax/near_search_operator_max_element_intervals_omit.log \
	source/example/reference/grn_expr/script_syntax/simple_addition_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_addition_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_and_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_division_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log \
	source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log \
	source/example/reference/grn_expr/script_syntax/simple_equal_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_function.log \
	source/example/reference/grn_expr/script_syntax/simple_grouping.log \
	source/example/reference/grn_expr/script_syntax/simple_left_shift_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_match_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_modulo_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_multiplication_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_near_phrase_product_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_near_phrase_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_or_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_ordered_near_phrase_product_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_ordered_near_phrase_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_regular_expression_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_subtraction_assignment_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log \
	source/example/reference/grn_expr/script_syntax/simple_xor_assignment_operator.log \
	source/example/reference/indexing-data.log \
	source/example/reference/indexing-offline-index-construction.log \
	source/example/reference/indexing-online-index-construction.log \
	source/example/reference/indexing-schema.log \
	source/example/reference/indexing-search-after-offline-index-construction.log \
	source/example/reference/indexing-search-after-online-index-construction.log \
	source/example/reference/indexing-search-without-index.log \
	source/example/reference/normalizers/example-load.log \
	source/example/reference/normalizers/example-table-create.log \
	source/example/reference/normalizers/normalizer-auto.log \
	source/example/reference/normalizers/normalizer-nfkc-katakana-gu-small-sounds.md \
	source/example/reference/normalizers/normalizer-nfkc-remove-symbol.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-hyphen-and-prolonged-sound-mark.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-hyphen.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-kana-case-hiragana.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-kana-case-katakana.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-kana-hyphen.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-kana-prolonged-sound-mark.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-kana.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-bu-sounds.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-di-sound.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-du-small-sounds.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-du-sound.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-trailing-o.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-v-sounds.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-wo-sound.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-katakana-zu-small-sounds.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-latin-alphabet-with.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-middle-dot.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-prolonged-sound-mark.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-to-katakana.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-to-romaji-complex.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-to-romaji.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-voiced-sound-mark-hiragana.md \
	source/example/reference/normalizers/normalizer-nfkc-unify-voiced-sound-mark-katakana.md \
	source/example/reference/normalizers/normalizer-nfkc-version.md \
	source/example/reference/normalizers/normalizer-nfkc.md \
	source/example/reference/normalizers/normalizer-nfkc100-katakana-gu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-hyphen-and-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-kana-case-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-kana-case-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-kana-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-kana-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-kana.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-bu-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-di-sound.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-du-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-du-sound.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-trailing-o.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-v-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-wo-sound.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-katakana-zu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-middle-dot.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-to-romaji-complex.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-to-romaji.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-voiced-sound-mark-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc100-unify-voiced-sound-mark-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc100.log \
	source/example/reference/normalizers/normalizer-nfkc121-katakana-gu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-hyphen-and-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-kana-case-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-kana-case-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-kana-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-kana-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-kana.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-bu-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-di-sound.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-du-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-du-sound.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-trailing-o.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-v-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-wo-sound.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-katakana-zu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-middle-dot.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-to-romaji-complex.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-to-romaji.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-voiced-sound-mark-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc121-unify-voiced-sound-mark-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc121.log \
	source/example/reference/normalizers/normalizer-nfkc130-katakana-gu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc130-remove-symbol.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-hyphen-and-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-kana-case-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-kana-case-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-kana-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-kana-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-kana.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-bu-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-di-sound.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-du-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-du-sound.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-trailing-o.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-v-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-wo-sound.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-katakana-zu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-middle-dot.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-to-romaji-complex.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-to-romaji.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-voiced-sound-mark-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc130-unify-voiced-sound-mark-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc130.log \
	source/example/reference/normalizers/normalizer-nfkc150-katakana-gu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc150-remove-symbol.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-hyphen-and-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-kana-case-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-kana-case-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-kana-hyphen.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-kana-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-kana.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-bu-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-di-sound.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-du-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-du-sound.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-trailing-o.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-v-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-wo-sound.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-katakana-zu-small-sounds.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-latin-alphabet-with.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-middle-dot.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-prolonged-sound-mark.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-to-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-to-romaji-complex.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-to-romaji.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-voiced-sound-mark-hiragana.log \
	source/example/reference/normalizers/normalizer-nfkc150-unify-voiced-sound-mark-katakana.log \
	source/example/reference/normalizers/normalizer-nfkc150.log \
	source/example/reference/normalizers/normalizer-nfkc51.log \
	source/example/reference/normalizers/normalizer-table-advanced-usage-prepare.log \
	source/example/reference/normalizers/normalizer-table-simple-usage-output.log \
	source/example/reference/normalizers/normalizer-table-simple-usage-prepare.log \
	source/example/reference/normalizers/normalizer-table-simple-usage-unicode-version.log \
	source/example/reference/operations/prefix_rk_search/usage_register_kana.log \
	source/example/reference/regular_expression/anchor_z.log \
	source/example/reference/regular_expression/character_class_characters.log \
	source/example/reference/regular_expression/character_class_range.log \
	source/example/reference/regular_expression/choice.log \
	source/example/reference/regular_expression/group_back_reference.log \
	source/example/reference/regular_expression/group_scope_reducing.log \
	source/example/reference/regular_expression/index_definitions.log \
	source/example/reference/regular_expression/quantifier_plus.log \
	source/example/reference/regular_expression/search_by_index_filter.log \
	source/example/reference/regular_expression/search_by_index_query.log \
	source/example/reference/regular_expression/usage_filter.log \
	source/example/reference/regular_expression/usage_query.log \
	source/example/reference/regular_expression/usage_setup.log \
	source/example/reference/scorer/usage_default_and_custom_scorers.log \
	source/example/reference/scorer/usage_multiple_scorers.log \
	source/example/reference/scorer/usage_one_no_argument_no_weight.log \
	source/example/reference/scorer/usage_one_no_argument_weight.log \
	source/example/reference/scorer/usage_one_one_argument_no_weight.log \
	source/example/reference/scorer/usage_setup_data.log \
	source/example/reference/scorer/usage_setup_schema.log \
	source/example/reference/scorers/scorer_tf_at_most/usage_no_weight.log \
	source/example/reference/scorers/scorer_tf_at_most/usage_setup_data.log \
	source/example/reference/scorers/scorer_tf_at_most/usage_setup_schema.log \
	source/example/reference/scorers/scorer_tf_idf/usage_no_weight.log \
	source/example/reference/scorers/scorer_tf_idf/usage_setup_data.log \
	source/example/reference/scorers/scorer_tf_idf/usage_setup_schema.log \
	source/example/reference/suggest/complete/registered-word-japan.log \
	source/example/reference/suggest/complete/registered-word-japanese.log \
	source/example/reference/suggest/complete/rk-search-nihon.log \
	source/example/reference/suggest/complete/rk-search-nippon.log \
	source/example/reference/suggest/complete/select.log \
	source/example/reference/suggest/complete/update-rk-data.log \
	source/example/reference/suggest/correction/select.log \
	source/example/reference/suggest/suggest/select.log \
	source/example/reference/token_filters/example-table-create.log \
	source/example/reference/token_filters/nfkc-unify-hyphen.md \
	source/example/reference/token_filters/nfkc-unify-kana.md \
	source/example/reference/token_filters/nfkc-unify-to-romaji.md \
	source/example/reference/token_filters/nfkc-version.md \
	source/example/reference/token_filters/nfkc-with-token-mecab.md \
	source/example/reference/token_filters/nfkc.md \
	source/example/reference/token_filters/nfkc100-hiragana-and-kanji.log \
	source/example/reference/token_filters/nfkc100-unify-hyphen-and-prolonged-sound-mark.log \
	source/example/reference/token_filters/nfkc100-unify-hyphen.log \
	source/example/reference/token_filters/nfkc100-unify-kana-case-hiragana.log \
	source/example/reference/token_filters/nfkc100-unify-kana-case-katakana.log \
	source/example/reference/token_filters/nfkc100-unify-kana.log \
	source/example/reference/token_filters/nfkc100-unify-katakana-bu-sounds.log \
	source/example/reference/token_filters/nfkc100-unify-katakana-di-sound.log \
	source/example/reference/token_filters/nfkc100-unify-katakana-v-sounds.log \
	source/example/reference/token_filters/nfkc100-unify-middle-dot.log \
	source/example/reference/token_filters/nfkc100-unify-prolonged-sound-mark.log \
	source/example/reference/token_filters/nfkc100-unify-to-romaji.log \
	source/example/reference/token_filters/nfkc100-unify-voiced-sound-mark-hiragana.log \
	source/example/reference/token_filters/nfkc100-unify-voiced-sound-mark-katakana.log \
	source/example/reference/token_filters/nfkc100-with-token-mecab.log \
	source/example/reference/token_filters/nfkc100.log \
	source/example/reference/token_filters/nfkc150-hiragana-and-kanji.log \
	source/example/reference/token_filters/nfkc150-unify-hyphen-and-prolonged-sound-mark.log \
	source/example/reference/token_filters/nfkc150-unify-hyphen.log \
	source/example/reference/token_filters/nfkc150-unify-kana-case-hiragana.log \
	source/example/reference/token_filters/nfkc150-unify-kana-case-katakana.log \
	source/example/reference/token_filters/nfkc150-unify-kana.log \
	source/example/reference/token_filters/nfkc150-unify-katakana-bu-sounds.log \
	source/example/reference/token_filters/nfkc150-unify-katakana-v-sounds.log \
	source/example/reference/token_filters/nfkc150-unify-middle-dot.log \
	source/example/reference/token_filters/nfkc150-unify-prolonged-sound-mark.log \
	source/example/reference/token_filters/nfkc150-unify-to-romaji.log \
	source/example/reference/token_filters/nfkc150-unify-voiced-sound-mark-hiragana.log \
	source/example/reference/token_filters/nfkc150-unify-voiced-sound-mark-katakana.log \
	source/example/reference/token_filters/nfkc150-with-token-mecab.log \
	source/example/reference/token_filters/nfkc150.log \
	source/example/reference/token_filters/stem-algorithm-option.log \
	source/example/reference/token_filters/stem.log \
	source/example/reference/token_filters/stop-word-columns-option.log \
	source/example/reference/token_filters/stop_word.log \
	source/example/reference/tokenizers/token-bigram-ascii-and-character-type-change-with-normalizer.log \
	source/example/reference/tokenizers/token-bigram-ascii-and-white-space-with-normalizer.log \
	source/example/reference/tokenizers/token-bigram-ignore-blank-split-symbol-with-white-spaces-and-symbol-and-alphabet-digit.log \
	source/example/reference/tokenizers/token-bigram-ignore-blank-split-symbol-with-white-spaces-and-symbol-and-alphabet.log \
	source/example/reference/tokenizers/token-bigram-ignore-blank-split-symbol-with-white-spaces-and-symbol.log \
	source/example/reference/tokenizers/token-bigram-ignore-blank-with-white-spaces.log \
	source/example/reference/tokenizers/token-bigram-no-normalizer.log \
	source/example/reference/tokenizers/token-bigram-non-ascii-with-normalizer.log \
	source/example/reference/tokenizers/token-bigram-split-symbol-alpha-digit-with-normalizer.log \
	source/example/reference/tokenizers/token-bigram-split-symbol-alpha-with-normalizer.log \
	source/example/reference/tokenizers/token-bigram-split-symbol-with-normalizer.log \
	source/example/reference/tokenizers/token-bigram-with-white-spaces-and-symbol-and-alphabet-and-digit.log \
	source/example/reference/tokenizers/token-bigram-with-white-spaces-and-symbol-and-alphabet.log \
	source/example/reference/tokenizers/token-bigram-with-white-spaces-and-symbol.log \
	source/example/reference/tokenizers/token-bigram-with-white-spaces.log \
	source/example/reference/tokenizers/token-delimit-delimiter-option-multiple-delimiters.log \
	source/example/reference/tokenizers/token-delimit-delimiter-option.log \
	source/example/reference/tokenizers/token-delimit-null.log \
	source/example/reference/tokenizers/token-delimit-pattern-option-with-complex-pattern.log \
	source/example/reference/tokenizers/token-delimit-pattern-option.log \
	source/example/reference/tokenizers/token-delimit.log \
	source/example/reference/tokenizers/token-mecab-include-class-option.log \
	source/example/reference/tokenizers/token-mecab-include-form-option.log \
	source/example/reference/tokenizers/token-mecab-include-reading-option.log \
	source/example/reference/tokenizers/token-mecab-target-class-and-include-class-option.log \
	source/example/reference/tokenizers/token-mecab-target-class-option-complex.log \
	source/example/reference/tokenizers/token-mecab-target-class-option.log \
	source/example/reference/tokenizers/token-mecab-use-reading-option.log \
	source/example/reference/tokenizers/token-mecab.log \
	source/example/reference/tokenizers/token-ngram-bi-gram.log \
	source/example/reference/tokenizers/token-ngram-loose-symbol-and-loose-blank.log \
	source/example/reference/tokenizers/token-ngram-no-option-with-normalizer.log \
	source/example/reference/tokenizers/token-ngram-no-option.log \
	source/example/reference/tokenizers/token-ngram-no-report-source-location.log \
	source/example/reference/tokenizers/token-ngram-report-source-location.log \
	source/example/reference/tokenizers/token-ngram-tri-gram.log \
	source/example/reference/tokenizers/token-ngram-uni-gram.log \
	source/example/reference/tokenizers/token-ngram-unify-alphabet.log \
	source/example/reference/tokenizers/token-ngram-unify-digit.log \
	source/example/reference/tokenizers/token-ngram-unify-symbol.log \
	source/example/reference/tokenizers/token-pattern-schema.log \
	source/example/reference/tokenizers/token-pattern-search-apple.log \
	source/example/reference/tokenizers/token-pattern-search-raspberry.log \
	source/example/reference/tokenizers/token-regexp-add.log \
	source/example/reference/tokenizers/token-table-schema.log \
	source/example/reference/tokenizers/token-table-search-raspberry.log \
	source/example/reference/tokenizers/token-table-search-stargazy.log \
	source/example/reference/tokenizers/token-trigram-non-ascii.log \
	source/example/reference/tokenizers/token-trigram.log \
	source/example/reference/tokenizers/token-unigram-non-ascii.log \
	source/example/reference/tokenizers/token-unigram.log \
	source/example/reference/tokenizers/tokenize-example.log \
	source/example/reference/window_functions/window_rank/usage_group.log \
	source/example/reference/window_functions/window_rank/usage_group_descending.log \
	source/example/reference/window_functions/window_rank/usage_setup.log \
	source/example/reference/window_functions/window_rank/usage_sort_keys.log \
	source/example/spec/gqtp/client.log \
	source/example/tutorial/data-1.log \
	source/example/tutorial/data-2.log \
	source/example/tutorial/data-3.log \
	source/example/tutorial/data-4.log \
	source/example/tutorial/data-5.log \
	source/example/tutorial/data-6.log \
	source/example/tutorial/data-7.log \
	source/example/tutorial/data-8.log \
	source/example/tutorial/drilldown-1.log \
	source/example/tutorial/drilldown-country.log \
	source/example/tutorial/drilldown-domain.log \
	source/example/tutorial/drilldown-limit.log \
	source/example/tutorial/drilldown-multiple-column.log \
	source/example/tutorial/drilldown-output-columns.log \
	source/example/tutorial/drilldown-sortby.log \
	source/example/tutorial/index-1.log \
	source/example/tutorial/index-2.log \
	source/example/tutorial/index-3.log \
	source/example/tutorial/index-4.log \
	source/example/tutorial/index-5.log \
	source/example/tutorial/index-6.log \
	source/example/tutorial/index-7.log \
	source/example/tutorial/introduction-1.log \
	source/example/tutorial/introduction-10.log \
	source/example/tutorial/introduction-11.log \
	source/example/tutorial/introduction-12.log \
	source/example/tutorial/introduction-13.log \
	source/example/tutorial/introduction-14.log \
	source/example/tutorial/introduction-15.log \
	source/example/tutorial/introduction-16.log \
	source/example/tutorial/introduction-17.log \
	source/example/tutorial/introduction-18.log \
	source/example/tutorial/introduction-2.log \
	source/example/tutorial/introduction-3.log \
	source/example/tutorial/introduction-4.log \
	source/example/tutorial/introduction-5.log \
	source/example/tutorial/introduction-6.log \
	source/example/tutorial/introduction-7.log \
	source/example/tutorial/introduction-8.log \
	source/example/tutorial/introduction-9.log \
	source/example/tutorial/match_columns-1.log \
	source/example/tutorial/match_columns-2.log \
	source/example/tutorial/match_columns-3.log \
	source/example/tutorial/match_columns-4.log \
	source/example/tutorial/match_columns-indexes-with-weight.log \
	source/example/tutorial/match_columns-nested-index-data-with-three-relationship.log \
	source/example/tutorial/match_columns-nested-index-data.log \
	source/example/tutorial/match_columns-nested-index-schema-with-three-relationship.log \
	source/example/tutorial/match_columns-nested-index-schema.log \
	source/example/tutorial/match_columns-nested-index-select-with-three-relationship.log \
	source/example/tutorial/match_columns-nested-index-select.log \
	source/example/tutorial/match_columns-specific-body-index.log \
	source/example/tutorial/match_columns-specific-index-schema.log \
	source/example/tutorial/match_columns-specific-title-index.log \
	source/example/tutorial/match_columns-specific-whole-with-body.log \
	source/example/tutorial/match_columns-specific-whole-with-title.log \
	source/example/tutorial/micro_blog_drilldown.log \
	source/example/tutorial/micro_blog_favorite.log \
	source/example/tutorial/micro_blog_follower.log \
	source/example/tutorial/micro_blog_hash_tag.log \
	source/example/tutorial/micro_blog_keyword.log \
	source/example/tutorial/micro_blog_keyword_and_location.log \
	source/example/tutorial/micro_blog_last_modified.log \
	source/example/tutorial/micro_blog_now.log \
	source/example/tutorial/micro_blog_posted_by.log \
	source/example/tutorial/micro_blog_score.log \
	source/example/tutorial/micro_blog_user.log \
	source/example/tutorial/network-3.log \
	source/example/tutorial/patricia_trie-2.log \
	source/example/tutorial/patricia_trie_prefix_search.log \
	source/example/tutorial/query_expansion-1.log \
	source/example/tutorial/query_expansion-2.log \
	source/example/tutorial/query_expansion-3.log \
	source/example/tutorial/search-1.log \
	source/example/tutorial/search-2.log \
	source/example/tutorial/search-3.log \
	source/example/tutorial/search-4.log \
	source/example/tutorial/search-5.log \
	source/example/tutorial/search-6.log \
	source/example/tutorial/search-7.log \
	source/images/fulltext-introduction/array.png \
	source/images/fulltext-introduction/array.svg \
	source/images/fulltext-introduction/columns.png \
	source/images/fulltext-introduction/columns.svg \
	source/images/fulltext-introduction/hash-table.png \
	source/images/fulltext-introduction/hash-table.svg \
	source/images/fulltext-introduction/index-column.png \
	source/images/fulltext-introduction/index-column.svg \
	source/images/fulltext-introduction/inverted-index.png \
	source/images/fulltext-introduction/inverted-index.svg \
	source/images/fulltext-introduction/patricia-trie.png \
	source/images/fulltext-introduction/patricia-trie.svg \
	source/images/fulltext-introduction/prefix-search.png \
	source/images/fulltext-introduction/prefix-search.svg \
	source/images/fulltext-introduction/record-id.png \
	source/images/fulltext-introduction/record-id.svg \
	source/images/fulltext-introduction/record.png \
	source/images/fulltext-introduction/record.svg \
	source/images/fulltext-introduction/scalar-column.png \
	source/images/fulltext-introduction/scalar-column.svg \
	source/images/fulltext-introduction/search-bigram-index-column-value.png \
	source/images/fulltext-introduction/search-bigram-index-column-value.svg \
	source/images/fulltext-introduction/search-bigram-token-id.png \
	source/images/fulltext-introduction/search-bigram-token-id.svg \
	source/images/fulltext-introduction/search-bigram.png \
	source/images/fulltext-introduction/search-bigram.svg \
	source/images/fulltext-introduction/search-choose-tokenizer.png \
	source/images/fulltext-introduction/search-choose-tokenizer.svg \
	source/images/fulltext-introduction/search-first-index-column-value.png \
	source/images/fulltext-introduction/search-first-index-column-value.svg \
	source/images/fulltext-introduction/search-first-token-id.png \
	source/images/fulltext-introduction/search-first-token-id.svg \
	source/images/fulltext-introduction/search-initial-state.png \
	source/images/fulltext-introduction/search-initial-state.svg \
	source/images/fulltext-introduction/search-on-key-table.png \
	source/images/fulltext-introduction/search-on-key-table.svg \
	source/images/fulltext-introduction/search-result.png \
	source/images/fulltext-introduction/search-result.svg \
	source/images/fulltext-introduction/search-second-index-column-value.png \
	source/images/fulltext-introduction/search-second-index-column-value.svg \
	source/images/fulltext-introduction/search-second-token-id.png \
	source/images/fulltext-introduction/search-second-token-id.svg \
	source/images/fulltext-introduction/tokenizer.png \
	source/images/fulltext-introduction/tokenizer.svg \
	source/images/fulltext-introduction/update-initial.png \
	source/images/fulltext-introduction/update-initial.svg \
	source/images/fulltext-introduction/update-process-first-data-first-token.png \
	source/images/fulltext-introduction/update-process-first-data-first-token.svg \
	source/images/fulltext-introduction/update-process-first-data-second-token.png \
	source/images/fulltext-introduction/update-process-first-data-second-token.svg \
	source/images/fulltext-introduction/update-process-second-data-first-token.png \
	source/images/fulltext-introduction/update-process-second-data-first-token.svg \
	source/images/fulltext-introduction/update-process-second-data-second-token.png \
	source/images/fulltext-introduction/update-process-second-data-second-token.svg \
	source/images/fulltext-introduction/update-save-first-data.png \
	source/images/fulltext-introduction/update-save-first-data.svg \
	source/images/fulltext-introduction/update-save-second-data.png \
	source/images/fulltext-introduction/update-save-second-data.svg \
	source/images/fulltext-introduction/vector-column.png \
	source/images/fulltext-introduction/vector-column.svg \
	source/images/geo-encode-leading-2bit.png \
	source/images/geo-encode-leading-2bit.svg \
	source/images/geo-encode-leading-4bit.png \
	source/images/geo-encode-leading-4bit.svg \
	source/images/geo-in-rectangle.png \
	source/images/geo-points-distance.png \
	source/images/geo-points-distance.svg \
	source/images/geo-points-in-circle.png \
	source/images/geo-points-in-circle.svg \
	source/images/geo-points-in-rectangle.png \
	source/images/geo-points-in-rectangle.svg \
	source/images/geo-points-sort.png \
	source/images/geo-points-sort.svg \
	source/images/geo-points.png \
	source/images/geo-points.svg \
	source/images/geo-search-in-circle.png \
	source/images/geo-search-in-circle.svg \
	source/images/geo-search-in-rectangle.png \
	source/images/geo-search-in-rectangle.svg \
	source/images/reference/tokenizers/used-when-indexing.png \
	source/images/reference/tokenizers/used-when-indexing.svg \
	source/images/reference/tokenizers/used-when-searching.png \
	source/images/reference/tokenizers/used-when-searching.svg \
	source/images/zulip-icon-128x128.png \
	source/index.rst \
	source/install.rst \
	source/install/almalinux.rst \
	source/install/amazon_linux.rst \
	source/install/centos.rst \
	source/install/cmake.md \
	source/install/debian.rst \
	source/install/docker.rst \
	source/install/mac_os_x.rst \
	source/install/others.rst \
	source/install/server-use.md \
	source/install/server-use.rst \
	source/install/ubuntu.md \
	source/install/windows.rst \
	source/limitations.rst \
	source/news.rst \
	source/news/0.rst \
	source/news/1.0.rst \
	source/news/1.1.rst \
	source/news/1.2.rst \
	source/news/1.3.rst \
	source/news/10.rst \
	source/news/11.rst \
	source/news/12.rst \
	source/news/13.md \
	source/news/14.md \
	source/news/15.md \
	source/news/2.rst \
	source/news/3.rst \
	source/news/4.rst \
	source/news/5.rst \
	source/news/6.rst \
	source/news/7.rst \
	source/news/8.rst \
	source/news/9.rst \
	source/news/senna.rst \
	source/origin.md \
	source/reference.rst \
	source/reference/alias.rst \
	source/reference/api.rst \
	source/reference/api/global_configurations.rst \
	source/reference/api/grn_cache.rst \
	source/reference/api/grn_column.rst \
	source/reference/api/grn_command_version.rst \
	source/reference/api/grn_content_type.rst \
	source/reference/api/grn_ctx.rst \
	source/reference/api/grn_db.rst \
	source/reference/api/grn_encoding.rst \
	source/reference/api/grn_expr.rst \
	source/reference/api/grn_geo.rst \
	source/reference/api/grn_hook.rst \
	source/reference/api/grn_ii.rst \
	source/reference/api/grn_index_cursor.rst \
	source/reference/api/grn_info.rst \
	source/reference/api/grn_inspect.rst \
	source/reference/api/grn_match_escalation.rst \
	source/reference/api/grn_obj.rst \
	source/reference/api/grn_proc.rst \
	source/reference/api/grn_search.rst \
	source/reference/api/grn_table.rst \
	source/reference/api/grn_table_cursor.rst \
	source/reference/api/grn_thread.rst \
	source/reference/api/grn_type.rst \
	source/reference/api/grn_user_data.rst \
	source/reference/api/overview.rst \
	source/reference/api/plugin.rst \
	source/reference/cast.rst \
	source/reference/column.rst \
	source/reference/columns/index.rst \
	source/reference/columns/pseudo.rst \
	source/reference/columns/scalar.rst \
	source/reference/columns/vector.rst \
	source/reference/command.rst \
	source/reference/command/command_version.rst \
	source/reference/command/n_workers.md \
	source/reference/command/output_format.rst \
	source/reference/command/output_trace_log.md \
	source/reference/command/pretty_print.rst \
	source/reference/command/request_id.rst \
	source/reference/command/request_timeout.rst \
	source/reference/command/return_code.rst \
	source/reference/command/return_codes/grn_input_output_error.rst \
	source/reference/command/return_codes/grn_invalid_argument.rst \
	source/reference/command/return_codes/grn_no_such_file_or_directory.rst \
	source/reference/command/return_codes/grn_not_enough_space.rst \
	source/reference/command/return_codes/grn_operation_not_permitted.rst \
	source/reference/command/return_codes/grn_resource_deadlock_avoided.rst \
	source/reference/commands/cache_limit.rst \
	source/reference/commands/check.rst \
	source/reference/commands/clearlock.rst \
	source/reference/commands/column_copy.rst \
	source/reference/commands/column_create.rst \
	source/reference/commands/column_list.rst \
	source/reference/commands/column_remove.rst \
	source/reference/commands/column_rename.rst \
	source/reference/commands/compress_filter.rst \
	source/reference/commands/config_delete.rst \
	source/reference/commands/config_get.rst \
	source/reference/commands/config_set.rst \
	source/reference/commands/database_unmap.rst \
	source/reference/commands/define_selector.rst \
	source/reference/commands/defrag.rst \
	source/reference/commands/delete.rst \
	source/reference/commands/dump.rst \
	source/reference/commands/index_column_diff.rst \
	source/reference/commands/io_flush.rst \
	source/reference/commands/load.rst \
	source/reference/commands/lock_acquire.rst \
	source/reference/commands/lock_clear.rst \
	source/reference/commands/lock_release.rst \
	source/reference/commands/log_level.rst \
	source/reference/commands/log_put.rst \
	source/reference/commands/log_reopen.rst \
	source/reference/commands/logical_count.rst \
	source/reference/commands/logical_parameters.rst \
	source/reference/commands/logical_range_filter.rst \
	source/reference/commands/logical_select.rst \
	source/reference/commands/logical_shard_list.rst \
	source/reference/commands/logical_table_remove.rst \
	source/reference/commands/normalize.rst \
	source/reference/commands/normalizer_list.rst \
	source/reference/commands/object_exist.rst \
	source/reference/commands/object_inspect.rst \
	source/reference/commands/object_list.rst \
	source/reference/commands/object_remove.rst \
	source/reference/commands/plugin_register.rst \
	source/reference/commands/plugin_unregister.rst \
	source/reference/commands/query_expand.rst \
	source/reference/commands/quit.rst \
	source/reference/commands/range_filter.rst \
	source/reference/commands/reference_acquire.rst \
	source/reference/commands/reference_release.rst \
	source/reference/commands/register.rst \
	source/reference/commands/reindex.rst \
	source/reference/commands/request_cancel.rst \
	source/reference/commands/ruby_eval.rst \
	source/reference/commands/schema.rst \
	source/reference/commands/select.rst \
	source/reference/commands/shutdown.rst \
	source/reference/commands/status.rst \
	source/reference/commands/suggest.rst \
	source/reference/commands/table_copy.rst \
	source/reference/commands/table_create.rst \
	source/reference/commands/table_list.rst \
	source/reference/commands/table_remove.rst \
	source/reference/commands/table_rename.rst \
	source/reference/commands/table_tokenize.rst \
	source/reference/commands/thread_dump.rst \
	source/reference/commands/thread_limit.rst \
	source/reference/commands/tokenize.rst \
	source/reference/commands/tokenizer_list.rst \
	source/reference/commands/truncate.rst \
	source/reference/configuration.rst \
	source/reference/executables.rst \
	source/reference/executables/grndb.rst \
	source/reference/executables/grnslap.rst \
	source/reference/executables/groonga-benchmark.rst \
	source/reference/executables/groonga-httpd.rst \
	source/reference/executables/groonga-server-http.rst \
	source/reference/executables/groonga-suggest-create-dataset.rst \
	source/reference/executables/groonga-suggest-httpd.rst \
	source/reference/executables/groonga-suggest-learner.rst \
	source/reference/executables/groonga.rst \
	source/reference/function.rst \
	source/reference/functions/between.rst \
	source/reference/functions/cast_loose.rst \
	source/reference/functions/edit_distance.rst \
	source/reference/functions/escalate.rst \
	source/reference/functions/fuzzy_search.rst \
	source/reference/functions/geo_distance.rst \
	source/reference/functions/geo_in_circle.rst \
	source/reference/functions/geo_in_rectangle.rst \
	source/reference/functions/highlight.rst \
	source/reference/functions/highlight_full.rst \
	source/reference/functions/highlight_html.rst \
	source/reference/functions/html_untag.rst \
	source/reference/functions/in_records.rst \
	source/reference/functions/in_values.rst \
	source/reference/functions/language_model_vectorize.md \
	source/reference/functions/math_abs.rst \
	source/reference/functions/now.rst \
	source/reference/functions/number_classify.rst \
	source/reference/functions/prefix_rk_search.rst \
	source/reference/functions/query.rst \
	source/reference/functions/query_parallel_or.rst \
	source/reference/functions/rand.rst \
	source/reference/functions/snippet.rst \
	source/reference/functions/snippet_html.rst \
	source/reference/functions/string_length.rst \
	source/reference/functions/string_slice.rst \
	source/reference/functions/string_substring.rst \
	source/reference/functions/sub_filter.rst \
	source/reference/functions/time_classify_day.rst \
	source/reference/functions/time_classify_day_of_week.rst \
	source/reference/functions/time_classify_hour.rst \
	source/reference/functions/time_classify_minute.rst \
	source/reference/functions/time_classify_month.rst \
	source/reference/functions/time_classify_second.rst \
	source/reference/functions/time_classify_week.rst \
	source/reference/functions/time_classify_year.rst \
	source/reference/functions/vector_find.rst \
	source/reference/functions/vector_new.rst \
	source/reference/functions/vector_size.rst \
	source/reference/functions/vector_slice.rst \
	source/reference/grn_expr.rst \
	source/reference/grn_expr/query_syntax.rst \
	source/reference/grn_expr/script_syntax.rst \
	source/reference/indexing.rst \
	source/reference/language_model.md \
	source/reference/log.rst \
	source/reference/normalizers.rst \
	source/reference/normalizers/normalizer_auto.rst \
	source/reference/normalizers/normalizer_nfkc.md \
	source/reference/normalizers/normalizer_nfkc100.rst \
	source/reference/normalizers/normalizer_nfkc121.rst \
	source/reference/normalizers/normalizer_nfkc130.rst \
	source/reference/normalizers/normalizer_nfkc150.rst \
	source/reference/normalizers/normalizer_nfkc51.rst \
	source/reference/normalizers/normalizer_table.rst \
	source/reference/operations.rst \
	source/reference/operations/geolocation_search.rst \
	source/reference/operations/prefix_rk_search.rst \
	source/reference/output.rst \
	source/reference/query_expanders.rst \
	source/reference/query_expanders/tsv.rst \
	source/reference/regular_expression.rst \
	source/reference/scorer.rst \
	source/reference/scorers/scorer_tf_at_most.rst \
	source/reference/scorers/scorer_tf_idf.rst \
	source/reference/scoring_note.rst \
	source/reference/sharding.rst \
	source/reference/suggest.rst \
	source/reference/suggest/completion.rst \
	source/reference/suggest/correction.rst \
	source/reference/suggest/introduction.rst \
	source/reference/suggest/suggestion.rst \
	source/reference/tables.rst \
	source/reference/token_filter/summary.rst \
	source/reference/token_filters.rst \
	source/reference/token_filters/token_filter_nfkc.md \
	source/reference/token_filters/token_filter_nfkc100.rst \
	source/reference/token_filters/token_filter_nfkc150.rst \
	source/reference/token_filters/token_filter_stem.rst \
	source/reference/token_filters/token_filter_stop_word.rst \
	source/reference/tokenizer/summary.rst \
	source/reference/tokenizers.rst \
	source/reference/tokenizers/token_bigram.rst \
	source/reference/tokenizers/token_bigram_ignore_blank.rst \
	source/reference/tokenizers/token_bigram_ignore_blank_split_symbol.rst \
	source/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.rst \
	source/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.rst \
	source/reference/tokenizers/token_bigram_split_symbol.rst \
	source/reference/tokenizers/token_bigram_split_symbol_alpha.rst \
	source/reference/tokenizers/token_bigram_split_symbol_alpha_digit.rst \
	source/reference/tokenizers/token_delimit.rst \
	source/reference/tokenizers/token_delimit_null.rst \
	source/reference/tokenizers/token_mecab.rst \
	source/reference/tokenizers/token_ngram.rst \
	source/reference/tokenizers/token_pattern.rst \
	source/reference/tokenizers/token_regexp.rst \
	source/reference/tokenizers/token_table.rst \
	source/reference/tokenizers/token_trigram.rst \
	source/reference/tokenizers/token_unigram.rst \
	source/reference/tuning.rst \
	source/reference/types.rst \
	source/reference/window_function.rst \
	source/reference/window_functions/record_number.rst \
	source/reference/window_functions/window_count.rst \
	source/reference/window_functions/window_rank.rst \
	source/reference/window_functions/window_record_number.rst \
	source/reference/window_functions/window_sum.rst \
	source/server.rst \
	source/server/gqtp.rst \
	source/server/http.rst \
	source/server/http/comparison.rst \
	source/server/http/groonga-httpd.rst \
	source/server/http/groonga.rst \
	source/server/memcached.rst \
	source/server/package.rst \
	source/spec.rst \
	source/spec/gqtp.rst \
	source/spec/search.rst \
	source/textile.py \
	source/troubleshooting.rst \
	source/troubleshooting/different_results_with_the_same_keyword.rst \
	source/troubleshooting/how_to_analyze_error_message.rst \
	source/troubleshooting/mmap_cannot_allocate_memory.rst \
	source/tutorial.rst \
	source/tutorial/data.rst \
	source/tutorial/drilldown.rst \
	source/tutorial/index.rst \
	source/tutorial/introduction.rst \
	source/tutorial/lexicon.rst \
	source/tutorial/match_columns.rst \
	source/tutorial/micro_blog.rst \
	source/tutorial/network.rst \
	source/tutorial/patricia_trie.rst \
	source/tutorial/query_expansion.rst \
	source/tutorial/search.rst \
	$(NULL)

po_files = \
	characteristic.po \
	client.po \
	community.po \
	conf.po \
	contribution.po \
	contribution/development.po \
	contribution/development/build.po \
	contribution/development/build/unix_autotools.po \
	contribution/development/build/unix_cmake.po \
	contribution/development/build/windows_cmake.po \
	contribution/development/com.po \
	contribution/development/cooperation.po \
	contribution/development/query.po \
	contribution/development/release.po \
	contribution/development/repository.po \
	contribution/development/test.po \
	contribution/documentation.po \
	contribution/documentation/c-api.po \
	contribution/documentation/i18n.po \
	contribution/documentation/introduction.po \
	contribution/report.po \
	development.po \
	development/travis-ci.po \
	index.po \
	install.po \
	install/almalinux.po \
	install/amazon_linux.po \
	install/centos.po \
	install/cmake.po \
	install/debian.po \
	install/docker.po \
	install/mac_os_x.po \
	install/others.po \
	install/ubuntu.po \
	install/windows.po \
	limitations.po \
	news.po \
	news/0.po \
	news/1.0.po \
	news/1.1.po \
	news/1.2.po \
	news/1.3.po \
	news/10.po \
	news/11.po \
	news/12.po \
	news/13.po \
	news/14.po \
	news/15.po \
	news/2.po \
	news/3.po \
	news/4.po \
	news/5.po \
	news/6.po \
	news/7.po \
	news/8.po \
	news/9.po \
	news/senna.po \
	origin.po \
	reference.po \
	reference/alias.po \
	reference/api.po \
	reference/api/global_configurations.po \
	reference/api/grn_cache.po \
	reference/api/grn_column.po \
	reference/api/grn_command_version.po \
	reference/api/grn_content_type.po \
	reference/api/grn_ctx.po \
	reference/api/grn_db.po \
	reference/api/grn_encoding.po \
	reference/api/grn_expr.po \
	reference/api/grn_geo.po \
	reference/api/grn_hook.po \
	reference/api/grn_ii.po \
	reference/api/grn_index_cursor.po \
	reference/api/grn_info.po \
	reference/api/grn_inspect.po \
	reference/api/grn_match_escalation.po \
	reference/api/grn_obj.po \
	reference/api/grn_proc.po \
	reference/api/grn_search.po \
	reference/api/grn_table.po \
	reference/api/grn_table_cursor.po \
	reference/api/grn_thread.po \
	reference/api/grn_type.po \
	reference/api/grn_user_data.po \
	reference/api/overview.po \
	reference/api/plugin.po \
	reference/cast.po \
	reference/column.po \
	reference/columns/index.po \
	reference/columns/pseudo.po \
	reference/columns/scalar.po \
	reference/columns/vector.po \
	reference/command.po \
	reference/command/command_version.po \
	reference/command/n_workers.po \
	reference/command/output_format.po \
	reference/command/output_trace_log.po \
	reference/command/pretty_print.po \
	reference/command/request_id.po \
	reference/command/request_timeout.po \
	reference/command/return_code.po \
	reference/command/return_codes/grn_input_output_error.po \
	reference/command/return_codes/grn_invalid_argument.po \
	reference/command/return_codes/grn_no_such_file_or_directory.po \
	reference/command/return_codes/grn_not_enough_space.po \
	reference/command/return_codes/grn_operation_not_permitted.po \
	reference/command/return_codes/grn_resource_deadlock_avoided.po \
	reference/commands/cache_limit.po \
	reference/commands/check.po \
	reference/commands/clearlock.po \
	reference/commands/column_copy.po \
	reference/commands/column_create.po \
	reference/commands/column_list.po \
	reference/commands/column_remove.po \
	reference/commands/column_rename.po \
	reference/commands/config_delete.po \
	reference/commands/config_get.po \
	reference/commands/config_set.po \
	reference/commands/database_unmap.po \
	reference/commands/define_selector.po \
	reference/commands/defrag.po \
	reference/commands/delete.po \
	reference/commands/dump.po \
	reference/commands/index_column_diff.po \
	reference/commands/io_flush.po \
	reference/commands/load.po \
	reference/commands/lock_acquire.po \
	reference/commands/lock_clear.po \
	reference/commands/lock_release.po \
	reference/commands/log_level.po \
	reference/commands/log_put.po \
	reference/commands/log_reopen.po \
	reference/commands/logical_count.po \
	reference/commands/logical_parameters.po \
	reference/commands/logical_range_filter.po \
	reference/commands/logical_select.po \
	reference/commands/logical_shard_list.po \
	reference/commands/logical_table_remove.po \
	reference/commands/normalize.po \
	reference/commands/normalizer_list.po \
	reference/commands/object_exist.po \
	reference/commands/object_inspect.po \
	reference/commands/object_list.po \
	reference/commands/object_remove.po \
	reference/commands/plugin_register.po \
	reference/commands/plugin_unregister.po \
	reference/commands/query_expand.po \
	reference/commands/quit.po \
	reference/commands/range_filter.po \
	reference/commands/reference_acquire.po \
	reference/commands/reference_release.po \
	reference/commands/register.po \
	reference/commands/reindex.po \
	reference/commands/request_cancel.po \
	reference/commands/ruby_eval.po \
	reference/commands/schema.po \
	reference/commands/select.po \
	reference/commands/shutdown.po \
	reference/commands/status.po \
	reference/commands/suggest.po \
	reference/commands/table_copy.po \
	reference/commands/table_create.po \
	reference/commands/table_list.po \
	reference/commands/table_remove.po \
	reference/commands/table_rename.po \
	reference/commands/table_tokenize.po \
	reference/commands/thread_dump.po \
	reference/commands/thread_limit.po \
	reference/commands/tokenize.po \
	reference/commands/tokenizer_list.po \
	reference/commands/truncate.po \
	reference/configuration.po \
	reference/executables.po \
	reference/executables/grndb.po \
	reference/executables/grnslap.po \
	reference/executables/groonga-benchmark.po \
	reference/executables/groonga-httpd.po \
	reference/executables/groonga-server-http.po \
	reference/executables/groonga-suggest-create-dataset.po \
	reference/executables/groonga-suggest-httpd.po \
	reference/executables/groonga-suggest-learner.po \
	reference/executables/groonga.po \
	reference/function.po \
	reference/functions/between.po \
	reference/functions/cast_loose.po \
	reference/functions/edit_distance.po \
	reference/functions/escalate.po \
	reference/functions/fuzzy_search.po \
	reference/functions/geo_distance.po \
	reference/functions/geo_in_circle.po \
	reference/functions/geo_in_rectangle.po \
	reference/functions/highlight.po \
	reference/functions/highlight_full.po \
	reference/functions/highlight_html.po \
	reference/functions/html_untag.po \
	reference/functions/in_records.po \
	reference/functions/in_values.po \
	reference/functions/language_model_vectorize.po \
	reference/functions/math_abs.po \
	reference/functions/now.po \
	reference/functions/number_classify.po \
	reference/functions/prefix_rk_search.po \
	reference/functions/query.po \
	reference/functions/query_parallel_or.po \
	reference/functions/rand.po \
	reference/functions/snippet.po \
	reference/functions/snippet_html.po \
	reference/functions/string_length.po \
	reference/functions/string_slice.po \
	reference/functions/string_substring.po \
	reference/functions/sub_filter.po \
	reference/functions/time_classify_day.po \
	reference/functions/time_classify_day_of_week.po \
	reference/functions/time_classify_hour.po \
	reference/functions/time_classify_minute.po \
	reference/functions/time_classify_month.po \
	reference/functions/time_classify_second.po \
	reference/functions/time_classify_week.po \
	reference/functions/time_classify_year.po \
	reference/functions/vector_find.po \
	reference/functions/vector_new.po \
	reference/functions/vector_size.po \
	reference/functions/vector_slice.po \
	reference/grn_expr.po \
	reference/grn_expr/query_syntax.po \
	reference/grn_expr/script_syntax.po \
	reference/indexing.po \
	reference/language_model.po \
	reference/log.po \
	reference/normalizers.po \
	reference/normalizers/normalizer_auto.po \
	reference/normalizers/normalizer_nfkc.po \
	reference/normalizers/normalizer_nfkc100.po \
	reference/normalizers/normalizer_nfkc121.po \
	reference/normalizers/normalizer_nfkc130.po \
	reference/normalizers/normalizer_nfkc150.po \
	reference/normalizers/normalizer_nfkc51.po \
	reference/normalizers/normalizer_table.po \
	reference/operations.po \
	reference/operations/geolocation_search.po \
	reference/operations/prefix_rk_search.po \
	reference/output.po \
	reference/query_expanders.po \
	reference/query_expanders/tsv.po \
	reference/regular_expression.po \
	reference/scorer.po \
	reference/scorers/scorer_tf_at_most.po \
	reference/scorers/scorer_tf_idf.po \
	reference/sharding.po \
	reference/suggest.po \
	reference/suggest/completion.po \
	reference/suggest/correction.po \
	reference/suggest/introduction.po \
	reference/suggest/suggestion.po \
	reference/tables.po \
	reference/token_filter/summary.po \
	reference/token_filters.po \
	reference/token_filters/token_filter_nfkc.po \
	reference/token_filters/token_filter_nfkc100.po \
	reference/token_filters/token_filter_nfkc150.po \
	reference/token_filters/token_filter_stem.po \
	reference/token_filters/token_filter_stop_word.po \
	reference/tokenizer/summary.po \
	reference/tokenizers.po \
	reference/tokenizers/token_bigram.po \
	reference/tokenizers/token_bigram_ignore_blank.po \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol.po \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.po \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.po \
	reference/tokenizers/token_bigram_split_symbol.po \
	reference/tokenizers/token_bigram_split_symbol_alpha.po \
	reference/tokenizers/token_bigram_split_symbol_alpha_digit.po \
	reference/tokenizers/token_delimit.po \
	reference/tokenizers/token_delimit_null.po \
	reference/tokenizers/token_mecab.po \
	reference/tokenizers/token_ngram.po \
	reference/tokenizers/token_pattern.po \
	reference/tokenizers/token_regexp.po \
	reference/tokenizers/token_table.po \
	reference/tokenizers/token_trigram.po \
	reference/tokenizers/token_unigram.po \
	reference/tuning.po \
	reference/types.po \
	reference/window_function.po \
	reference/window_functions/record_number.po \
	reference/window_functions/window_count.po \
	reference/window_functions/window_rank.po \
	reference/window_functions/window_record_number.po \
	reference/window_functions/window_sum.po \
	server.po \
	server/gqtp.po \
	server/http.po \
	server/http/comparison.po \
	server/http/groonga-httpd.po \
	server/http/groonga.po \
	server/memcached.po \
	server/package.po \
	spec.po \
	spec/gqtp.po \
	spec/search.po \
	troubleshooting.po \
	troubleshooting/different_results_with_the_same_keyword.po \
	troubleshooting/how_to_analyze_error_message.po \
	troubleshooting/mmap_cannot_allocate_memory.po \
	tutorial.po \
	tutorial/data.po \
	tutorial/drilldown.po \
	tutorial/index.po \
	tutorial/introduction.po \
	tutorial/lexicon.po \
	tutorial/match_columns.po \
	tutorial/micro_blog.po \
	tutorial/network.po \
	tutorial/patricia_trie.po \
	tutorial/query_expansion.po \
	tutorial/search.po \
	$(NULL)

po_files_relative_from_locale_dir = \
	LC_MESSAGES/characteristic.po \
	LC_MESSAGES/client.po \
	LC_MESSAGES/community.po \
	LC_MESSAGES/conf.po \
	LC_MESSAGES/contribution.po \
	LC_MESSAGES/contribution/development.po \
	LC_MESSAGES/contribution/development/build.po \
	LC_MESSAGES/contribution/development/build/unix_autotools.po \
	LC_MESSAGES/contribution/development/build/unix_cmake.po \
	LC_MESSAGES/contribution/development/build/windows_cmake.po \
	LC_MESSAGES/contribution/development/com.po \
	LC_MESSAGES/contribution/development/cooperation.po \
	LC_MESSAGES/contribution/development/query.po \
	LC_MESSAGES/contribution/development/release.po \
	LC_MESSAGES/contribution/development/repository.po \
	LC_MESSAGES/contribution/development/test.po \
	LC_MESSAGES/contribution/documentation.po \
	LC_MESSAGES/contribution/documentation/c-api.po \
	LC_MESSAGES/contribution/documentation/i18n.po \
	LC_MESSAGES/contribution/documentation/introduction.po \
	LC_MESSAGES/contribution/report.po \
	LC_MESSAGES/development.po \
	LC_MESSAGES/development/travis-ci.po \
	LC_MESSAGES/index.po \
	LC_MESSAGES/install.po \
	LC_MESSAGES/install/almalinux.po \
	LC_MESSAGES/install/amazon_linux.po \
	LC_MESSAGES/install/centos.po \
	LC_MESSAGES/install/cmake.po \
	LC_MESSAGES/install/debian.po \
	LC_MESSAGES/install/docker.po \
	LC_MESSAGES/install/mac_os_x.po \
	LC_MESSAGES/install/others.po \
	LC_MESSAGES/install/ubuntu.po \
	LC_MESSAGES/install/windows.po \
	LC_MESSAGES/limitations.po \
	LC_MESSAGES/news.po \
	LC_MESSAGES/news/0.po \
	LC_MESSAGES/news/1.0.po \
	LC_MESSAGES/news/1.1.po \
	LC_MESSAGES/news/1.2.po \
	LC_MESSAGES/news/1.3.po \
	LC_MESSAGES/news/10.po \
	LC_MESSAGES/news/11.po \
	LC_MESSAGES/news/12.po \
	LC_MESSAGES/news/13.po \
	LC_MESSAGES/news/14.po \
	LC_MESSAGES/news/15.po \
	LC_MESSAGES/news/2.po \
	LC_MESSAGES/news/3.po \
	LC_MESSAGES/news/4.po \
	LC_MESSAGES/news/5.po \
	LC_MESSAGES/news/6.po \
	LC_MESSAGES/news/7.po \
	LC_MESSAGES/news/8.po \
	LC_MESSAGES/news/9.po \
	LC_MESSAGES/news/senna.po \
	LC_MESSAGES/origin.po \
	LC_MESSAGES/reference.po \
	LC_MESSAGES/reference/alias.po \
	LC_MESSAGES/reference/api.po \
	LC_MESSAGES/reference/api/global_configurations.po \
	LC_MESSAGES/reference/api/grn_cache.po \
	LC_MESSAGES/reference/api/grn_column.po \
	LC_MESSAGES/reference/api/grn_command_version.po \
	LC_MESSAGES/reference/api/grn_content_type.po \
	LC_MESSAGES/reference/api/grn_ctx.po \
	LC_MESSAGES/reference/api/grn_db.po \
	LC_MESSAGES/reference/api/grn_encoding.po \
	LC_MESSAGES/reference/api/grn_expr.po \
	LC_MESSAGES/reference/api/grn_geo.po \
	LC_MESSAGES/reference/api/grn_hook.po \
	LC_MESSAGES/reference/api/grn_ii.po \
	LC_MESSAGES/reference/api/grn_index_cursor.po \
	LC_MESSAGES/reference/api/grn_info.po \
	LC_MESSAGES/reference/api/grn_inspect.po \
	LC_MESSAGES/reference/api/grn_match_escalation.po \
	LC_MESSAGES/reference/api/grn_obj.po \
	LC_MESSAGES/reference/api/grn_proc.po \
	LC_MESSAGES/reference/api/grn_search.po \
	LC_MESSAGES/reference/api/grn_table.po \
	LC_MESSAGES/reference/api/grn_table_cursor.po \
	LC_MESSAGES/reference/api/grn_thread.po \
	LC_MESSAGES/reference/api/grn_type.po \
	LC_MESSAGES/reference/api/grn_user_data.po \
	LC_MESSAGES/reference/api/overview.po \
	LC_MESSAGES/reference/api/plugin.po \
	LC_MESSAGES/reference/cast.po \
	LC_MESSAGES/reference/column.po \
	LC_MESSAGES/reference/columns/index.po \
	LC_MESSAGES/reference/columns/pseudo.po \
	LC_MESSAGES/reference/columns/scalar.po \
	LC_MESSAGES/reference/columns/vector.po \
	LC_MESSAGES/reference/command.po \
	LC_MESSAGES/reference/command/command_version.po \
	LC_MESSAGES/reference/command/n_workers.po \
	LC_MESSAGES/reference/command/output_format.po \
	LC_MESSAGES/reference/command/output_trace_log.po \
	LC_MESSAGES/reference/command/pretty_print.po \
	LC_MESSAGES/reference/command/request_id.po \
	LC_MESSAGES/reference/command/request_timeout.po \
	LC_MESSAGES/reference/command/return_code.po \
	LC_MESSAGES/reference/command/return_codes/grn_input_output_error.po \
	LC_MESSAGES/reference/command/return_codes/grn_invalid_argument.po \
	LC_MESSAGES/reference/command/return_codes/grn_no_such_file_or_directory.po \
	LC_MESSAGES/reference/command/return_codes/grn_not_enough_space.po \
	LC_MESSAGES/reference/command/return_codes/grn_operation_not_permitted.po \
	LC_MESSAGES/reference/command/return_codes/grn_resource_deadlock_avoided.po \
	LC_MESSAGES/reference/commands/cache_limit.po \
	LC_MESSAGES/reference/commands/check.po \
	LC_MESSAGES/reference/commands/clearlock.po \
	LC_MESSAGES/reference/commands/column_copy.po \
	LC_MESSAGES/reference/commands/column_create.po \
	LC_MESSAGES/reference/commands/column_list.po \
	LC_MESSAGES/reference/commands/column_remove.po \
	LC_MESSAGES/reference/commands/column_rename.po \
	LC_MESSAGES/reference/commands/config_delete.po \
	LC_MESSAGES/reference/commands/config_get.po \
	LC_MESSAGES/reference/commands/config_set.po \
	LC_MESSAGES/reference/commands/database_unmap.po \
	LC_MESSAGES/reference/commands/define_selector.po \
	LC_MESSAGES/reference/commands/defrag.po \
	LC_MESSAGES/reference/commands/delete.po \
	LC_MESSAGES/reference/commands/dump.po \
	LC_MESSAGES/reference/commands/index_column_diff.po \
	LC_MESSAGES/reference/commands/io_flush.po \
	LC_MESSAGES/reference/commands/load.po \
	LC_MESSAGES/reference/commands/lock_acquire.po \
	LC_MESSAGES/reference/commands/lock_clear.po \
	LC_MESSAGES/reference/commands/lock_release.po \
	LC_MESSAGES/reference/commands/log_level.po \
	LC_MESSAGES/reference/commands/log_put.po \
	LC_MESSAGES/reference/commands/log_reopen.po \
	LC_MESSAGES/reference/commands/logical_count.po \
	LC_MESSAGES/reference/commands/logical_parameters.po \
	LC_MESSAGES/reference/commands/logical_range_filter.po \
	LC_MESSAGES/reference/commands/logical_select.po \
	LC_MESSAGES/reference/commands/logical_shard_list.po \
	LC_MESSAGES/reference/commands/logical_table_remove.po \
	LC_MESSAGES/reference/commands/normalize.po \
	LC_MESSAGES/reference/commands/normalizer_list.po \
	LC_MESSAGES/reference/commands/object_exist.po \
	LC_MESSAGES/reference/commands/object_inspect.po \
	LC_MESSAGES/reference/commands/object_list.po \
	LC_MESSAGES/reference/commands/object_remove.po \
	LC_MESSAGES/reference/commands/plugin_register.po \
	LC_MESSAGES/reference/commands/plugin_unregister.po \
	LC_MESSAGES/reference/commands/query_expand.po \
	LC_MESSAGES/reference/commands/quit.po \
	LC_MESSAGES/reference/commands/range_filter.po \
	LC_MESSAGES/reference/commands/reference_acquire.po \
	LC_MESSAGES/reference/commands/reference_release.po \
	LC_MESSAGES/reference/commands/register.po \
	LC_MESSAGES/reference/commands/reindex.po \
	LC_MESSAGES/reference/commands/request_cancel.po \
	LC_MESSAGES/reference/commands/ruby_eval.po \
	LC_MESSAGES/reference/commands/schema.po \
	LC_MESSAGES/reference/commands/select.po \
	LC_MESSAGES/reference/commands/shutdown.po \
	LC_MESSAGES/reference/commands/status.po \
	LC_MESSAGES/reference/commands/suggest.po \
	LC_MESSAGES/reference/commands/table_copy.po \
	LC_MESSAGES/reference/commands/table_create.po \
	LC_MESSAGES/reference/commands/table_list.po \
	LC_MESSAGES/reference/commands/table_remove.po \
	LC_MESSAGES/reference/commands/table_rename.po \
	LC_MESSAGES/reference/commands/table_tokenize.po \
	LC_MESSAGES/reference/commands/thread_dump.po \
	LC_MESSAGES/reference/commands/thread_limit.po \
	LC_MESSAGES/reference/commands/tokenize.po \
	LC_MESSAGES/reference/commands/tokenizer_list.po \
	LC_MESSAGES/reference/commands/truncate.po \
	LC_MESSAGES/reference/configuration.po \
	LC_MESSAGES/reference/executables.po \
	LC_MESSAGES/reference/executables/grndb.po \
	LC_MESSAGES/reference/executables/grnslap.po \
	LC_MESSAGES/reference/executables/groonga-benchmark.po \
	LC_MESSAGES/reference/executables/groonga-httpd.po \
	LC_MESSAGES/reference/executables/groonga-server-http.po \
	LC_MESSAGES/reference/executables/groonga-suggest-create-dataset.po \
	LC_MESSAGES/reference/executables/groonga-suggest-httpd.po \
	LC_MESSAGES/reference/executables/groonga-suggest-learner.po \
	LC_MESSAGES/reference/executables/groonga.po \
	LC_MESSAGES/reference/function.po \
	LC_MESSAGES/reference/functions/between.po \
	LC_MESSAGES/reference/functions/cast_loose.po \
	LC_MESSAGES/reference/functions/edit_distance.po \
	LC_MESSAGES/reference/functions/escalate.po \
	LC_MESSAGES/reference/functions/fuzzy_search.po \
	LC_MESSAGES/reference/functions/geo_distance.po \
	LC_MESSAGES/reference/functions/geo_in_circle.po \
	LC_MESSAGES/reference/functions/geo_in_rectangle.po \
	LC_MESSAGES/reference/functions/highlight.po \
	LC_MESSAGES/reference/functions/highlight_full.po \
	LC_MESSAGES/reference/functions/highlight_html.po \
	LC_MESSAGES/reference/functions/html_untag.po \
	LC_MESSAGES/reference/functions/in_records.po \
	LC_MESSAGES/reference/functions/in_values.po \
	LC_MESSAGES/reference/functions/language_model_vectorize.po \
	LC_MESSAGES/reference/functions/math_abs.po \
	LC_MESSAGES/reference/functions/now.po \
	LC_MESSAGES/reference/functions/number_classify.po \
	LC_MESSAGES/reference/functions/prefix_rk_search.po \
	LC_MESSAGES/reference/functions/query.po \
	LC_MESSAGES/reference/functions/query_parallel_or.po \
	LC_MESSAGES/reference/functions/rand.po \
	LC_MESSAGES/reference/functions/snippet.po \
	LC_MESSAGES/reference/functions/snippet_html.po \
	LC_MESSAGES/reference/functions/string_length.po \
	LC_MESSAGES/reference/functions/string_slice.po \
	LC_MESSAGES/reference/functions/string_substring.po \
	LC_MESSAGES/reference/functions/sub_filter.po \
	LC_MESSAGES/reference/functions/time_classify_day.po \
	LC_MESSAGES/reference/functions/time_classify_day_of_week.po \
	LC_MESSAGES/reference/functions/time_classify_hour.po \
	LC_MESSAGES/reference/functions/time_classify_minute.po \
	LC_MESSAGES/reference/functions/time_classify_month.po \
	LC_MESSAGES/reference/functions/time_classify_second.po \
	LC_MESSAGES/reference/functions/time_classify_week.po \
	LC_MESSAGES/reference/functions/time_classify_year.po \
	LC_MESSAGES/reference/functions/vector_find.po \
	LC_MESSAGES/reference/functions/vector_new.po \
	LC_MESSAGES/reference/functions/vector_size.po \
	LC_MESSAGES/reference/functions/vector_slice.po \
	LC_MESSAGES/reference/grn_expr.po \
	LC_MESSAGES/reference/grn_expr/query_syntax.po \
	LC_MESSAGES/reference/grn_expr/script_syntax.po \
	LC_MESSAGES/reference/indexing.po \
	LC_MESSAGES/reference/language_model.po \
	LC_MESSAGES/reference/log.po \
	LC_MESSAGES/reference/normalizers.po \
	LC_MESSAGES/reference/normalizers/normalizer_auto.po \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc.po \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc100.po \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc121.po \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc130.po \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc150.po \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc51.po \
	LC_MESSAGES/reference/normalizers/normalizer_table.po \
	LC_MESSAGES/reference/operations.po \
	LC_MESSAGES/reference/operations/geolocation_search.po \
	LC_MESSAGES/reference/operations/prefix_rk_search.po \
	LC_MESSAGES/reference/output.po \
	LC_MESSAGES/reference/query_expanders.po \
	LC_MESSAGES/reference/query_expanders/tsv.po \
	LC_MESSAGES/reference/regular_expression.po \
	LC_MESSAGES/reference/scorer.po \
	LC_MESSAGES/reference/scorers/scorer_tf_at_most.po \
	LC_MESSAGES/reference/scorers/scorer_tf_idf.po \
	LC_MESSAGES/reference/sharding.po \
	LC_MESSAGES/reference/suggest.po \
	LC_MESSAGES/reference/suggest/completion.po \
	LC_MESSAGES/reference/suggest/correction.po \
	LC_MESSAGES/reference/suggest/introduction.po \
	LC_MESSAGES/reference/suggest/suggestion.po \
	LC_MESSAGES/reference/tables.po \
	LC_MESSAGES/reference/token_filter/summary.po \
	LC_MESSAGES/reference/token_filters.po \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc.po \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc100.po \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc150.po \
	LC_MESSAGES/reference/token_filters/token_filter_stem.po \
	LC_MESSAGES/reference/token_filters/token_filter_stop_word.po \
	LC_MESSAGES/reference/tokenizer/summary.po \
	LC_MESSAGES/reference/tokenizers.po \
	LC_MESSAGES/reference/tokenizers/token_bigram.po \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank.po \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol.po \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.po \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.po \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol.po \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol_alpha.po \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol_alpha_digit.po \
	LC_MESSAGES/reference/tokenizers/token_delimit.po \
	LC_MESSAGES/reference/tokenizers/token_delimit_null.po \
	LC_MESSAGES/reference/tokenizers/token_mecab.po \
	LC_MESSAGES/reference/tokenizers/token_ngram.po \
	LC_MESSAGES/reference/tokenizers/token_pattern.po \
	LC_MESSAGES/reference/tokenizers/token_regexp.po \
	LC_MESSAGES/reference/tokenizers/token_table.po \
	LC_MESSAGES/reference/tokenizers/token_trigram.po \
	LC_MESSAGES/reference/tokenizers/token_unigram.po \
	LC_MESSAGES/reference/tuning.po \
	LC_MESSAGES/reference/types.po \
	LC_MESSAGES/reference/window_function.po \
	LC_MESSAGES/reference/window_functions/record_number.po \
	LC_MESSAGES/reference/window_functions/window_count.po \
	LC_MESSAGES/reference/window_functions/window_rank.po \
	LC_MESSAGES/reference/window_functions/window_record_number.po \
	LC_MESSAGES/reference/window_functions/window_sum.po \
	LC_MESSAGES/server.po \
	LC_MESSAGES/server/gqtp.po \
	LC_MESSAGES/server/http.po \
	LC_MESSAGES/server/http/comparison.po \
	LC_MESSAGES/server/http/groonga-httpd.po \
	LC_MESSAGES/server/http/groonga.po \
	LC_MESSAGES/server/memcached.po \
	LC_MESSAGES/server/package.po \
	LC_MESSAGES/spec.po \
	LC_MESSAGES/spec/gqtp.po \
	LC_MESSAGES/spec/search.po \
	LC_MESSAGES/troubleshooting.po \
	LC_MESSAGES/troubleshooting/different_results_with_the_same_keyword.po \
	LC_MESSAGES/troubleshooting/how_to_analyze_error_message.po \
	LC_MESSAGES/troubleshooting/mmap_cannot_allocate_memory.po \
	LC_MESSAGES/tutorial.po \
	LC_MESSAGES/tutorial/data.po \
	LC_MESSAGES/tutorial/drilldown.po \
	LC_MESSAGES/tutorial/index.po \
	LC_MESSAGES/tutorial/introduction.po \
	LC_MESSAGES/tutorial/lexicon.po \
	LC_MESSAGES/tutorial/match_columns.po \
	LC_MESSAGES/tutorial/micro_blog.po \
	LC_MESSAGES/tutorial/network.po \
	LC_MESSAGES/tutorial/patricia_trie.po \
	LC_MESSAGES/tutorial/query_expansion.po \
	LC_MESSAGES/tutorial/search.po \
	$(NULL)

edit_po_files = \
	characteristic.edit \
	client.edit \
	community.edit \
	conf.edit \
	contribution.edit \
	contribution/development.edit \
	contribution/development/build.edit \
	contribution/development/build/unix_autotools.edit \
	contribution/development/build/unix_cmake.edit \
	contribution/development/build/windows_cmake.edit \
	contribution/development/com.edit \
	contribution/development/cooperation.edit \
	contribution/development/query.edit \
	contribution/development/release.edit \
	contribution/development/repository.edit \
	contribution/development/test.edit \
	contribution/documentation.edit \
	contribution/documentation/c-api.edit \
	contribution/documentation/i18n.edit \
	contribution/documentation/introduction.edit \
	contribution/report.edit \
	development.edit \
	development/travis-ci.edit \
	index.edit \
	install.edit \
	install/almalinux.edit \
	install/amazon_linux.edit \
	install/centos.edit \
	install/cmake.edit \
	install/debian.edit \
	install/docker.edit \
	install/mac_os_x.edit \
	install/others.edit \
	install/ubuntu.edit \
	install/windows.edit \
	limitations.edit \
	news.edit \
	news/0.edit \
	news/1.0.edit \
	news/1.1.edit \
	news/1.2.edit \
	news/1.3.edit \
	news/10.edit \
	news/11.edit \
	news/12.edit \
	news/13.edit \
	news/14.edit \
	news/15.edit \
	news/2.edit \
	news/3.edit \
	news/4.edit \
	news/5.edit \
	news/6.edit \
	news/7.edit \
	news/8.edit \
	news/9.edit \
	news/senna.edit \
	origin.edit \
	reference.edit \
	reference/alias.edit \
	reference/api.edit \
	reference/api/global_configurations.edit \
	reference/api/grn_cache.edit \
	reference/api/grn_column.edit \
	reference/api/grn_command_version.edit \
	reference/api/grn_content_type.edit \
	reference/api/grn_ctx.edit \
	reference/api/grn_db.edit \
	reference/api/grn_encoding.edit \
	reference/api/grn_expr.edit \
	reference/api/grn_geo.edit \
	reference/api/grn_hook.edit \
	reference/api/grn_ii.edit \
	reference/api/grn_index_cursor.edit \
	reference/api/grn_info.edit \
	reference/api/grn_inspect.edit \
	reference/api/grn_match_escalation.edit \
	reference/api/grn_obj.edit \
	reference/api/grn_proc.edit \
	reference/api/grn_search.edit \
	reference/api/grn_table.edit \
	reference/api/grn_table_cursor.edit \
	reference/api/grn_thread.edit \
	reference/api/grn_type.edit \
	reference/api/grn_user_data.edit \
	reference/api/overview.edit \
	reference/api/plugin.edit \
	reference/cast.edit \
	reference/column.edit \
	reference/columns/index.edit \
	reference/columns/pseudo.edit \
	reference/columns/scalar.edit \
	reference/columns/vector.edit \
	reference/command.edit \
	reference/command/command_version.edit \
	reference/command/n_workers.edit \
	reference/command/output_format.edit \
	reference/command/output_trace_log.edit \
	reference/command/pretty_print.edit \
	reference/command/request_id.edit \
	reference/command/request_timeout.edit \
	reference/command/return_code.edit \
	reference/command/return_codes/grn_input_output_error.edit \
	reference/command/return_codes/grn_invalid_argument.edit \
	reference/command/return_codes/grn_no_such_file_or_directory.edit \
	reference/command/return_codes/grn_not_enough_space.edit \
	reference/command/return_codes/grn_operation_not_permitted.edit \
	reference/command/return_codes/grn_resource_deadlock_avoided.edit \
	reference/commands/cache_limit.edit \
	reference/commands/check.edit \
	reference/commands/clearlock.edit \
	reference/commands/column_copy.edit \
	reference/commands/column_create.edit \
	reference/commands/column_list.edit \
	reference/commands/column_remove.edit \
	reference/commands/column_rename.edit \
	reference/commands/config_delete.edit \
	reference/commands/config_get.edit \
	reference/commands/config_set.edit \
	reference/commands/database_unmap.edit \
	reference/commands/define_selector.edit \
	reference/commands/defrag.edit \
	reference/commands/delete.edit \
	reference/commands/dump.edit \
	reference/commands/index_column_diff.edit \
	reference/commands/io_flush.edit \
	reference/commands/load.edit \
	reference/commands/lock_acquire.edit \
	reference/commands/lock_clear.edit \
	reference/commands/lock_release.edit \
	reference/commands/log_level.edit \
	reference/commands/log_put.edit \
	reference/commands/log_reopen.edit \
	reference/commands/logical_count.edit \
	reference/commands/logical_parameters.edit \
	reference/commands/logical_range_filter.edit \
	reference/commands/logical_select.edit \
	reference/commands/logical_shard_list.edit \
	reference/commands/logical_table_remove.edit \
	reference/commands/normalize.edit \
	reference/commands/normalizer_list.edit \
	reference/commands/object_exist.edit \
	reference/commands/object_inspect.edit \
	reference/commands/object_list.edit \
	reference/commands/object_remove.edit \
	reference/commands/plugin_register.edit \
	reference/commands/plugin_unregister.edit \
	reference/commands/query_expand.edit \
	reference/commands/quit.edit \
	reference/commands/range_filter.edit \
	reference/commands/reference_acquire.edit \
	reference/commands/reference_release.edit \
	reference/commands/register.edit \
	reference/commands/reindex.edit \
	reference/commands/request_cancel.edit \
	reference/commands/ruby_eval.edit \
	reference/commands/schema.edit \
	reference/commands/select.edit \
	reference/commands/shutdown.edit \
	reference/commands/status.edit \
	reference/commands/suggest.edit \
	reference/commands/table_copy.edit \
	reference/commands/table_create.edit \
	reference/commands/table_list.edit \
	reference/commands/table_remove.edit \
	reference/commands/table_rename.edit \
	reference/commands/table_tokenize.edit \
	reference/commands/thread_dump.edit \
	reference/commands/thread_limit.edit \
	reference/commands/tokenize.edit \
	reference/commands/tokenizer_list.edit \
	reference/commands/truncate.edit \
	reference/configuration.edit \
	reference/executables.edit \
	reference/executables/grndb.edit \
	reference/executables/grnslap.edit \
	reference/executables/groonga-benchmark.edit \
	reference/executables/groonga-httpd.edit \
	reference/executables/groonga-server-http.edit \
	reference/executables/groonga-suggest-create-dataset.edit \
	reference/executables/groonga-suggest-httpd.edit \
	reference/executables/groonga-suggest-learner.edit \
	reference/executables/groonga.edit \
	reference/function.edit \
	reference/functions/between.edit \
	reference/functions/cast_loose.edit \
	reference/functions/edit_distance.edit \
	reference/functions/escalate.edit \
	reference/functions/fuzzy_search.edit \
	reference/functions/geo_distance.edit \
	reference/functions/geo_in_circle.edit \
	reference/functions/geo_in_rectangle.edit \
	reference/functions/highlight.edit \
	reference/functions/highlight_full.edit \
	reference/functions/highlight_html.edit \
	reference/functions/html_untag.edit \
	reference/functions/in_records.edit \
	reference/functions/in_values.edit \
	reference/functions/language_model_vectorize.edit \
	reference/functions/math_abs.edit \
	reference/functions/now.edit \
	reference/functions/number_classify.edit \
	reference/functions/prefix_rk_search.edit \
	reference/functions/query.edit \
	reference/functions/query_parallel_or.edit \
	reference/functions/rand.edit \
	reference/functions/snippet.edit \
	reference/functions/snippet_html.edit \
	reference/functions/string_length.edit \
	reference/functions/string_slice.edit \
	reference/functions/string_substring.edit \
	reference/functions/sub_filter.edit \
	reference/functions/time_classify_day.edit \
	reference/functions/time_classify_day_of_week.edit \
	reference/functions/time_classify_hour.edit \
	reference/functions/time_classify_minute.edit \
	reference/functions/time_classify_month.edit \
	reference/functions/time_classify_second.edit \
	reference/functions/time_classify_week.edit \
	reference/functions/time_classify_year.edit \
	reference/functions/vector_find.edit \
	reference/functions/vector_new.edit \
	reference/functions/vector_size.edit \
	reference/functions/vector_slice.edit \
	reference/grn_expr.edit \
	reference/grn_expr/query_syntax.edit \
	reference/grn_expr/script_syntax.edit \
	reference/indexing.edit \
	reference/language_model.edit \
	reference/log.edit \
	reference/normalizers.edit \
	reference/normalizers/normalizer_auto.edit \
	reference/normalizers/normalizer_nfkc.edit \
	reference/normalizers/normalizer_nfkc100.edit \
	reference/normalizers/normalizer_nfkc121.edit \
	reference/normalizers/normalizer_nfkc130.edit \
	reference/normalizers/normalizer_nfkc150.edit \
	reference/normalizers/normalizer_nfkc51.edit \
	reference/normalizers/normalizer_table.edit \
	reference/operations.edit \
	reference/operations/geolocation_search.edit \
	reference/operations/prefix_rk_search.edit \
	reference/output.edit \
	reference/query_expanders.edit \
	reference/query_expanders/tsv.edit \
	reference/regular_expression.edit \
	reference/scorer.edit \
	reference/scorers/scorer_tf_at_most.edit \
	reference/scorers/scorer_tf_idf.edit \
	reference/sharding.edit \
	reference/suggest.edit \
	reference/suggest/completion.edit \
	reference/suggest/correction.edit \
	reference/suggest/introduction.edit \
	reference/suggest/suggestion.edit \
	reference/tables.edit \
	reference/token_filter/summary.edit \
	reference/token_filters.edit \
	reference/token_filters/token_filter_nfkc.edit \
	reference/token_filters/token_filter_nfkc100.edit \
	reference/token_filters/token_filter_nfkc150.edit \
	reference/token_filters/token_filter_stem.edit \
	reference/token_filters/token_filter_stop_word.edit \
	reference/tokenizer/summary.edit \
	reference/tokenizers.edit \
	reference/tokenizers/token_bigram.edit \
	reference/tokenizers/token_bigram_ignore_blank.edit \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol.edit \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.edit \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.edit \
	reference/tokenizers/token_bigram_split_symbol.edit \
	reference/tokenizers/token_bigram_split_symbol_alpha.edit \
	reference/tokenizers/token_bigram_split_symbol_alpha_digit.edit \
	reference/tokenizers/token_delimit.edit \
	reference/tokenizers/token_delimit_null.edit \
	reference/tokenizers/token_mecab.edit \
	reference/tokenizers/token_ngram.edit \
	reference/tokenizers/token_pattern.edit \
	reference/tokenizers/token_regexp.edit \
	reference/tokenizers/token_table.edit \
	reference/tokenizers/token_trigram.edit \
	reference/tokenizers/token_unigram.edit \
	reference/tuning.edit \
	reference/types.edit \
	reference/window_function.edit \
	reference/window_functions/record_number.edit \
	reference/window_functions/window_count.edit \
	reference/window_functions/window_rank.edit \
	reference/window_functions/window_record_number.edit \
	reference/window_functions/window_sum.edit \
	server.edit \
	server/gqtp.edit \
	server/http.edit \
	server/http/comparison.edit \
	server/http/groonga-httpd.edit \
	server/http/groonga.edit \
	server/memcached.edit \
	server/package.edit \
	spec.edit \
	spec/gqtp.edit \
	spec/search.edit \
	troubleshooting.edit \
	troubleshooting/different_results_with_the_same_keyword.edit \
	troubleshooting/how_to_analyze_error_message.edit \
	troubleshooting/mmap_cannot_allocate_memory.edit \
	tutorial.edit \
	tutorial/data.edit \
	tutorial/drilldown.edit \
	tutorial/index.edit \
	tutorial/introduction.edit \
	tutorial/lexicon.edit \
	tutorial/match_columns.edit \
	tutorial/micro_blog.edit \
	tutorial/network.edit \
	tutorial/patricia_trie.edit \
	tutorial/query_expansion.edit \
	tutorial/search.edit \
	$(NULL)

edit_po_files_relative_from_locale_dir = \
	LC_MESSAGES/characteristic.edit \
	LC_MESSAGES/client.edit \
	LC_MESSAGES/community.edit \
	LC_MESSAGES/conf.edit \
	LC_MESSAGES/contribution.edit \
	LC_MESSAGES/contribution/development.edit \
	LC_MESSAGES/contribution/development/build.edit \
	LC_MESSAGES/contribution/development/build/unix_autotools.edit \
	LC_MESSAGES/contribution/development/build/unix_cmake.edit \
	LC_MESSAGES/contribution/development/build/windows_cmake.edit \
	LC_MESSAGES/contribution/development/com.edit \
	LC_MESSAGES/contribution/development/cooperation.edit \
	LC_MESSAGES/contribution/development/query.edit \
	LC_MESSAGES/contribution/development/release.edit \
	LC_MESSAGES/contribution/development/repository.edit \
	LC_MESSAGES/contribution/development/test.edit \
	LC_MESSAGES/contribution/documentation.edit \
	LC_MESSAGES/contribution/documentation/c-api.edit \
	LC_MESSAGES/contribution/documentation/i18n.edit \
	LC_MESSAGES/contribution/documentation/introduction.edit \
	LC_MESSAGES/contribution/report.edit \
	LC_MESSAGES/development.edit \
	LC_MESSAGES/development/travis-ci.edit \
	LC_MESSAGES/index.edit \
	LC_MESSAGES/install.edit \
	LC_MESSAGES/install/almalinux.edit \
	LC_MESSAGES/install/amazon_linux.edit \
	LC_MESSAGES/install/centos.edit \
	LC_MESSAGES/install/cmake.edit \
	LC_MESSAGES/install/debian.edit \
	LC_MESSAGES/install/docker.edit \
	LC_MESSAGES/install/mac_os_x.edit \
	LC_MESSAGES/install/others.edit \
	LC_MESSAGES/install/ubuntu.edit \
	LC_MESSAGES/install/windows.edit \
	LC_MESSAGES/limitations.edit \
	LC_MESSAGES/news.edit \
	LC_MESSAGES/news/0.edit \
	LC_MESSAGES/news/1.0.edit \
	LC_MESSAGES/news/1.1.edit \
	LC_MESSAGES/news/1.2.edit \
	LC_MESSAGES/news/1.3.edit \
	LC_MESSAGES/news/10.edit \
	LC_MESSAGES/news/11.edit \
	LC_MESSAGES/news/12.edit \
	LC_MESSAGES/news/13.edit \
	LC_MESSAGES/news/14.edit \
	LC_MESSAGES/news/15.edit \
	LC_MESSAGES/news/2.edit \
	LC_MESSAGES/news/3.edit \
	LC_MESSAGES/news/4.edit \
	LC_MESSAGES/news/5.edit \
	LC_MESSAGES/news/6.edit \
	LC_MESSAGES/news/7.edit \
	LC_MESSAGES/news/8.edit \
	LC_MESSAGES/news/9.edit \
	LC_MESSAGES/news/senna.edit \
	LC_MESSAGES/origin.edit \
	LC_MESSAGES/reference.edit \
	LC_MESSAGES/reference/alias.edit \
	LC_MESSAGES/reference/api.edit \
	LC_MESSAGES/reference/api/global_configurations.edit \
	LC_MESSAGES/reference/api/grn_cache.edit \
	LC_MESSAGES/reference/api/grn_column.edit \
	LC_MESSAGES/reference/api/grn_command_version.edit \
	LC_MESSAGES/reference/api/grn_content_type.edit \
	LC_MESSAGES/reference/api/grn_ctx.edit \
	LC_MESSAGES/reference/api/grn_db.edit \
	LC_MESSAGES/reference/api/grn_encoding.edit \
	LC_MESSAGES/reference/api/grn_expr.edit \
	LC_MESSAGES/reference/api/grn_geo.edit \
	LC_MESSAGES/reference/api/grn_hook.edit \
	LC_MESSAGES/reference/api/grn_ii.edit \
	LC_MESSAGES/reference/api/grn_index_cursor.edit \
	LC_MESSAGES/reference/api/grn_info.edit \
	LC_MESSAGES/reference/api/grn_inspect.edit \
	LC_MESSAGES/reference/api/grn_match_escalation.edit \
	LC_MESSAGES/reference/api/grn_obj.edit \
	LC_MESSAGES/reference/api/grn_proc.edit \
	LC_MESSAGES/reference/api/grn_search.edit \
	LC_MESSAGES/reference/api/grn_table.edit \
	LC_MESSAGES/reference/api/grn_table_cursor.edit \
	LC_MESSAGES/reference/api/grn_thread.edit \
	LC_MESSAGES/reference/api/grn_type.edit \
	LC_MESSAGES/reference/api/grn_user_data.edit \
	LC_MESSAGES/reference/api/overview.edit \
	LC_MESSAGES/reference/api/plugin.edit \
	LC_MESSAGES/reference/cast.edit \
	LC_MESSAGES/reference/column.edit \
	LC_MESSAGES/reference/columns/index.edit \
	LC_MESSAGES/reference/columns/pseudo.edit \
	LC_MESSAGES/reference/columns/scalar.edit \
	LC_MESSAGES/reference/columns/vector.edit \
	LC_MESSAGES/reference/command.edit \
	LC_MESSAGES/reference/command/command_version.edit \
	LC_MESSAGES/reference/command/n_workers.edit \
	LC_MESSAGES/reference/command/output_format.edit \
	LC_MESSAGES/reference/command/output_trace_log.edit \
	LC_MESSAGES/reference/command/pretty_print.edit \
	LC_MESSAGES/reference/command/request_id.edit \
	LC_MESSAGES/reference/command/request_timeout.edit \
	LC_MESSAGES/reference/command/return_code.edit \
	LC_MESSAGES/reference/command/return_codes/grn_input_output_error.edit \
	LC_MESSAGES/reference/command/return_codes/grn_invalid_argument.edit \
	LC_MESSAGES/reference/command/return_codes/grn_no_such_file_or_directory.edit \
	LC_MESSAGES/reference/command/return_codes/grn_not_enough_space.edit \
	LC_MESSAGES/reference/command/return_codes/grn_operation_not_permitted.edit \
	LC_MESSAGES/reference/command/return_codes/grn_resource_deadlock_avoided.edit \
	LC_MESSAGES/reference/commands/cache_limit.edit \
	LC_MESSAGES/reference/commands/check.edit \
	LC_MESSAGES/reference/commands/clearlock.edit \
	LC_MESSAGES/reference/commands/column_copy.edit \
	LC_MESSAGES/reference/commands/column_create.edit \
	LC_MESSAGES/reference/commands/column_list.edit \
	LC_MESSAGES/reference/commands/column_remove.edit \
	LC_MESSAGES/reference/commands/column_rename.edit \
	LC_MESSAGES/reference/commands/config_delete.edit \
	LC_MESSAGES/reference/commands/config_get.edit \
	LC_MESSAGES/reference/commands/config_set.edit \
	LC_MESSAGES/reference/commands/database_unmap.edit \
	LC_MESSAGES/reference/commands/define_selector.edit \
	LC_MESSAGES/reference/commands/defrag.edit \
	LC_MESSAGES/reference/commands/delete.edit \
	LC_MESSAGES/reference/commands/dump.edit \
	LC_MESSAGES/reference/commands/index_column_diff.edit \
	LC_MESSAGES/reference/commands/io_flush.edit \
	LC_MESSAGES/reference/commands/load.edit \
	LC_MESSAGES/reference/commands/lock_acquire.edit \
	LC_MESSAGES/reference/commands/lock_clear.edit \
	LC_MESSAGES/reference/commands/lock_release.edit \
	LC_MESSAGES/reference/commands/log_level.edit \
	LC_MESSAGES/reference/commands/log_put.edit \
	LC_MESSAGES/reference/commands/log_reopen.edit \
	LC_MESSAGES/reference/commands/logical_count.edit \
	LC_MESSAGES/reference/commands/logical_parameters.edit \
	LC_MESSAGES/reference/commands/logical_range_filter.edit \
	LC_MESSAGES/reference/commands/logical_select.edit \
	LC_MESSAGES/reference/commands/logical_shard_list.edit \
	LC_MESSAGES/reference/commands/logical_table_remove.edit \
	LC_MESSAGES/reference/commands/normalize.edit \
	LC_MESSAGES/reference/commands/normalizer_list.edit \
	LC_MESSAGES/reference/commands/object_exist.edit \
	LC_MESSAGES/reference/commands/object_inspect.edit \
	LC_MESSAGES/reference/commands/object_list.edit \
	LC_MESSAGES/reference/commands/object_remove.edit \
	LC_MESSAGES/reference/commands/plugin_register.edit \
	LC_MESSAGES/reference/commands/plugin_unregister.edit \
	LC_MESSAGES/reference/commands/query_expand.edit \
	LC_MESSAGES/reference/commands/quit.edit \
	LC_MESSAGES/reference/commands/range_filter.edit \
	LC_MESSAGES/reference/commands/reference_acquire.edit \
	LC_MESSAGES/reference/commands/reference_release.edit \
	LC_MESSAGES/reference/commands/register.edit \
	LC_MESSAGES/reference/commands/reindex.edit \
	LC_MESSAGES/reference/commands/request_cancel.edit \
	LC_MESSAGES/reference/commands/ruby_eval.edit \
	LC_MESSAGES/reference/commands/schema.edit \
	LC_MESSAGES/reference/commands/select.edit \
	LC_MESSAGES/reference/commands/shutdown.edit \
	LC_MESSAGES/reference/commands/status.edit \
	LC_MESSAGES/reference/commands/suggest.edit \
	LC_MESSAGES/reference/commands/table_copy.edit \
	LC_MESSAGES/reference/commands/table_create.edit \
	LC_MESSAGES/reference/commands/table_list.edit \
	LC_MESSAGES/reference/commands/table_remove.edit \
	LC_MESSAGES/reference/commands/table_rename.edit \
	LC_MESSAGES/reference/commands/table_tokenize.edit \
	LC_MESSAGES/reference/commands/thread_dump.edit \
	LC_MESSAGES/reference/commands/thread_limit.edit \
	LC_MESSAGES/reference/commands/tokenize.edit \
	LC_MESSAGES/reference/commands/tokenizer_list.edit \
	LC_MESSAGES/reference/commands/truncate.edit \
	LC_MESSAGES/reference/configuration.edit \
	LC_MESSAGES/reference/executables.edit \
	LC_MESSAGES/reference/executables/grndb.edit \
	LC_MESSAGES/reference/executables/grnslap.edit \
	LC_MESSAGES/reference/executables/groonga-benchmark.edit \
	LC_MESSAGES/reference/executables/groonga-httpd.edit \
	LC_MESSAGES/reference/executables/groonga-server-http.edit \
	LC_MESSAGES/reference/executables/groonga-suggest-create-dataset.edit \
	LC_MESSAGES/reference/executables/groonga-suggest-httpd.edit \
	LC_MESSAGES/reference/executables/groonga-suggest-learner.edit \
	LC_MESSAGES/reference/executables/groonga.edit \
	LC_MESSAGES/reference/function.edit \
	LC_MESSAGES/reference/functions/between.edit \
	LC_MESSAGES/reference/functions/cast_loose.edit \
	LC_MESSAGES/reference/functions/edit_distance.edit \
	LC_MESSAGES/reference/functions/escalate.edit \
	LC_MESSAGES/reference/functions/fuzzy_search.edit \
	LC_MESSAGES/reference/functions/geo_distance.edit \
	LC_MESSAGES/reference/functions/geo_in_circle.edit \
	LC_MESSAGES/reference/functions/geo_in_rectangle.edit \
	LC_MESSAGES/reference/functions/highlight.edit \
	LC_MESSAGES/reference/functions/highlight_full.edit \
	LC_MESSAGES/reference/functions/highlight_html.edit \
	LC_MESSAGES/reference/functions/html_untag.edit \
	LC_MESSAGES/reference/functions/in_records.edit \
	LC_MESSAGES/reference/functions/in_values.edit \
	LC_MESSAGES/reference/functions/language_model_vectorize.edit \
	LC_MESSAGES/reference/functions/math_abs.edit \
	LC_MESSAGES/reference/functions/now.edit \
	LC_MESSAGES/reference/functions/number_classify.edit \
	LC_MESSAGES/reference/functions/prefix_rk_search.edit \
	LC_MESSAGES/reference/functions/query.edit \
	LC_MESSAGES/reference/functions/query_parallel_or.edit \
	LC_MESSAGES/reference/functions/rand.edit \
	LC_MESSAGES/reference/functions/snippet.edit \
	LC_MESSAGES/reference/functions/snippet_html.edit \
	LC_MESSAGES/reference/functions/string_length.edit \
	LC_MESSAGES/reference/functions/string_slice.edit \
	LC_MESSAGES/reference/functions/string_substring.edit \
	LC_MESSAGES/reference/functions/sub_filter.edit \
	LC_MESSAGES/reference/functions/time_classify_day.edit \
	LC_MESSAGES/reference/functions/time_classify_day_of_week.edit \
	LC_MESSAGES/reference/functions/time_classify_hour.edit \
	LC_MESSAGES/reference/functions/time_classify_minute.edit \
	LC_MESSAGES/reference/functions/time_classify_month.edit \
	LC_MESSAGES/reference/functions/time_classify_second.edit \
	LC_MESSAGES/reference/functions/time_classify_week.edit \
	LC_MESSAGES/reference/functions/time_classify_year.edit \
	LC_MESSAGES/reference/functions/vector_find.edit \
	LC_MESSAGES/reference/functions/vector_new.edit \
	LC_MESSAGES/reference/functions/vector_size.edit \
	LC_MESSAGES/reference/functions/vector_slice.edit \
	LC_MESSAGES/reference/grn_expr.edit \
	LC_MESSAGES/reference/grn_expr/query_syntax.edit \
	LC_MESSAGES/reference/grn_expr/script_syntax.edit \
	LC_MESSAGES/reference/indexing.edit \
	LC_MESSAGES/reference/language_model.edit \
	LC_MESSAGES/reference/log.edit \
	LC_MESSAGES/reference/normalizers.edit \
	LC_MESSAGES/reference/normalizers/normalizer_auto.edit \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc.edit \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc100.edit \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc121.edit \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc130.edit \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc150.edit \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc51.edit \
	LC_MESSAGES/reference/normalizers/normalizer_table.edit \
	LC_MESSAGES/reference/operations.edit \
	LC_MESSAGES/reference/operations/geolocation_search.edit \
	LC_MESSAGES/reference/operations/prefix_rk_search.edit \
	LC_MESSAGES/reference/output.edit \
	LC_MESSAGES/reference/query_expanders.edit \
	LC_MESSAGES/reference/query_expanders/tsv.edit \
	LC_MESSAGES/reference/regular_expression.edit \
	LC_MESSAGES/reference/scorer.edit \
	LC_MESSAGES/reference/scorers/scorer_tf_at_most.edit \
	LC_MESSAGES/reference/scorers/scorer_tf_idf.edit \
	LC_MESSAGES/reference/sharding.edit \
	LC_MESSAGES/reference/suggest.edit \
	LC_MESSAGES/reference/suggest/completion.edit \
	LC_MESSAGES/reference/suggest/correction.edit \
	LC_MESSAGES/reference/suggest/introduction.edit \
	LC_MESSAGES/reference/suggest/suggestion.edit \
	LC_MESSAGES/reference/tables.edit \
	LC_MESSAGES/reference/token_filter/summary.edit \
	LC_MESSAGES/reference/token_filters.edit \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc.edit \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc100.edit \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc150.edit \
	LC_MESSAGES/reference/token_filters/token_filter_stem.edit \
	LC_MESSAGES/reference/token_filters/token_filter_stop_word.edit \
	LC_MESSAGES/reference/tokenizer/summary.edit \
	LC_MESSAGES/reference/tokenizers.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol_alpha.edit \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol_alpha_digit.edit \
	LC_MESSAGES/reference/tokenizers/token_delimit.edit \
	LC_MESSAGES/reference/tokenizers/token_delimit_null.edit \
	LC_MESSAGES/reference/tokenizers/token_mecab.edit \
	LC_MESSAGES/reference/tokenizers/token_ngram.edit \
	LC_MESSAGES/reference/tokenizers/token_pattern.edit \
	LC_MESSAGES/reference/tokenizers/token_regexp.edit \
	LC_MESSAGES/reference/tokenizers/token_table.edit \
	LC_MESSAGES/reference/tokenizers/token_trigram.edit \
	LC_MESSAGES/reference/tokenizers/token_unigram.edit \
	LC_MESSAGES/reference/tuning.edit \
	LC_MESSAGES/reference/types.edit \
	LC_MESSAGES/reference/window_function.edit \
	LC_MESSAGES/reference/window_functions/record_number.edit \
	LC_MESSAGES/reference/window_functions/window_count.edit \
	LC_MESSAGES/reference/window_functions/window_rank.edit \
	LC_MESSAGES/reference/window_functions/window_record_number.edit \
	LC_MESSAGES/reference/window_functions/window_sum.edit \
	LC_MESSAGES/server.edit \
	LC_MESSAGES/server/gqtp.edit \
	LC_MESSAGES/server/http.edit \
	LC_MESSAGES/server/http/comparison.edit \
	LC_MESSAGES/server/http/groonga-httpd.edit \
	LC_MESSAGES/server/http/groonga.edit \
	LC_MESSAGES/server/memcached.edit \
	LC_MESSAGES/server/package.edit \
	LC_MESSAGES/spec.edit \
	LC_MESSAGES/spec/gqtp.edit \
	LC_MESSAGES/spec/search.edit \
	LC_MESSAGES/troubleshooting.edit \
	LC_MESSAGES/troubleshooting/different_results_with_the_same_keyword.edit \
	LC_MESSAGES/troubleshooting/how_to_analyze_error_message.edit \
	LC_MESSAGES/troubleshooting/mmap_cannot_allocate_memory.edit \
	LC_MESSAGES/tutorial.edit \
	LC_MESSAGES/tutorial/data.edit \
	LC_MESSAGES/tutorial/drilldown.edit \
	LC_MESSAGES/tutorial/index.edit \
	LC_MESSAGES/tutorial/introduction.edit \
	LC_MESSAGES/tutorial/lexicon.edit \
	LC_MESSAGES/tutorial/match_columns.edit \
	LC_MESSAGES/tutorial/micro_blog.edit \
	LC_MESSAGES/tutorial/network.edit \
	LC_MESSAGES/tutorial/patricia_trie.edit \
	LC_MESSAGES/tutorial/query_expansion.edit \
	LC_MESSAGES/tutorial/search.edit \
	$(NULL)

mo_files = \
	characteristic.mo \
	client.mo \
	community.mo \
	conf.mo \
	contribution.mo \
	contribution/development.mo \
	contribution/development/build.mo \
	contribution/development/build/unix_autotools.mo \
	contribution/development/build/unix_cmake.mo \
	contribution/development/build/windows_cmake.mo \
	contribution/development/com.mo \
	contribution/development/cooperation.mo \
	contribution/development/query.mo \
	contribution/development/release.mo \
	contribution/development/repository.mo \
	contribution/development/test.mo \
	contribution/documentation.mo \
	contribution/documentation/c-api.mo \
	contribution/documentation/i18n.mo \
	contribution/documentation/introduction.mo \
	contribution/report.mo \
	development.mo \
	development/travis-ci.mo \
	index.mo \
	install.mo \
	install/almalinux.mo \
	install/amazon_linux.mo \
	install/centos.mo \
	install/cmake.mo \
	install/debian.mo \
	install/docker.mo \
	install/mac_os_x.mo \
	install/others.mo \
	install/ubuntu.mo \
	install/windows.mo \
	limitations.mo \
	news.mo \
	news/0.mo \
	news/1.0.mo \
	news/1.1.mo \
	news/1.2.mo \
	news/1.3.mo \
	news/10.mo \
	news/11.mo \
	news/12.mo \
	news/13.mo \
	news/14.mo \
	news/15.mo \
	news/2.mo \
	news/3.mo \
	news/4.mo \
	news/5.mo \
	news/6.mo \
	news/7.mo \
	news/8.mo \
	news/9.mo \
	news/senna.mo \
	origin.mo \
	reference.mo \
	reference/alias.mo \
	reference/api.mo \
	reference/api/global_configurations.mo \
	reference/api/grn_cache.mo \
	reference/api/grn_column.mo \
	reference/api/grn_command_version.mo \
	reference/api/grn_content_type.mo \
	reference/api/grn_ctx.mo \
	reference/api/grn_db.mo \
	reference/api/grn_encoding.mo \
	reference/api/grn_expr.mo \
	reference/api/grn_geo.mo \
	reference/api/grn_hook.mo \
	reference/api/grn_ii.mo \
	reference/api/grn_index_cursor.mo \
	reference/api/grn_info.mo \
	reference/api/grn_inspect.mo \
	reference/api/grn_match_escalation.mo \
	reference/api/grn_obj.mo \
	reference/api/grn_proc.mo \
	reference/api/grn_search.mo \
	reference/api/grn_table.mo \
	reference/api/grn_table_cursor.mo \
	reference/api/grn_thread.mo \
	reference/api/grn_type.mo \
	reference/api/grn_user_data.mo \
	reference/api/overview.mo \
	reference/api/plugin.mo \
	reference/cast.mo \
	reference/column.mo \
	reference/columns/index.mo \
	reference/columns/pseudo.mo \
	reference/columns/scalar.mo \
	reference/columns/vector.mo \
	reference/command.mo \
	reference/command/command_version.mo \
	reference/command/n_workers.mo \
	reference/command/output_format.mo \
	reference/command/output_trace_log.mo \
	reference/command/pretty_print.mo \
	reference/command/request_id.mo \
	reference/command/request_timeout.mo \
	reference/command/return_code.mo \
	reference/command/return_codes/grn_input_output_error.mo \
	reference/command/return_codes/grn_invalid_argument.mo \
	reference/command/return_codes/grn_no_such_file_or_directory.mo \
	reference/command/return_codes/grn_not_enough_space.mo \
	reference/command/return_codes/grn_operation_not_permitted.mo \
	reference/command/return_codes/grn_resource_deadlock_avoided.mo \
	reference/commands/cache_limit.mo \
	reference/commands/check.mo \
	reference/commands/clearlock.mo \
	reference/commands/column_copy.mo \
	reference/commands/column_create.mo \
	reference/commands/column_list.mo \
	reference/commands/column_remove.mo \
	reference/commands/column_rename.mo \
	reference/commands/config_delete.mo \
	reference/commands/config_get.mo \
	reference/commands/config_set.mo \
	reference/commands/database_unmap.mo \
	reference/commands/define_selector.mo \
	reference/commands/defrag.mo \
	reference/commands/delete.mo \
	reference/commands/dump.mo \
	reference/commands/index_column_diff.mo \
	reference/commands/io_flush.mo \
	reference/commands/load.mo \
	reference/commands/lock_acquire.mo \
	reference/commands/lock_clear.mo \
	reference/commands/lock_release.mo \
	reference/commands/log_level.mo \
	reference/commands/log_put.mo \
	reference/commands/log_reopen.mo \
	reference/commands/logical_count.mo \
	reference/commands/logical_parameters.mo \
	reference/commands/logical_range_filter.mo \
	reference/commands/logical_select.mo \
	reference/commands/logical_shard_list.mo \
	reference/commands/logical_table_remove.mo \
	reference/commands/normalize.mo \
	reference/commands/normalizer_list.mo \
	reference/commands/object_exist.mo \
	reference/commands/object_inspect.mo \
	reference/commands/object_list.mo \
	reference/commands/object_remove.mo \
	reference/commands/plugin_register.mo \
	reference/commands/plugin_unregister.mo \
	reference/commands/query_expand.mo \
	reference/commands/quit.mo \
	reference/commands/range_filter.mo \
	reference/commands/reference_acquire.mo \
	reference/commands/reference_release.mo \
	reference/commands/register.mo \
	reference/commands/reindex.mo \
	reference/commands/request_cancel.mo \
	reference/commands/ruby_eval.mo \
	reference/commands/schema.mo \
	reference/commands/select.mo \
	reference/commands/shutdown.mo \
	reference/commands/status.mo \
	reference/commands/suggest.mo \
	reference/commands/table_copy.mo \
	reference/commands/table_create.mo \
	reference/commands/table_list.mo \
	reference/commands/table_remove.mo \
	reference/commands/table_rename.mo \
	reference/commands/table_tokenize.mo \
	reference/commands/thread_dump.mo \
	reference/commands/thread_limit.mo \
	reference/commands/tokenize.mo \
	reference/commands/tokenizer_list.mo \
	reference/commands/truncate.mo \
	reference/configuration.mo \
	reference/executables.mo \
	reference/executables/grndb.mo \
	reference/executables/grnslap.mo \
	reference/executables/groonga-benchmark.mo \
	reference/executables/groonga-httpd.mo \
	reference/executables/groonga-server-http.mo \
	reference/executables/groonga-suggest-create-dataset.mo \
	reference/executables/groonga-suggest-httpd.mo \
	reference/executables/groonga-suggest-learner.mo \
	reference/executables/groonga.mo \
	reference/function.mo \
	reference/functions/between.mo \
	reference/functions/cast_loose.mo \
	reference/functions/edit_distance.mo \
	reference/functions/escalate.mo \
	reference/functions/fuzzy_search.mo \
	reference/functions/geo_distance.mo \
	reference/functions/geo_in_circle.mo \
	reference/functions/geo_in_rectangle.mo \
	reference/functions/highlight.mo \
	reference/functions/highlight_full.mo \
	reference/functions/highlight_html.mo \
	reference/functions/html_untag.mo \
	reference/functions/in_records.mo \
	reference/functions/in_values.mo \
	reference/functions/language_model_vectorize.mo \
	reference/functions/math_abs.mo \
	reference/functions/now.mo \
	reference/functions/number_classify.mo \
	reference/functions/prefix_rk_search.mo \
	reference/functions/query.mo \
	reference/functions/query_parallel_or.mo \
	reference/functions/rand.mo \
	reference/functions/snippet.mo \
	reference/functions/snippet_html.mo \
	reference/functions/string_length.mo \
	reference/functions/string_slice.mo \
	reference/functions/string_substring.mo \
	reference/functions/sub_filter.mo \
	reference/functions/time_classify_day.mo \
	reference/functions/time_classify_day_of_week.mo \
	reference/functions/time_classify_hour.mo \
	reference/functions/time_classify_minute.mo \
	reference/functions/time_classify_month.mo \
	reference/functions/time_classify_second.mo \
	reference/functions/time_classify_week.mo \
	reference/functions/time_classify_year.mo \
	reference/functions/vector_find.mo \
	reference/functions/vector_new.mo \
	reference/functions/vector_size.mo \
	reference/functions/vector_slice.mo \
	reference/grn_expr.mo \
	reference/grn_expr/query_syntax.mo \
	reference/grn_expr/script_syntax.mo \
	reference/indexing.mo \
	reference/language_model.mo \
	reference/log.mo \
	reference/normalizers.mo \
	reference/normalizers/normalizer_auto.mo \
	reference/normalizers/normalizer_nfkc.mo \
	reference/normalizers/normalizer_nfkc100.mo \
	reference/normalizers/normalizer_nfkc121.mo \
	reference/normalizers/normalizer_nfkc130.mo \
	reference/normalizers/normalizer_nfkc150.mo \
	reference/normalizers/normalizer_nfkc51.mo \
	reference/normalizers/normalizer_table.mo \
	reference/operations.mo \
	reference/operations/geolocation_search.mo \
	reference/operations/prefix_rk_search.mo \
	reference/output.mo \
	reference/query_expanders.mo \
	reference/query_expanders/tsv.mo \
	reference/regular_expression.mo \
	reference/scorer.mo \
	reference/scorers/scorer_tf_at_most.mo \
	reference/scorers/scorer_tf_idf.mo \
	reference/sharding.mo \
	reference/suggest.mo \
	reference/suggest/completion.mo \
	reference/suggest/correction.mo \
	reference/suggest/introduction.mo \
	reference/suggest/suggestion.mo \
	reference/tables.mo \
	reference/token_filter/summary.mo \
	reference/token_filters.mo \
	reference/token_filters/token_filter_nfkc.mo \
	reference/token_filters/token_filter_nfkc100.mo \
	reference/token_filters/token_filter_nfkc150.mo \
	reference/token_filters/token_filter_stem.mo \
	reference/token_filters/token_filter_stop_word.mo \
	reference/tokenizer/summary.mo \
	reference/tokenizers.mo \
	reference/tokenizers/token_bigram.mo \
	reference/tokenizers/token_bigram_ignore_blank.mo \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol.mo \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.mo \
	reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.mo \
	reference/tokenizers/token_bigram_split_symbol.mo \
	reference/tokenizers/token_bigram_split_symbol_alpha.mo \
	reference/tokenizers/token_bigram_split_symbol_alpha_digit.mo \
	reference/tokenizers/token_delimit.mo \
	reference/tokenizers/token_delimit_null.mo \
	reference/tokenizers/token_mecab.mo \
	reference/tokenizers/token_ngram.mo \
	reference/tokenizers/token_pattern.mo \
	reference/tokenizers/token_regexp.mo \
	reference/tokenizers/token_table.mo \
	reference/tokenizers/token_trigram.mo \
	reference/tokenizers/token_unigram.mo \
	reference/tuning.mo \
	reference/types.mo \
	reference/window_function.mo \
	reference/window_functions/record_number.mo \
	reference/window_functions/window_count.mo \
	reference/window_functions/window_rank.mo \
	reference/window_functions/window_record_number.mo \
	reference/window_functions/window_sum.mo \
	server.mo \
	server/gqtp.mo \
	server/http.mo \
	server/http/comparison.mo \
	server/http/groonga-httpd.mo \
	server/http/groonga.mo \
	server/memcached.mo \
	server/package.mo \
	spec.mo \
	spec/gqtp.mo \
	spec/search.mo \
	troubleshooting.mo \
	troubleshooting/different_results_with_the_same_keyword.mo \
	troubleshooting/how_to_analyze_error_message.mo \
	troubleshooting/mmap_cannot_allocate_memory.mo \
	tutorial.mo \
	tutorial/data.mo \
	tutorial/drilldown.mo \
	tutorial/index.mo \
	tutorial/introduction.mo \
	tutorial/lexicon.mo \
	tutorial/match_columns.mo \
	tutorial/micro_blog.mo \
	tutorial/network.mo \
	tutorial/patricia_trie.mo \
	tutorial/query_expansion.mo \
	tutorial/search.mo \
	$(NULL)

mo_files_relative_from_locale_dir = \
	LC_MESSAGES/characteristic.mo \
	LC_MESSAGES/client.mo \
	LC_MESSAGES/community.mo \
	LC_MESSAGES/conf.mo \
	LC_MESSAGES/contribution.mo \
	LC_MESSAGES/contribution/development.mo \
	LC_MESSAGES/contribution/development/build.mo \
	LC_MESSAGES/contribution/development/build/unix_autotools.mo \
	LC_MESSAGES/contribution/development/build/unix_cmake.mo \
	LC_MESSAGES/contribution/development/build/windows_cmake.mo \
	LC_MESSAGES/contribution/development/com.mo \
	LC_MESSAGES/contribution/development/cooperation.mo \
	LC_MESSAGES/contribution/development/query.mo \
	LC_MESSAGES/contribution/development/release.mo \
	LC_MESSAGES/contribution/development/repository.mo \
	LC_MESSAGES/contribution/development/test.mo \
	LC_MESSAGES/contribution/documentation.mo \
	LC_MESSAGES/contribution/documentation/c-api.mo \
	LC_MESSAGES/contribution/documentation/i18n.mo \
	LC_MESSAGES/contribution/documentation/introduction.mo \
	LC_MESSAGES/contribution/report.mo \
	LC_MESSAGES/development.mo \
	LC_MESSAGES/development/travis-ci.mo \
	LC_MESSAGES/index.mo \
	LC_MESSAGES/install.mo \
	LC_MESSAGES/install/almalinux.mo \
	LC_MESSAGES/install/amazon_linux.mo \
	LC_MESSAGES/install/centos.mo \
	LC_MESSAGES/install/cmake.mo \
	LC_MESSAGES/install/debian.mo \
	LC_MESSAGES/install/docker.mo \
	LC_MESSAGES/install/mac_os_x.mo \
	LC_MESSAGES/install/others.mo \
	LC_MESSAGES/install/ubuntu.mo \
	LC_MESSAGES/install/windows.mo \
	LC_MESSAGES/limitations.mo \
	LC_MESSAGES/news.mo \
	LC_MESSAGES/news/0.mo \
	LC_MESSAGES/news/1.0.mo \
	LC_MESSAGES/news/1.1.mo \
	LC_MESSAGES/news/1.2.mo \
	LC_MESSAGES/news/1.3.mo \
	LC_MESSAGES/news/10.mo \
	LC_MESSAGES/news/11.mo \
	LC_MESSAGES/news/12.mo \
	LC_MESSAGES/news/13.mo \
	LC_MESSAGES/news/14.mo \
	LC_MESSAGES/news/15.mo \
	LC_MESSAGES/news/2.mo \
	LC_MESSAGES/news/3.mo \
	LC_MESSAGES/news/4.mo \
	LC_MESSAGES/news/5.mo \
	LC_MESSAGES/news/6.mo \
	LC_MESSAGES/news/7.mo \
	LC_MESSAGES/news/8.mo \
	LC_MESSAGES/news/9.mo \
	LC_MESSAGES/news/senna.mo \
	LC_MESSAGES/origin.mo \
	LC_MESSAGES/reference.mo \
	LC_MESSAGES/reference/alias.mo \
	LC_MESSAGES/reference/api.mo \
	LC_MESSAGES/reference/api/global_configurations.mo \
	LC_MESSAGES/reference/api/grn_cache.mo \
	LC_MESSAGES/reference/api/grn_column.mo \
	LC_MESSAGES/reference/api/grn_command_version.mo \
	LC_MESSAGES/reference/api/grn_content_type.mo \
	LC_MESSAGES/reference/api/grn_ctx.mo \
	LC_MESSAGES/reference/api/grn_db.mo \
	LC_MESSAGES/reference/api/grn_encoding.mo \
	LC_MESSAGES/reference/api/grn_expr.mo \
	LC_MESSAGES/reference/api/grn_geo.mo \
	LC_MESSAGES/reference/api/grn_hook.mo \
	LC_MESSAGES/reference/api/grn_ii.mo \
	LC_MESSAGES/reference/api/grn_index_cursor.mo \
	LC_MESSAGES/reference/api/grn_info.mo \
	LC_MESSAGES/reference/api/grn_inspect.mo \
	LC_MESSAGES/reference/api/grn_match_escalation.mo \
	LC_MESSAGES/reference/api/grn_obj.mo \
	LC_MESSAGES/reference/api/grn_proc.mo \
	LC_MESSAGES/reference/api/grn_search.mo \
	LC_MESSAGES/reference/api/grn_table.mo \
	LC_MESSAGES/reference/api/grn_table_cursor.mo \
	LC_MESSAGES/reference/api/grn_thread.mo \
	LC_MESSAGES/reference/api/grn_type.mo \
	LC_MESSAGES/reference/api/grn_user_data.mo \
	LC_MESSAGES/reference/api/overview.mo \
	LC_MESSAGES/reference/api/plugin.mo \
	LC_MESSAGES/reference/cast.mo \
	LC_MESSAGES/reference/column.mo \
	LC_MESSAGES/reference/columns/index.mo \
	LC_MESSAGES/reference/columns/pseudo.mo \
	LC_MESSAGES/reference/columns/scalar.mo \
	LC_MESSAGES/reference/columns/vector.mo \
	LC_MESSAGES/reference/command.mo \
	LC_MESSAGES/reference/command/command_version.mo \
	LC_MESSAGES/reference/command/n_workers.mo \
	LC_MESSAGES/reference/command/output_format.mo \
	LC_MESSAGES/reference/command/output_trace_log.mo \
	LC_MESSAGES/reference/command/pretty_print.mo \
	LC_MESSAGES/reference/command/request_id.mo \
	LC_MESSAGES/reference/command/request_timeout.mo \
	LC_MESSAGES/reference/command/return_code.mo \
	LC_MESSAGES/reference/command/return_codes/grn_input_output_error.mo \
	LC_MESSAGES/reference/command/return_codes/grn_invalid_argument.mo \
	LC_MESSAGES/reference/command/return_codes/grn_no_such_file_or_directory.mo \
	LC_MESSAGES/reference/command/return_codes/grn_not_enough_space.mo \
	LC_MESSAGES/reference/command/return_codes/grn_operation_not_permitted.mo \
	LC_MESSAGES/reference/command/return_codes/grn_resource_deadlock_avoided.mo \
	LC_MESSAGES/reference/commands/cache_limit.mo \
	LC_MESSAGES/reference/commands/check.mo \
	LC_MESSAGES/reference/commands/clearlock.mo \
	LC_MESSAGES/reference/commands/column_copy.mo \
	LC_MESSAGES/reference/commands/column_create.mo \
	LC_MESSAGES/reference/commands/column_list.mo \
	LC_MESSAGES/reference/commands/column_remove.mo \
	LC_MESSAGES/reference/commands/column_rename.mo \
	LC_MESSAGES/reference/commands/config_delete.mo \
	LC_MESSAGES/reference/commands/config_get.mo \
	LC_MESSAGES/reference/commands/config_set.mo \
	LC_MESSAGES/reference/commands/database_unmap.mo \
	LC_MESSAGES/reference/commands/define_selector.mo \
	LC_MESSAGES/reference/commands/defrag.mo \
	LC_MESSAGES/reference/commands/delete.mo \
	LC_MESSAGES/reference/commands/dump.mo \
	LC_MESSAGES/reference/commands/index_column_diff.mo \
	LC_MESSAGES/reference/commands/io_flush.mo \
	LC_MESSAGES/reference/commands/load.mo \
	LC_MESSAGES/reference/commands/lock_acquire.mo \
	LC_MESSAGES/reference/commands/lock_clear.mo \
	LC_MESSAGES/reference/commands/lock_release.mo \
	LC_MESSAGES/reference/commands/log_level.mo \
	LC_MESSAGES/reference/commands/log_put.mo \
	LC_MESSAGES/reference/commands/log_reopen.mo \
	LC_MESSAGES/reference/commands/logical_count.mo \
	LC_MESSAGES/reference/commands/logical_parameters.mo \
	LC_MESSAGES/reference/commands/logical_range_filter.mo \
	LC_MESSAGES/reference/commands/logical_select.mo \
	LC_MESSAGES/reference/commands/logical_shard_list.mo \
	LC_MESSAGES/reference/commands/logical_table_remove.mo \
	LC_MESSAGES/reference/commands/normalize.mo \
	LC_MESSAGES/reference/commands/normalizer_list.mo \
	LC_MESSAGES/reference/commands/object_exist.mo \
	LC_MESSAGES/reference/commands/object_inspect.mo \
	LC_MESSAGES/reference/commands/object_list.mo \
	LC_MESSAGES/reference/commands/object_remove.mo \
	LC_MESSAGES/reference/commands/plugin_register.mo \
	LC_MESSAGES/reference/commands/plugin_unregister.mo \
	LC_MESSAGES/reference/commands/query_expand.mo \
	LC_MESSAGES/reference/commands/quit.mo \
	LC_MESSAGES/reference/commands/range_filter.mo \
	LC_MESSAGES/reference/commands/reference_acquire.mo \
	LC_MESSAGES/reference/commands/reference_release.mo \
	LC_MESSAGES/reference/commands/register.mo \
	LC_MESSAGES/reference/commands/reindex.mo \
	LC_MESSAGES/reference/commands/request_cancel.mo \
	LC_MESSAGES/reference/commands/ruby_eval.mo \
	LC_MESSAGES/reference/commands/schema.mo \
	LC_MESSAGES/reference/commands/select.mo \
	LC_MESSAGES/reference/commands/shutdown.mo \
	LC_MESSAGES/reference/commands/status.mo \
	LC_MESSAGES/reference/commands/suggest.mo \
	LC_MESSAGES/reference/commands/table_copy.mo \
	LC_MESSAGES/reference/commands/table_create.mo \
	LC_MESSAGES/reference/commands/table_list.mo \
	LC_MESSAGES/reference/commands/table_remove.mo \
	LC_MESSAGES/reference/commands/table_rename.mo \
	LC_MESSAGES/reference/commands/table_tokenize.mo \
	LC_MESSAGES/reference/commands/thread_dump.mo \
	LC_MESSAGES/reference/commands/thread_limit.mo \
	LC_MESSAGES/reference/commands/tokenize.mo \
	LC_MESSAGES/reference/commands/tokenizer_list.mo \
	LC_MESSAGES/reference/commands/truncate.mo \
	LC_MESSAGES/reference/configuration.mo \
	LC_MESSAGES/reference/executables.mo \
	LC_MESSAGES/reference/executables/grndb.mo \
	LC_MESSAGES/reference/executables/grnslap.mo \
	LC_MESSAGES/reference/executables/groonga-benchmark.mo \
	LC_MESSAGES/reference/executables/groonga-httpd.mo \
	LC_MESSAGES/reference/executables/groonga-server-http.mo \
	LC_MESSAGES/reference/executables/groonga-suggest-create-dataset.mo \
	LC_MESSAGES/reference/executables/groonga-suggest-httpd.mo \
	LC_MESSAGES/reference/executables/groonga-suggest-learner.mo \
	LC_MESSAGES/reference/executables/groonga.mo \
	LC_MESSAGES/reference/function.mo \
	LC_MESSAGES/reference/functions/between.mo \
	LC_MESSAGES/reference/functions/cast_loose.mo \
	LC_MESSAGES/reference/functions/edit_distance.mo \
	LC_MESSAGES/reference/functions/escalate.mo \
	LC_MESSAGES/reference/functions/fuzzy_search.mo \
	LC_MESSAGES/reference/functions/geo_distance.mo \
	LC_MESSAGES/reference/functions/geo_in_circle.mo \
	LC_MESSAGES/reference/functions/geo_in_rectangle.mo \
	LC_MESSAGES/reference/functions/highlight.mo \
	LC_MESSAGES/reference/functions/highlight_full.mo \
	LC_MESSAGES/reference/functions/highlight_html.mo \
	LC_MESSAGES/reference/functions/html_untag.mo \
	LC_MESSAGES/reference/functions/in_records.mo \
	LC_MESSAGES/reference/functions/in_values.mo \
	LC_MESSAGES/reference/functions/language_model_vectorize.mo \
	LC_MESSAGES/reference/functions/math_abs.mo \
	LC_MESSAGES/reference/functions/now.mo \
	LC_MESSAGES/reference/functions/number_classify.mo \
	LC_MESSAGES/reference/functions/prefix_rk_search.mo \
	LC_MESSAGES/reference/functions/query.mo \
	LC_MESSAGES/reference/functions/query_parallel_or.mo \
	LC_MESSAGES/reference/functions/rand.mo \
	LC_MESSAGES/reference/functions/snippet.mo \
	LC_MESSAGES/reference/functions/snippet_html.mo \
	LC_MESSAGES/reference/functions/string_length.mo \
	LC_MESSAGES/reference/functions/string_slice.mo \
	LC_MESSAGES/reference/functions/string_substring.mo \
	LC_MESSAGES/reference/functions/sub_filter.mo \
	LC_MESSAGES/reference/functions/time_classify_day.mo \
	LC_MESSAGES/reference/functions/time_classify_day_of_week.mo \
	LC_MESSAGES/reference/functions/time_classify_hour.mo \
	LC_MESSAGES/reference/functions/time_classify_minute.mo \
	LC_MESSAGES/reference/functions/time_classify_month.mo \
	LC_MESSAGES/reference/functions/time_classify_second.mo \
	LC_MESSAGES/reference/functions/time_classify_week.mo \
	LC_MESSAGES/reference/functions/time_classify_year.mo \
	LC_MESSAGES/reference/functions/vector_find.mo \
	LC_MESSAGES/reference/functions/vector_new.mo \
	LC_MESSAGES/reference/functions/vector_size.mo \
	LC_MESSAGES/reference/functions/vector_slice.mo \
	LC_MESSAGES/reference/grn_expr.mo \
	LC_MESSAGES/reference/grn_expr/query_syntax.mo \
	LC_MESSAGES/reference/grn_expr/script_syntax.mo \
	LC_MESSAGES/reference/indexing.mo \
	LC_MESSAGES/reference/language_model.mo \
	LC_MESSAGES/reference/log.mo \
	LC_MESSAGES/reference/normalizers.mo \
	LC_MESSAGES/reference/normalizers/normalizer_auto.mo \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc.mo \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc100.mo \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc121.mo \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc130.mo \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc150.mo \
	LC_MESSAGES/reference/normalizers/normalizer_nfkc51.mo \
	LC_MESSAGES/reference/normalizers/normalizer_table.mo \
	LC_MESSAGES/reference/operations.mo \
	LC_MESSAGES/reference/operations/geolocation_search.mo \
	LC_MESSAGES/reference/operations/prefix_rk_search.mo \
	LC_MESSAGES/reference/output.mo \
	LC_MESSAGES/reference/query_expanders.mo \
	LC_MESSAGES/reference/query_expanders/tsv.mo \
	LC_MESSAGES/reference/regular_expression.mo \
	LC_MESSAGES/reference/scorer.mo \
	LC_MESSAGES/reference/scorers/scorer_tf_at_most.mo \
	LC_MESSAGES/reference/scorers/scorer_tf_idf.mo \
	LC_MESSAGES/reference/sharding.mo \
	LC_MESSAGES/reference/suggest.mo \
	LC_MESSAGES/reference/suggest/completion.mo \
	LC_MESSAGES/reference/suggest/correction.mo \
	LC_MESSAGES/reference/suggest/introduction.mo \
	LC_MESSAGES/reference/suggest/suggestion.mo \
	LC_MESSAGES/reference/tables.mo \
	LC_MESSAGES/reference/token_filter/summary.mo \
	LC_MESSAGES/reference/token_filters.mo \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc.mo \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc100.mo \
	LC_MESSAGES/reference/token_filters/token_filter_nfkc150.mo \
	LC_MESSAGES/reference/token_filters/token_filter_stem.mo \
	LC_MESSAGES/reference/token_filters/token_filter_stop_word.mo \
	LC_MESSAGES/reference/tokenizer/summary.mo \
	LC_MESSAGES/reference/tokenizers.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol_alpha.mo \
	LC_MESSAGES/reference/tokenizers/token_bigram_split_symbol_alpha_digit.mo \
	LC_MESSAGES/reference/tokenizers/token_delimit.mo \
	LC_MESSAGES/reference/tokenizers/token_delimit_null.mo \
	LC_MESSAGES/reference/tokenizers/token_mecab.mo \
	LC_MESSAGES/reference/tokenizers/token_ngram.mo \
	LC_MESSAGES/reference/tokenizers/token_pattern.mo \
	LC_MESSAGES/reference/tokenizers/token_regexp.mo \
	LC_MESSAGES/reference/tokenizers/token_table.mo \
	LC_MESSAGES/reference/tokenizers/token_trigram.mo \
	LC_MESSAGES/reference/tokenizers/token_unigram.mo \
	LC_MESSAGES/reference/tuning.mo \
	LC_MESSAGES/reference/types.mo \
	LC_MESSAGES/reference/window_function.mo \
	LC_MESSAGES/reference/window_functions/record_number.mo \
	LC_MESSAGES/reference/window_functions/window_count.mo \
	LC_MESSAGES/reference/window_functions/window_rank.mo \
	LC_MESSAGES/reference/window_functions/window_record_number.mo \
	LC_MESSAGES/reference/window_functions/window_sum.mo \
	LC_MESSAGES/server.mo \
	LC_MESSAGES/server/gqtp.mo \
	LC_MESSAGES/server/http.mo \
	LC_MESSAGES/server/http/comparison.mo \
	LC_MESSAGES/server/http/groonga-httpd.mo \
	LC_MESSAGES/server/http/groonga.mo \
	LC_MESSAGES/server/memcached.mo \
	LC_MESSAGES/server/package.mo \
	LC_MESSAGES/spec.mo \
	LC_MESSAGES/spec/gqtp.mo \
	LC_MESSAGES/spec/search.mo \
	LC_MESSAGES/troubleshooting.mo \
	LC_MESSAGES/troubleshooting/different_results_with_the_same_keyword.mo \
	LC_MESSAGES/troubleshooting/how_to_analyze_error_message.mo \
	LC_MESSAGES/troubleshooting/mmap_cannot_allocate_memory.mo \
	LC_MESSAGES/tutorial.mo \
	LC_MESSAGES/tutorial/data.mo \
	LC_MESSAGES/tutorial/drilldown.mo \
	LC_MESSAGES/tutorial/index.mo \
	LC_MESSAGES/tutorial/introduction.mo \
	LC_MESSAGES/tutorial/lexicon.mo \
	LC_MESSAGES/tutorial/match_columns.mo \
	LC_MESSAGES/tutorial/micro_blog.mo \
	LC_MESSAGES/tutorial/network.mo \
	LC_MESSAGES/tutorial/patricia_trie.mo \
	LC_MESSAGES/tutorial/query_expansion.mo \
	LC_MESSAGES/tutorial/search.mo \
	$(NULL)

html_files_relative_from_locale_dir = \
	html/_images/geo-points.png \
	html/_images/used-when-indexing.png \
	html/_images/used-when-searching.png \
	html/_static/basic.css \
	html/_static/doctools.js \
	html/_static/documentation_options.js \
	html/_static/favicon.ico \
	html/_static/file.png \
	html/_static/groonga.png \
	html/_static/language_data.js \
	html/_static/minus.png \
	html/_static/plus.png \
	html/_static/pygments.css \
	html/_static/searchtools.js \
	html/_static/sphinx_highlight.js \
	html/_static/styles/theme.css \
	html/_static/switcher.json \
	html/characteristic.html \
	html/client.html \
	html/community.html \
	html/contribution.html \
	html/contribution/development.html \
	html/contribution/development/build.html \
	html/contribution/development/build/unix_autotools.html \
	html/contribution/development/build/unix_cmake.html \
	html/contribution/development/build/windows_cmake.html \
	html/contribution/development/com.html \
	html/contribution/development/cooperation.html \
	html/contribution/development/query.html \
	html/contribution/development/release.html \
	html/contribution/development/repository.html \
	html/contribution/development/test.html \
	html/contribution/documentation.html \
	html/contribution/documentation/c-api.html \
	html/contribution/documentation/i18n.html \
	html/contribution/documentation/introduction.html \
	html/contribution/report.html \
	html/development.html \
	html/development/travis-ci.html \
	html/genindex.html \
	html/index.html \
	html/install.html \
	html/install/almalinux.html \
	html/install/amazon_linux.html \
	html/install/centos.html \
	html/install/cmake.html \
	html/install/debian.html \
	html/install/docker.html \
	html/install/mac_os_x.html \
	html/install/others.html \
	html/install/ubuntu.html \
	html/install/windows.html \
	html/limitations.html \
	html/news.html \
	html/news/0.html \
	html/news/1.0.html \
	html/news/1.1.html \
	html/news/1.2.html \
	html/news/1.3.html \
	html/news/10.html \
	html/news/11.html \
	html/news/12.html \
	html/news/13.html \
	html/news/14.html \
	html/news/15.html \
	html/news/2.html \
	html/news/3.html \
	html/news/4.html \
	html/news/5.html \
	html/news/6.html \
	html/news/7.html \
	html/news/8.html \
	html/news/9.html \
	html/news/senna.html \
	html/objects.inv \
	html/origin.html \
	html/reference.html \
	html/reference/alias.html \
	html/reference/api.html \
	html/reference/api/global_configurations.html \
	html/reference/api/grn_cache.html \
	html/reference/api/grn_column.html \
	html/reference/api/grn_command_version.html \
	html/reference/api/grn_content_type.html \
	html/reference/api/grn_ctx.html \
	html/reference/api/grn_db.html \
	html/reference/api/grn_encoding.html \
	html/reference/api/grn_expr.html \
	html/reference/api/grn_geo.html \
	html/reference/api/grn_hook.html \
	html/reference/api/grn_ii.html \
	html/reference/api/grn_index_cursor.html \
	html/reference/api/grn_info.html \
	html/reference/api/grn_inspect.html \
	html/reference/api/grn_match_escalation.html \
	html/reference/api/grn_obj.html \
	html/reference/api/grn_proc.html \
	html/reference/api/grn_search.html \
	html/reference/api/grn_table.html \
	html/reference/api/grn_table_cursor.html \
	html/reference/api/grn_thread.html \
	html/reference/api/grn_type.html \
	html/reference/api/grn_user_data.html \
	html/reference/api/overview.html \
	html/reference/api/plugin.html \
	html/reference/cast.html \
	html/reference/column.html \
	html/reference/columns/index.html \
	html/reference/columns/pseudo.html \
	html/reference/columns/scalar.html \
	html/reference/columns/vector.html \
	html/reference/command.html \
	html/reference/command/command_version.html \
	html/reference/command/n_workers.html \
	html/reference/command/output_format.html \
	html/reference/command/output_trace_log.html \
	html/reference/command/pretty_print.html \
	html/reference/command/request_id.html \
	html/reference/command/request_timeout.html \
	html/reference/command/return_code.html \
	html/reference/command/return_codes/grn_input_output_error.html \
	html/reference/command/return_codes/grn_invalid_argument.html \
	html/reference/command/return_codes/grn_no_such_file_or_directory.html \
	html/reference/command/return_codes/grn_not_enough_space.html \
	html/reference/command/return_codes/grn_operation_not_permitted.html \
	html/reference/command/return_codes/grn_resource_deadlock_avoided.html \
	html/reference/commands/cache_limit.html \
	html/reference/commands/check.html \
	html/reference/commands/clearlock.html \
	html/reference/commands/column_copy.html \
	html/reference/commands/column_create.html \
	html/reference/commands/column_list.html \
	html/reference/commands/column_remove.html \
	html/reference/commands/column_rename.html \
	html/reference/commands/config_delete.html \
	html/reference/commands/config_get.html \
	html/reference/commands/config_set.html \
	html/reference/commands/database_unmap.html \
	html/reference/commands/define_selector.html \
	html/reference/commands/defrag.html \
	html/reference/commands/delete.html \
	html/reference/commands/dump.html \
	html/reference/commands/index_column_diff.html \
	html/reference/commands/io_flush.html \
	html/reference/commands/load.html \
	html/reference/commands/lock_acquire.html \
	html/reference/commands/lock_clear.html \
	html/reference/commands/lock_release.html \
	html/reference/commands/log_level.html \
	html/reference/commands/log_put.html \
	html/reference/commands/log_reopen.html \
	html/reference/commands/logical_count.html \
	html/reference/commands/logical_parameters.html \
	html/reference/commands/logical_range_filter.html \
	html/reference/commands/logical_select.html \
	html/reference/commands/logical_shard_list.html \
	html/reference/commands/logical_table_remove.html \
	html/reference/commands/normalize.html \
	html/reference/commands/normalizer_list.html \
	html/reference/commands/object_exist.html \
	html/reference/commands/object_inspect.html \
	html/reference/commands/object_list.html \
	html/reference/commands/object_remove.html \
	html/reference/commands/plugin_register.html \
	html/reference/commands/plugin_unregister.html \
	html/reference/commands/query_expand.html \
	html/reference/commands/quit.html \
	html/reference/commands/range_filter.html \
	html/reference/commands/reference_acquire.html \
	html/reference/commands/reference_release.html \
	html/reference/commands/register.html \
	html/reference/commands/reindex.html \
	html/reference/commands/request_cancel.html \
	html/reference/commands/ruby_eval.html \
	html/reference/commands/schema.html \
	html/reference/commands/select.html \
	html/reference/commands/shutdown.html \
	html/reference/commands/status.html \
	html/reference/commands/suggest.html \
	html/reference/commands/table_copy.html \
	html/reference/commands/table_create.html \
	html/reference/commands/table_list.html \
	html/reference/commands/table_remove.html \
	html/reference/commands/table_rename.html \
	html/reference/commands/table_tokenize.html \
	html/reference/commands/thread_dump.html \
	html/reference/commands/thread_limit.html \
	html/reference/commands/tokenize.html \
	html/reference/commands/tokenizer_list.html \
	html/reference/commands/truncate.html \
	html/reference/configuration.html \
	html/reference/executables.html \
	html/reference/executables/grndb.html \
	html/reference/executables/grnslap.html \
	html/reference/executables/groonga-benchmark.html \
	html/reference/executables/groonga-httpd.html \
	html/reference/executables/groonga-server-http.html \
	html/reference/executables/groonga-suggest-create-dataset.html \
	html/reference/executables/groonga-suggest-httpd.html \
	html/reference/executables/groonga-suggest-learner.html \
	html/reference/executables/groonga.html \
	html/reference/function.html \
	html/reference/functions/between.html \
	html/reference/functions/cast_loose.html \
	html/reference/functions/edit_distance.html \
	html/reference/functions/escalate.html \
	html/reference/functions/fuzzy_search.html \
	html/reference/functions/geo_distance.html \
	html/reference/functions/geo_in_circle.html \
	html/reference/functions/geo_in_rectangle.html \
	html/reference/functions/highlight.html \
	html/reference/functions/highlight_full.html \
	html/reference/functions/highlight_html.html \
	html/reference/functions/html_untag.html \
	html/reference/functions/in_records.html \
	html/reference/functions/in_values.html \
	html/reference/functions/language_model_vectorize.html \
	html/reference/functions/math_abs.html \
	html/reference/functions/now.html \
	html/reference/functions/number_classify.html \
	html/reference/functions/prefix_rk_search.html \
	html/reference/functions/query.html \
	html/reference/functions/query_parallel_or.html \
	html/reference/functions/rand.html \
	html/reference/functions/snippet.html \
	html/reference/functions/snippet_html.html \
	html/reference/functions/string_length.html \
	html/reference/functions/string_slice.html \
	html/reference/functions/string_substring.html \
	html/reference/functions/sub_filter.html \
	html/reference/functions/time_classify_day.html \
	html/reference/functions/time_classify_day_of_week.html \
	html/reference/functions/time_classify_hour.html \
	html/reference/functions/time_classify_minute.html \
	html/reference/functions/time_classify_month.html \
	html/reference/functions/time_classify_second.html \
	html/reference/functions/time_classify_week.html \
	html/reference/functions/time_classify_year.html \
	html/reference/functions/vector_find.html \
	html/reference/functions/vector_new.html \
	html/reference/functions/vector_size.html \
	html/reference/functions/vector_slice.html \
	html/reference/grn_expr.html \
	html/reference/grn_expr/query_syntax.html \
	html/reference/grn_expr/script_syntax.html \
	html/reference/indexing.html \
	html/reference/language_model.html \
	html/reference/log.html \
	html/reference/normalizers.html \
	html/reference/normalizers/normalizer_auto.html \
	html/reference/normalizers/normalizer_nfkc.html \
	html/reference/normalizers/normalizer_nfkc100.html \
	html/reference/normalizers/normalizer_nfkc121.html \
	html/reference/normalizers/normalizer_nfkc130.html \
	html/reference/normalizers/normalizer_nfkc150.html \
	html/reference/normalizers/normalizer_nfkc51.html \
	html/reference/normalizers/normalizer_table.html \
	html/reference/operations.html \
	html/reference/operations/geolocation_search.html \
	html/reference/operations/prefix_rk_search.html \
	html/reference/output.html \
	html/reference/query_expanders.html \
	html/reference/query_expanders/tsv.html \
	html/reference/regular_expression.html \
	html/reference/scorer.html \
	html/reference/scorers/scorer_tf_at_most.html \
	html/reference/scorers/scorer_tf_idf.html \
	html/reference/sharding.html \
	html/reference/suggest.html \
	html/reference/suggest/completion.html \
	html/reference/suggest/correction.html \
	html/reference/suggest/introduction.html \
	html/reference/suggest/suggestion.html \
	html/reference/tables.html \
	html/reference/token_filter/summary.html \
	html/reference/token_filters.html \
	html/reference/token_filters/token_filter_nfkc.html \
	html/reference/token_filters/token_filter_nfkc100.html \
	html/reference/token_filters/token_filter_nfkc150.html \
	html/reference/token_filters/token_filter_stem.html \
	html/reference/token_filters/token_filter_stop_word.html \
	html/reference/tokenizer/summary.html \
	html/reference/tokenizers.html \
	html/reference/tokenizers/token_bigram.html \
	html/reference/tokenizers/token_bigram_ignore_blank.html \
	html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html \
	html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html \
	html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html \
	html/reference/tokenizers/token_bigram_split_symbol.html \
	html/reference/tokenizers/token_bigram_split_symbol_alpha.html \
	html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html \
	html/reference/tokenizers/token_delimit.html \
	html/reference/tokenizers/token_delimit_null.html \
	html/reference/tokenizers/token_mecab.html \
	html/reference/tokenizers/token_ngram.html \
	html/reference/tokenizers/token_pattern.html \
	html/reference/tokenizers/token_regexp.html \
	html/reference/tokenizers/token_table.html \
	html/reference/tokenizers/token_trigram.html \
	html/reference/tokenizers/token_unigram.html \
	html/reference/tuning.html \
	html/reference/types.html \
	html/reference/window_function.html \
	html/reference/window_functions/record_number.html \
	html/reference/window_functions/window_count.html \
	html/reference/window_functions/window_rank.html \
	html/reference/window_functions/window_record_number.html \
	html/reference/window_functions/window_sum.html \
	html/search.html \
	html/searchindex.js \
	html/server.html \
	html/server/gqtp.html \
	html/server/http.html \
	html/server/http/comparison.html \
	html/server/http/groonga-httpd.html \
	html/server/http/groonga.html \
	html/server/memcached.html \
	html/server/package.html \
	html/spec.html \
	html/spec/gqtp.html \
	html/spec/search.html \
	html/troubleshooting.html \
	html/troubleshooting/different_results_with_the_same_keyword.html \
	html/troubleshooting/how_to_analyze_error_message.html \
	html/troubleshooting/mmap_cannot_allocate_memory.html \
	html/tutorial.html \
	html/tutorial/data.html \
	html/tutorial/drilldown.html \
	html/tutorial/index.html \
	html/tutorial/introduction.html \
	html/tutorial/lexicon.html \
	html/tutorial/match_columns.html \
	html/tutorial/micro_blog.html \
	html/tutorial/network.html \
	html/tutorial/patricia_trie.html \
	html/tutorial/query_expansion.html \
	html/tutorial/search.html \
	$(NULL)