Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.in - github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9ad5d2d6a6ba635e6d5ff9c930df17947ccd699 (plain)
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
# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@

# Copyright (C) 1994-2021 Free Software Foundation, Inc.

# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.

@SET_MAKE@





VPATH = @srcdir@
am__is_gnu_make = { \
  if test -z '$(MAKELEVEL)'; then \
    false; \
  elif test -n '$(MAKE_HOST)'; then \
    true; \
  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
    true; \
  else \
    false; \
  fi; \
}
am__make_running_with_option = \
  case $${target_option-} in \
      ?) ;; \
      *) echo "am__make_running_with_option: internal error: invalid" \
              "target option '$${target_option-}' specified" >&2; \
         exit 1;; \
  esac; \
  has_opt=no; \
  sane_makeflags=$$MAKEFLAGS; \
  if $(am__is_gnu_make); then \
    sane_makeflags=$$MFLAGS; \
  else \
    case $$MAKEFLAGS in \
      *\\[\ \	]*) \
        bs=\\; \
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
    esac; \
  fi; \
  skip_next=no; \
  strip_trailopt () \
  { \
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  }; \
  for flg in $$sane_makeflags; do \
    test $$skip_next = yes && { skip_next=no; continue; }; \
    case $$flg in \
      *=*|--*) continue;; \
        -*I) strip_trailopt 'I'; skip_next=yes;; \
      -*I?*) strip_trailopt 'I';; \
        -*O) strip_trailopt 'O'; skip_next=yes;; \
      -*O?*) strip_trailopt 'O';; \
        -*l) strip_trailopt 'l'; skip_next=yes;; \
      -*l?*) strip_trailopt 'l';; \
      -[dEDm]) skip_next=yes;; \
      -[JT]) skip_next=yes;; \
    esac; \
    case $$flg in \
      *$$target_option*) has_opt=yes; break;; \
    esac; \
  done; \
  test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
@MAINTAINER_MODE_TRUE@am__append_1 = -Wextra -Werror
pkglibexec_PROGRAMS = cachec$(EXEEXT) cached$(EXEEXT) clock$(EXEEXT) \
	cpdup$(EXEEXT) dirempty$(EXEEXT) dirwatch$(EXEEXT) \
	jexecd$(EXEEXT) locked_mkdir$(EXEEXT) nc$(EXEEXT) \
	poudriered$(EXEEXT) ptsort$(EXEEXT) pwait$(EXEEXT) \
	rename$(EXEEXT) rexec$(EXEEXT) @USE_RM@ setsid$(EXEEXT) \
	timeout$(EXEEXT) timestamp$(EXEEXT) @SH@
EXTRA_PROGRAMS = rm$(EXEEXT) sh$(EXEEXT)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
	$(am__configure_deps) $(dist_bin_SCRIPTS) $(dist_rc_SCRIPTS) \
	$(dist_assets_DATA) $(dist_awk_DATA) $(dist_btcss_DATA) \
	$(dist_btfonts_DATA) $(dist_btjs_DATA) $(dist_dtcss_DATA) \
	$(dist_dtimages_DATA) $(dist_dtjs_DATA) $(dist_examples_DATA) \
	$(dist_hook_DATA) $(dist_html_DATA) $(dist_pkgdata_DATA) \
	$(dist_sysconf_DATA) $(dist_include_HEADERS) \
	$(am__DIST_COMMON)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/src/config.h
CONFIG_CLEAN_FILES = src/etc/rc.d/poudriered
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(pkglibexecdir)" "$(DESTDIR)$(bindir)" \
	"$(DESTDIR)$(rcdir)" "$(DESTDIR)$(man8dir)" \
	"$(DESTDIR)$(assetsdir)" "$(DESTDIR)$(awkdir)" \
	"$(DESTDIR)$(btcssdir)" "$(DESTDIR)$(btfontsdir)" \
	"$(DESTDIR)$(btjsdir)" "$(DESTDIR)$(dtcssdir)" \
	"$(DESTDIR)$(dtimagesdir)" "$(DESTDIR)$(dtjsdir)" \
	"$(DESTDIR)$(examplesdir)" "$(DESTDIR)$(hookdir)" \
	"$(DESTDIR)$(htmldir)" "$(DESTDIR)$(pkgdatadir)" \
	"$(DESTDIR)$(sysconfdir)" "$(DESTDIR)$(includedir)"
PROGRAMS = $(pkglibexec_PROGRAMS)
LTLIBRARIES = $(noinst_LTLIBRARIES)
libnv_la_LIBADD =
am__dirstamp = $(am__leading_dot)dirstamp
am_libnv_la_OBJECTS = external/libnv/libnv_la-msgio.lo \
	external/libnv/sys/libnv_la-dnvlist.lo \
	external/libnv/sys/libnv_la-nvlist.lo \
	external/libnv/sys/libnv_la-nvpair.lo
libnv_la_OBJECTS = $(am_libnv_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 = 
libnv_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libnv_la_CFLAGS) \
	$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
libptsort_la_LIBADD =
am_libptsort_la_OBJECTS = external/ptsort/lib/libptsort_la-aa_tree.lo \
	external/ptsort/lib/libptsort_la-fline.lo
libptsort_la_OBJECTS = $(am_libptsort_la_OBJECTS)
libucl_la_LIBADD =
am_libucl_la_OBJECTS = external/libucl/src/libucl_la-ucl_emitter.lo \
	external/libucl/src/libucl_la-ucl_emitter_streamline.lo \
	external/libucl/src/libucl_la-ucl_emitter_utils.lo \
	external/libucl/src/libucl_la-ucl_hash.lo \
	external/libucl/src/libucl_la-ucl_parser.lo \
	external/libucl/src/libucl_la-ucl_util.lo \
	external/libucl/src/libucl_la-xxhash.lo
libucl_la_OBJECTS = $(am_libucl_la_OBJECTS)
libucl_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libucl_la_CFLAGS) \
	$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am_cachec_OBJECTS = src/libexec/poudriere/cachec/cachec.$(OBJEXT)
cachec_OBJECTS = $(am_cachec_OBJECTS)
cachec_DEPENDENCIES =
am_cached_OBJECTS =  \
	src/libexec/poudriere/cached/cached-cached.$(OBJEXT)
cached_OBJECTS = $(am_cached_OBJECTS)
cached_DEPENDENCIES =
cached_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(cached_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
am_clock_OBJECTS = src/libexec/poudriere/clock/clock.$(OBJEXT)
clock_OBJECTS = $(am_clock_OBJECTS)
clock_LDADD = $(LDADD)
am_cpdup_OBJECTS =  \
	src/libexec/poudriere/cpdup/src/cpdup-cpdup.$(OBJEXT) \
	src/libexec/poudriere/cpdup/src/cpdup-hclink.$(OBJEXT) \
	src/libexec/poudriere/cpdup/src/cpdup-hcproto.$(OBJEXT) \
	src/libexec/poudriere/cpdup/src/cpdup-md5.$(OBJEXT) \
	src/libexec/poudriere/cpdup/src/cpdup-misc.$(OBJEXT)
cpdup_OBJECTS = $(am_cpdup_OBJECTS)
cpdup_DEPENDENCIES =
cpdup_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(cpdup_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
am_dirempty_OBJECTS =  \
	src/libexec/poudriere/dirempty/dirempty.$(OBJEXT)
dirempty_OBJECTS = $(am_dirempty_OBJECTS)
dirempty_LDADD = $(LDADD)
am_dirwatch_OBJECTS =  \
	src/libexec/poudriere/dirwatch/dirwatch.$(OBJEXT)
dirwatch_OBJECTS = $(am_dirwatch_OBJECTS)
dirwatch_LDADD = $(LDADD)
am_jexecd_OBJECTS =  \
	src/libexec/poudriere/jexecd/jexecd-jexecd.$(OBJEXT)
jexecd_OBJECTS = $(am_jexecd_OBJECTS)
jexecd_DEPENDENCIES = libnv.la
jexecd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(jexecd_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
am_locked_mkdir_OBJECTS =  \
	src/libexec/poudriere/locked_mkdir/locked_mkdir.$(OBJEXT)
locked_mkdir_OBJECTS = $(am_locked_mkdir_OBJECTS)
locked_mkdir_LDADD = $(LDADD)
am_nc_OBJECTS = src/libexec/poudriere/nc/nc.$(OBJEXT)
nc_OBJECTS = $(am_nc_OBJECTS)
nc_LDADD = $(LDADD)
am_poudriered_OBJECTS =  \
	src/poudriered/poudriered-poudriered.$(OBJEXT)
poudriered_OBJECTS = $(am_poudriered_OBJECTS)
poudriered_DEPENDENCIES = libucl.la
poudriered_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(poudriered_CFLAGS) \
	$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am_ptsort_OBJECTS = external/ptsort/bin/ptsort-ptsort.$(OBJEXT)
ptsort_OBJECTS = $(am_ptsort_OBJECTS)
ptsort_DEPENDENCIES = libptsort.la
am_pwait_OBJECTS = src/libexec/poudriere/pwait/pwait.$(OBJEXT)
pwait_OBJECTS = $(am_pwait_OBJECTS)
pwait_LDADD = $(LDADD)
am_rename_OBJECTS = src/libexec/poudriere/rename/rename.$(OBJEXT)
rename_OBJECTS = $(am_rename_OBJECTS)
rename_LDADD = $(LDADD)
am_rexec_OBJECTS = src/libexec/poudriere/rexec/rexec-rexec.$(OBJEXT)
rexec_OBJECTS = $(am_rexec_OBJECTS)
rexec_DEPENDENCIES = libnv.la
rexec_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(rexec_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
am_rm_OBJECTS = src/libexec/poudriere/rm/rm.$(OBJEXT)
rm_OBJECTS = $(am_rm_OBJECTS)
rm_LDADD = $(LDADD)
am_setsid_OBJECTS =  \
	src/libexec/poudriere/setsid/setsid-setsid.$(OBJEXT)
setsid_OBJECTS = $(am_setsid_OBJECTS)
setsid_LDADD = $(LDADD)
setsid_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(setsid_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
am_sh_OBJECTS = external/sh/sh-alias.$(OBJEXT) \
	external/sh/sh-arith_yacc.$(OBJEXT) \
	external/sh/sh-arith_yylex.$(OBJEXT) \
	external/sh/bltin/sh-echo.$(OBJEXT) \
	external/sh/sh-cd.$(OBJEXT) external/sh/sh-error.$(OBJEXT) \
	external/sh/sh-eval.$(OBJEXT) external/sh/sh-exec.$(OBJEXT) \
	external/sh/sh-expand.$(OBJEXT) \
	external/sh/sh-histedit.$(OBJEXT) \
	external/sh/sh-input.$(OBJEXT) external/sh/sh-jobs.$(OBJEXT) \
	external/sh/sh-kill.$(OBJEXT) external/sh/sh-mail.$(OBJEXT) \
	external/sh/sh-main.$(OBJEXT) \
	external/sh/sh-memalloc.$(OBJEXT) \
	external/sh/sh-miscbltin.$(OBJEXT) \
	external/sh/sh-mystring.$(OBJEXT) \
	external/sh/sh-nodes.$(OBJEXT) \
	external/sh/sh-options.$(OBJEXT) \
	external/sh/sh-output.$(OBJEXT) \
	external/sh/sh-parser.$(OBJEXT) \
	external/sh/sh-printf.$(OBJEXT) external/sh/sh-redir.$(OBJEXT) \
	external/sh/sh-show.$(OBJEXT) external/sh/sh-syntax.$(OBJEXT) \
	external/sh/sh-test.$(OBJEXT) external/sh/sh-trap.$(OBJEXT) \
	external/sh/sh-var.$(OBJEXT) \
	external/sh_compat/sh-strchrnul.$(OBJEXT) \
	external/sh_compat/sh-utimensat.$(OBJEXT) \
	src/libexec/poudriere/clock/sh-clock.$(OBJEXT) \
	src/libexec/poudriere/dirempty/sh-dirempty.$(OBJEXT) \
	src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.$(OBJEXT) \
	src/libexec/poudriere/pwait/sh-pwait.$(OBJEXT) \
	src/libexec/poudriere/rename/sh-rename.$(OBJEXT) \
	src/libexec/poudriere/rm/sh-rm.$(OBJEXT) \
	src/poudriere-sh/sh-helpers.$(OBJEXT) \
	src/poudriere-sh/sh-mapfile.$(OBJEXT) \
	src/poudriere-sh/sh-mkdir.$(OBJEXT) \
	src/poudriere-sh/sh-mkfifo.$(OBJEXT) \
	src/poudriere-sh/sh-mktemp.$(OBJEXT) \
	src/poudriere-sh/sh-realpath.$(OBJEXT) \
	src/poudriere-sh/sh-rmdir.$(OBJEXT) \
	src/poudriere-sh/sh-setproctitle.$(OBJEXT) \
	src/poudriere-sh/sh-sleep.$(OBJEXT) \
	src/poudriere-sh/sh-stat.$(OBJEXT) \
	src/poudriere-sh/sh-touch.$(OBJEXT) \
	src/poudriere-sh/sh-traps.$(OBJEXT) \
	src/poudriere-sh/sh-unlink.$(OBJEXT) \
	src/poudriere-sh/sh-builtins.$(OBJEXT)
sh_OBJECTS = $(am_sh_OBJECTS)
am__DEPENDENCIES_1 =
sh_DEPENDENCIES = $(am__DEPENDENCIES_1)
sh_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(sh_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
am_timeout_OBJECTS = src/libexec/poudriere/timeout/timeout.$(OBJEXT)
timeout_OBJECTS = $(am_timeout_OBJECTS)
timeout_LDADD = $(LDADD)
am_timestamp_OBJECTS =  \
	src/libexec/poudriere/timestamp/timestamp.$(OBJEXT)
timestamp_OBJECTS = $(am_timestamp_OBJECTS)
timestamp_DEPENDENCIES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
  test -z "$$files" \
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
         $(am__cd) "$$dir" && rm -f $$files; }; \
  }
SCRIPTS = $(dist_bin_SCRIPTS) $(dist_rc_SCRIPTS)
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo "  GEN     " $@;
am__v_GEN_1 = 
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 = 
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = external/libnv/$(DEPDIR)/libnv_la-msgio.Plo \
	external/libnv/sys/$(DEPDIR)/libnv_la-dnvlist.Plo \
	external/libnv/sys/$(DEPDIR)/libnv_la-nvlist.Plo \
	external/libnv/sys/$(DEPDIR)/libnv_la-nvpair.Plo \
	external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter.Plo \
	external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_streamline.Plo \
	external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_utils.Plo \
	external/libucl/src/$(DEPDIR)/libucl_la-ucl_hash.Plo \
	external/libucl/src/$(DEPDIR)/libucl_la-ucl_parser.Plo \
	external/libucl/src/$(DEPDIR)/libucl_la-ucl_util.Plo \
	external/libucl/src/$(DEPDIR)/libucl_la-xxhash.Plo \
	external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Po \
	external/ptsort/lib/$(DEPDIR)/libptsort_la-aa_tree.Plo \
	external/ptsort/lib/$(DEPDIR)/libptsort_la-fline.Plo \
	external/sh/$(DEPDIR)/sh-alias.Po \
	external/sh/$(DEPDIR)/sh-arith_yacc.Po \
	external/sh/$(DEPDIR)/sh-arith_yylex.Po \
	external/sh/$(DEPDIR)/sh-cd.Po \
	external/sh/$(DEPDIR)/sh-error.Po \
	external/sh/$(DEPDIR)/sh-eval.Po \
	external/sh/$(DEPDIR)/sh-exec.Po \
	external/sh/$(DEPDIR)/sh-expand.Po \
	external/sh/$(DEPDIR)/sh-histedit.Po \
	external/sh/$(DEPDIR)/sh-input.Po \
	external/sh/$(DEPDIR)/sh-jobs.Po \
	external/sh/$(DEPDIR)/sh-kill.Po \
	external/sh/$(DEPDIR)/sh-mail.Po \
	external/sh/$(DEPDIR)/sh-main.Po \
	external/sh/$(DEPDIR)/sh-memalloc.Po \
	external/sh/$(DEPDIR)/sh-miscbltin.Po \
	external/sh/$(DEPDIR)/sh-mystring.Po \
	external/sh/$(DEPDIR)/sh-nodes.Po \
	external/sh/$(DEPDIR)/sh-options.Po \
	external/sh/$(DEPDIR)/sh-output.Po \
	external/sh/$(DEPDIR)/sh-parser.Po \
	external/sh/$(DEPDIR)/sh-printf.Po \
	external/sh/$(DEPDIR)/sh-redir.Po \
	external/sh/$(DEPDIR)/sh-show.Po \
	external/sh/$(DEPDIR)/sh-syntax.Po \
	external/sh/$(DEPDIR)/sh-test.Po \
	external/sh/$(DEPDIR)/sh-trap.Po \
	external/sh/$(DEPDIR)/sh-var.Po \
	external/sh/bltin/$(DEPDIR)/sh-echo.Po \
	external/sh_compat/$(DEPDIR)/sh-strchrnul.Po \
	external/sh_compat/$(DEPDIR)/sh-utimensat.Po \
	src/libexec/poudriere/cachec/$(DEPDIR)/cachec.Po \
	src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Po \
	src/libexec/poudriere/clock/$(DEPDIR)/clock.Po \
	src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Po \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Po \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Po \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Po \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Po \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Po \
	src/libexec/poudriere/dirempty/$(DEPDIR)/dirempty.Po \
	src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Po \
	src/libexec/poudriere/dirwatch/$(DEPDIR)/dirwatch.Po \
	src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Po \
	src/libexec/poudriere/locked_mkdir/$(DEPDIR)/locked_mkdir.Po \
	src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Po \
	src/libexec/poudriere/nc/$(DEPDIR)/nc.Po \
	src/libexec/poudriere/pwait/$(DEPDIR)/pwait.Po \
	src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Po \
	src/libexec/poudriere/rename/$(DEPDIR)/rename.Po \
	src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Po \
	src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Po \
	src/libexec/poudriere/rm/$(DEPDIR)/rm.Po \
	src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Po \
	src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Po \
	src/libexec/poudriere/timeout/$(DEPDIR)/timeout.Po \
	src/libexec/poudriere/timestamp/$(DEPDIR)/timestamp.Po \
	src/poudriere-sh/$(DEPDIR)/sh-builtins.Po \
	src/poudriere-sh/$(DEPDIR)/sh-helpers.Po \
	src/poudriere-sh/$(DEPDIR)/sh-mapfile.Po \
	src/poudriere-sh/$(DEPDIR)/sh-mkdir.Po \
	src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Po \
	src/poudriere-sh/$(DEPDIR)/sh-mktemp.Po \
	src/poudriere-sh/$(DEPDIR)/sh-realpath.Po \
	src/poudriere-sh/$(DEPDIR)/sh-rmdir.Po \
	src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Po \
	src/poudriere-sh/$(DEPDIR)/sh-sleep.Po \
	src/poudriere-sh/$(DEPDIR)/sh-stat.Po \
	src/poudriere-sh/$(DEPDIR)/sh-touch.Po \
	src/poudriere-sh/$(DEPDIR)/sh-traps.Po \
	src/poudriere-sh/$(DEPDIR)/sh-unlink.Po \
	src/poudriered/$(DEPDIR)/poudriered-poudriered.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
	$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo "  CC      " $@;
am__v_CC_1 = 
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo "  CCLD    " $@;
am__v_CCLD_1 = 
SOURCES = $(libnv_la_SOURCES) $(libptsort_la_SOURCES) \
	$(libucl_la_SOURCES) $(cachec_SOURCES) $(cached_SOURCES) \
	$(clock_SOURCES) $(cpdup_SOURCES) $(dirempty_SOURCES) \
	$(dirwatch_SOURCES) $(jexecd_SOURCES) $(locked_mkdir_SOURCES) \
	$(nc_SOURCES) $(poudriered_SOURCES) $(ptsort_SOURCES) \
	$(pwait_SOURCES) $(rename_SOURCES) $(rexec_SOURCES) \
	$(rm_SOURCES) $(setsid_SOURCES) $(sh_SOURCES) \
	$(timeout_SOURCES) $(timestamp_SOURCES)
DIST_SOURCES = $(libnv_la_SOURCES) $(libptsort_la_SOURCES) \
	$(libucl_la_SOURCES) $(cachec_SOURCES) $(cached_SOURCES) \
	$(clock_SOURCES) $(cpdup_SOURCES) $(dirempty_SOURCES) \
	$(dirwatch_SOURCES) $(jexecd_SOURCES) $(locked_mkdir_SOURCES) \
	$(nc_SOURCES) $(poudriered_SOURCES) $(ptsort_SOURCES) \
	$(pwait_SOURCES) $(rename_SOURCES) $(rexec_SOURCES) \
	$(rm_SOURCES) $(setsid_SOURCES) $(sh_SOURCES) \
	$(timeout_SOURCES) $(timestamp_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
	ctags-recursive dvi-recursive html-recursive info-recursive \
	install-data-recursive install-dvi-recursive \
	install-exec-recursive install-html-recursive \
	install-info-recursive install-pdf-recursive \
	install-ps-recursive install-recursive installcheck-recursive \
	installdirs-recursive pdf-recursive ps-recursive \
	tags-recursive uninstall-recursive
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
man8dir = $(mandir)/man8
NROFF = nroff
MANS = $(dist_man_MANS)
DATA = $(dist_assets_DATA) $(dist_awk_DATA) $(dist_btcss_DATA) \
	$(dist_btfonts_DATA) $(dist_btjs_DATA) $(dist_dtcss_DATA) \
	$(dist_dtimages_DATA) $(dist_dtjs_DATA) $(dist_examples_DATA) \
	$(dist_hook_DATA) $(dist_html_DATA) $(dist_pkgdata_DATA) \
	$(dist_sysconf_DATA)
HEADERS = $(dist_include_HEADERS)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
  distclean-recursive maintainer-clean-recursive
am__recursive_targets = \
  $(RECURSIVE_TARGETS) \
  $(RECURSIVE_CLEAN_TARGETS) \
  $(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
	cscope distdir distdir-am dist dist-all distcheck
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates.  Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
  BEGIN { nonempty = 0; } \
  { items[$$0] = 1; nonempty = 1; } \
  END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique.  This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
  list='$(am__tagged_files)'; \
  unique=`for i in $$list; do \
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  done | $(am__uniquify_input)`
DIST_SUBDIRS = $(SUBDIRS)
am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \
	$(top_srcdir)/build-aux/compile \
	$(top_srcdir)/build-aux/config.guess \
	$(top_srcdir)/build-aux/config.sub \
	$(top_srcdir)/build-aux/depcomp \
	$(top_srcdir)/build-aux/install-sh \
	$(top_srcdir)/build-aux/ltmain.sh \
	$(top_srcdir)/build-aux/missing \
	$(top_srcdir)/external/sh/Makefile.sources \
	$(top_srcdir)/src/config.h.in \
	$(top_srcdir)/src/etc/rc.d/poudriered.in README.md \
	build-aux/compile build-aux/config.guess build-aux/config.sub \
	build-aux/depcomp build-aux/install-sh build-aux/ltmain.sh \
	build-aux/missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
  if test -d "$(distdir)"; then \
    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
      && rm -rf "$(distdir)" \
      || { sleep 5 && rm -rf "$(distdir)"; }; \
  else :; fi
am__post_remove_distdir = $(am__remove_distdir)
am__relativize = \
  dir0=`pwd`; \
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  sed_rest='s,^[^/]*/*,,'; \
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  sed_butlast='s,/*[^/]*$$,,'; \
  while test -n "$$dir1"; do \
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
    if test "$$first" != "."; then \
      if test "$$first" = ".."; then \
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
      else \
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
        if test "$$first2" = "$$first"; then \
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
        else \
          dir2="../$$dir2"; \
        fi; \
        dir0="$$dir0"/"$$first"; \
      fi; \
    fi; \
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  done; \
  reldir="$$dir2"
GZIP_ENV = --best
DIST_ARCHIVES = $(distdir).tar.xz
DIST_TARGETS = dist-xz
# Exists only to be overridden by the user if desired.
AM_DISTCHECK_DVI_TARGET = dvi
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_CFLAGS = -Wall -pipe -O2 @AM_CFLAGS@ $(am__append_1)
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
FILECMD = @FILECMD@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SH = @SH@
SHELL = @SHELL@
STRIP = @STRIP@
USE_RM = @USE_RM@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = $(pkgdatadir)/html
includedir = $(pkgdatadir)/include
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = $(prefix)/man
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
# Extra builtins
CLEANFILES = $(dist_rc_SCRIPTS) libucl.a libnv.a libptsort.a \
	src/poudriere-sh/builtins.c src/poudriere-sh/builtins.def \
	src/poudriere-sh/builtins.h src/poudriere-sh/shell.h
MOSTLYCLEANFILES = poudriere
ACLOCAL_AMFLAGS = -I m4
awkdir = $(pkgdatadir)/awk
assetsdir = $(htmldir)/assets
bootstrapdir = $(assetsdir)/bootstrap-3.1.1
btcssdir = $(bootstrapdir)/css
btjsdir = $(bootstrapdir)/js
btfontsdir = $(bootstrapdir)/fonts
datatablesdir = $(assetsdir)/DataTables-1.10.0
dtcssdir = $(datatablesdir)/css
dtimagesdir = $(datatablesdir)/images
dtjsdir = $(datatablesdir)/js
rcdir = $(sysconfdir)/rc.d
hookdir = $(sysconfdir)/poudriere.d/hooks
examplesdir = $(datadir)/examples/$(PACKAGE_NAME)
EXTRA_DIST = \
		src/bin/poudriere.in \
		test-ports/

dist_bin_SCRIPTS = poudriere
dist_man_MANS = src/man/poudriere.8 \
		src/man/poudriere-bulk.8 \
		src/man/poudriere-distclean.8 \
		src/man/poudriere-image.8 \
		src/man/poudriere-jail.8 \
		src/man/poudriere-logclean.8 \
		src/man/poudriere-options.8 \
		src/man/poudriere-pkgclean.8 \
		src/man/poudriere-ports.8 \
		src/man/poudriere-queue.8 \
		src/man/poudriere-status.8 \
		src/man/poudriere-testport.8 \
		src/man/poudriere-version.8

dist_sysconf_DATA = \
		src/etc/poudriere.conf.sample \
		src/etc/poudriered.conf.sample

dist_examples_DATA = \
		src/share/examples/poudriere/nginx.conf.sample \
		src/share/examples/poudriere/httpd.conf.sample

dist_hook_DATA = src/etc/poudriere.d/hooks/bulk.sh.sample \
		src/etc/poudriere.d/hooks/pkgbuild.sh.sample

dist_pkgdata_DATA = \
			src/share/poudriere/api.sh \
			src/share/poudriere/bulk.sh \
			src/share/poudriere/common.sh \
			src/share/poudriere/daemon.sh \
			src/share/poudriere/distclean.sh \
			src/share/poudriere/foreachport.sh \
			src/share/poudriere/image.sh \
			src/share/poudriere/image_dump.sh \
			src/share/poudriere/image_firmware.sh \
			src/share/poudriere/image_hybridiso.sh \
			src/share/poudriere/image_iso.sh \
			src/share/poudriere/image_mfs.sh \
			src/share/poudriere/image_rawdisk.sh \
			src/share/poudriere/image_tar.sh \
			src/share/poudriere/image_usb.sh \
			src/share/poudriere/image_zfs.sh \
			src/share/poudriere/image_zsnapshot.sh \
			src/share/poudriere/jail.sh \
			src/share/poudriere/logclean.sh \
			src/share/poudriere/options.sh \
			src/share/poudriere/pkgclean.sh \
			src/share/poudriere/ports.sh \
			src/share/poudriere/processonelog.sh \
			src/share/poudriere/queue.sh \
			src/share/poudriere/status.sh \
			src/share/poudriere/testport.sh

dist_include_HEADERS = \
			src/share/poudriere/include/cache.sh \
			src/share/poudriere/include/colors.sh \
			src/share/poudriere/include/colors.pre.sh \
			src/share/poudriere/include/common.sh.dragonfly \
			src/share/poudriere/include/common.sh.freebsd \
			src/share/poudriere/include/display.sh \
			src/share/poudriere/include/html.sh \
			src/share/poudriere/include/hash.sh \
			src/share/poudriere/include/fs.sh \
			src/share/poudriere/include/parallel.sh \
			src/share/poudriere/include/pkg.sh \
			src/share/poudriere/include/pkgqueue.sh \
			src/share/poudriere/include/shared_hash.sh \
			src/share/poudriere/include/util.sh

dist_awk_DATA = src/share/poudriere/awk/dependency_loop.awk \
		src/share/poudriere/awk/humanize.awk \
		src/share/poudriere/awk/json.awk \
		src/share/poudriere/awk/json_jail.awk \
		src/share/poudriere/awk/json_top.awk \
		src/share/poudriere/awk/parse_MOVED.awk \
		src/share/poudriere/awk/processonelog2.awk \
		src/share/poudriere/awk/siginfo_buildtime.awk \
		src/share/poudriere/awk/unique_pkgnames_from_flavored_origins.awk

dist_html_DATA = src/share/poudriere/html/build.html \
			src/share/poudriere/html/index.html \
			src/share/poudriere/html/jail.html \
			src/share/poudriere/html/robots.txt

dist_assets_DATA = src/share/poudriere/html/assets/poudriere.js \
			src/share/poudriere/html/assets/logo.svg \
			src/share/poudriere/html/assets/favicon.ico \
			src/share/poudriere/html/assets/poudriere.css \
			src/share/poudriere/html/assets/jquery-1.11.1.js \
			src/share/poudriere/html/assets/jquery-1.11.1.min.js \
			src/share/poudriere/html/assets/jquery-1.11.1.min.map \
			src/share/poudriere/html/assets/jquery.dataTables.rowGrouping-1.2.9.js

dist_btjs_DATA = src/share/poudriere/html/assets/bootstrap-3.1.1/js/bootstrap.min.js
dist_btfonts_DATA = src/share/poudriere/html/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot \
			src/share/poudriere/html/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.svg \
			src/share/poudriere/html/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf \
			src/share/poudriere/html/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff

dist_btcss_DATA = src/share/poudriere/html/assets/bootstrap-3.1.1/css/bootstrap-theme.min.css \
			src/share/poudriere/html/assets/bootstrap-3.1.1/css/bootstrap.min.css

dist_dtcss_DATA = src/share/poudriere/html/assets/DataTables-1.10.0/css/jquery.dataTables.min.css \
			src/share/poudriere/html/assets/DataTables-1.10.0/css/jquery.dataTables_themeroller.min.css

dist_dtjs_DATA = src/share/poudriere/html/assets/DataTables-1.10.0/js/jquery.dataTables.min.js
dist_dtimages_DATA = src/share/poudriere/html/assets/DataTables-1.10.0/images/back_disabled.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/back_enabled.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/back_enabled_hover.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/forward_disabled.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/forward_enabled.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/forward_enabled_hover.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/sort_asc.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/sort_asc_disabled.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/sort_both.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/sort_desc.png \
			src/share/poudriere/html/assets/DataTables-1.10.0/images/sort_desc_disabled.png

dist_rc_SCRIPTS = src/etc/rc.d/poudriered
noinst_LTLIBRARIES = libucl.la libnv.la libptsort.la
AUTOMAKE_OPTIONS = subdir-objects
clock_SOURCES = src/libexec/poudriere/clock/clock.c
cpdup_SOURCES = src/libexec/poudriere/cpdup/src/cpdup.c \
		src/libexec/poudriere/cpdup/src/cpdup.h \
		src/libexec/poudriere/cpdup/src/hclink.c \
		src/libexec/poudriere/cpdup/src/hclink.h \
		src/libexec/poudriere/cpdup/src/hcproto.c \
		src/libexec/poudriere/cpdup/src/hcproto.h \
		src/libexec/poudriere/cpdup/src/md5.c \
		src/libexec/poudriere/cpdup/src/misc.c

cpdup_LDADD = -lcrypto
cpdup_CFLAGS = $(AM_CFLAGS) -D_ST_FLAGS_PRESENT_=1
dirempty_SOURCES = src/libexec/poudriere/dirempty/dirempty.c
dirwatch_SOURCES = src/libexec/poudriere/dirwatch/dirwatch.c
locked_mkdir_SOURCES = src/libexec/poudriere/locked_mkdir/locked_mkdir.c
nc_SOURCES = src/libexec/poudriere/nc/nc.c
pwait_SOURCES = src/libexec/poudriere/pwait/pwait.c
rename_SOURCES = src/libexec/poudriere/rename/rename.c
rm_SOURCES = src/libexec/poudriere/rm/rm.c
setsid_SOURCES = src/libexec/poudriere/setsid/setsid.c \
			src/libexec/poudriere/setsid/c.h

setsid_CFLAGS = -DHAVE_ERR_H -DHAVE_NANOSLEEP
timeout_SOURCES = src/libexec/poudriere/timeout/timeout.c
timestamp_SOURCES = src/libexec/poudriere/timestamp/timestamp.c
timestamp_LDADD = -lpthread
sh_CFLAGS = $(AM_CFLAGS) -Wno-extra -DSHELL -std=gnu99 -DVTABSIZE=1000 \
	${sh_hist_CFLAGS} -Wno-unused-const-variable -include \
	$(top_srcdir)/external/sh_compat/compat.h -I$(top_srcdir)/src \
	-I$(top_srcdir)/external/sh -I$(top_srcdir)/src/poudriere-sh \
	-I$(top_builddir)/src/poudriere-sh
sh_LDADD = ${sh_hist_LDADD} -lsbuf
@MAINTAINER_MODE_TRUE@sh_hist_LDADD = -ledit
@MAINTAINER_MODE_FALSE@sh_hist_CFLAGS = -DNO_HISTORY
sh_SOURCES = external/sh/alias.c external/sh/alias.h \
	external/sh/arith.h external/sh/arith_yacc.c \
	external/sh/arith_yacc.h external/sh/arith_yylex.c \
	external/sh/bltin/bltin.h external/sh/bltin/echo.c \
	external/sh/builtins.def external/sh/cd.c external/sh/cd.h \
	external/sh/error.c external/sh/error.h external/sh/eval.c \
	external/sh/eval.h external/sh/exec.c external/sh/exec.h \
	external/sh/expand.c external/sh/expand.h \
	external/sh/histedit.c external/sh/input.c external/sh/input.h \
	external/sh/jobs.c external/sh/jobs.h external/sh/kill.c \
	external/sh/mail.c external/sh/mail.h external/sh/main.c \
	external/sh/main.h external/sh/memalloc.c \
	external/sh/memalloc.h external/sh/miscbltin.c \
	external/sh/mkbuiltins external/sh/myhistedit.h \
	external/sh/mystring.c external/sh/mystring.h \
	external/sh/nodes.c external/sh/nodes.h external/sh/options.c \
	external/sh/options.h external/sh/output.c \
	external/sh/output.h external/sh/parser.c external/sh/parser.h \
	external/sh/printf.c external/sh/redir.c external/sh/redir.h \
	external/sh/shell.h external/sh/show.c external/sh/show.h \
	external/sh/syntax.c external/sh/syntax.h external/sh/test.c \
	external/sh/token.h external/sh/trap.c external/sh/trap.h \
	external/sh/var.c external/sh/var.h \
	external/sh_compat/strchrnul.c external/sh_compat/utimensat.c \
	src/libexec/poudriere/clock/clock.c \
	src/libexec/poudriere/dirempty/dirempty.c \
	src/libexec/poudriere/locked_mkdir/locked_mkdir.c \
	src/libexec/poudriere/pwait/pwait.c \
	src/libexec/poudriere/rename/rename.c \
	src/libexec/poudriere/rm/rm.c \
	src/poudriere-sh/builtins-poudriere.def \
	src/poudriere-sh/helpers.c src/poudriere-sh/helpers.h \
	src/poudriere-sh/mapfile.c src/poudriere-sh/mkdir.c \
	src/poudriere-sh/mkfifo.c src/poudriere-sh/mktemp.c \
	src/poudriere-sh/realpath.c src/poudriere-sh/rmdir.c \
	src/poudriere-sh/setproctitle.c src/poudriere-sh/sleep.c \
	src/poudriere-sh/stat.c src/poudriere-sh/touch.c \
	src/poudriere-sh/traps.c src/poudriere-sh/unlink.c \
	src/poudriere-sh/builtins.c
libucl_la_SOURCES = \
			external/libucl/include/lua_ucl.h \
			external/libucl/include/ucl.h \
			external/libucl/klib/khash.h \
			external/libucl/klib/kvec.h \
			external/libucl/src/tree.h \
			external/libucl/src/ucl_chartable.h \
			external/libucl/src/ucl_emitter.c \
			external/libucl/src/ucl_emitter_streamline.c \
			external/libucl/src/ucl_emitter_utils.c \
			external/libucl/src/ucl_hash.c \
			external/libucl/src/ucl_hash.h \
			external/libucl/src/ucl_internal.h \
			external/libucl/src/ucl_parser.c \
			external/libucl/src/ucl_util.c \
			external/libucl/src/xxhash.c \
			external/libucl/src/xxhash.h \
			external/libucl/uthash/uthash.h \
			external/libucl/uthash/utlist.h \
			external/libucl/uthash/utstring.h

libucl_la_CFLAGS = $(AM_CFLAGS) -Wno-extra \
			-I$(top_srcdir)/external/libucl/uthash \
			-I$(top_srcdir)/external/libucl/klib  \
			-I$(top_srcdir)/external/libucl/include  \
			-I$(top_srcdir)/external/libucl/src \
			-Wno-unused-parameter -Wno-pointer-sign \
			-Wno-unused-variable

libptsort_la_SOURCES = external/ptsort/lib/aa_tree.c \
			external/ptsort/lib/aa_tree.h \
			external/ptsort/lib/fline.c \
			external/ptsort/lib/fline.h

libptsort_la_CPPFLAGS = -I$(top_srcdir)/external/ptsort/lib
ptsort_SOURCES = external/ptsort/bin/ptsort.c
ptsort_LDADD = libptsort.la
ptsort_CPPFLAGS = -I$(top_srcdir)/external/ptsort/lib
libnv_la_CFLAGS = $(AM_CFLAGS) \
			-isystem $(top_srcdir)/external/libnv/ -std=gnu99

libnv_la_SOURCES = \
			external/libnv/common_impl.h \
			external/libnv/msgio.c \
			external/libnv/msgio.h \
			external/libnv/sys/dnv.h \
			external/libnv/sys/dnvlist.c \
			external/libnv/sys/nv.h \
			external/libnv/sys/nv_impl.h \
			external/libnv/sys/nvlist.c \
			external/libnv/sys/nvlist_impl.h \
			external/libnv/sys/nvpair.c \
			external/libnv/sys/nvpair_impl.h

poudriered_SOURCES = src/poudriered/poudriered.c
poudriered_CFLAGS = $(AM_CFLAGS) \
			-DPREFIX=\"$(prefix)\" \
			-I$(top_srcdir)/external/libucl/include

poudriered_LDADD = libucl.la \
			-lsbuf \
			-lutil

jexecd_SOURCES = src/libexec/poudriere/jexecd/jexecd.c
jexecd_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/external/libnv/sys
jexecd_LDADD = libnv.la \
		-lsbuf \
		-lutil \
		-ljail

rexec_SOURCES = src/libexec/poudriere/rexec/rexec.c
rexec_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/external/libnv/sys
rexec_LDADD = libnv.la
cached_SOURCES = src/libexec/poudriere/cached/cached.c \
		external/klib/khash.h

cached_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/external/klib
cached_LDADD = -lutil -lrt
cachec_SOURCES = src/libexec/poudriere/cachec/cachec.c
cachec_LDADD = -lrt
DEVEL_SFX = -devel
SUBDIRS = . test
all: all-recursive

.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
am--refresh: Makefile
	@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/external/sh/Makefile.sources $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
	      $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
		&& exit 0; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    echo ' $(SHELL) ./config.status'; \
	    $(SHELL) ./config.status;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
	esac;
$(top_srcdir)/external/sh/Makefile.sources $(am__empty):

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	$(SHELL) ./config.status --recheck

$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
	$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):

src/config.h: src/stamp-h1
	@test -f $@ || rm -f src/stamp-h1
	@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) src/stamp-h1

src/stamp-h1: $(top_srcdir)/src/config.h.in $(top_builddir)/config.status
	@rm -f src/stamp-h1
	cd $(top_builddir) && $(SHELL) ./config.status src/config.h
$(top_srcdir)/src/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 
	($(am__cd) $(top_srcdir) && $(AUTOHEADER))
	rm -f src/stamp-h1
	touch $@

distclean-hdr:
	-rm -f src/config.h src/stamp-h1
src/etc/rc.d/poudriered: $(top_builddir)/config.status $(top_srcdir)/src/etc/rc.d/poudriered.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
install-pkglibexecPROGRAMS: $(pkglibexec_PROGRAMS)
	@$(NORMAL_INSTALL)
	@list='$(pkglibexec_PROGRAMS)'; test -n "$(pkglibexecdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(pkglibexecdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(pkglibexecdir)" || exit 1; \
	fi; \
	for p in $$list; do echo "$$p $$p"; done | \
	sed 's/$(EXEEXT)$$//' | \
	while read p p1; do if test -f $$p \
	 || test -f $$p1 \
	  ; then echo "$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n;h' \
	    -e 's|.*|.|' \
	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
	sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
	    else { print "f", $$3 "/" $$4, $$1; } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	    test -z "$$files" || { \
	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(pkglibexecdir)$$dir'"; \
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(pkglibexecdir)$$dir" || exit $$?; \
	    } \
	; done

uninstall-pkglibexecPROGRAMS:
	@$(NORMAL_UNINSTALL)
	@list='$(pkglibexec_PROGRAMS)'; test -n "$(pkglibexecdir)" || list=; \
	files=`for p in $$list; do echo "$$p"; done | \
	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
	      -e 's/$$/$(EXEEXT)/' \
	`; \
	test -n "$$list" || exit 0; \
	echo " ( cd '$(DESTDIR)$(pkglibexecdir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(pkglibexecdir)" && rm -f $$files

clean-pkglibexecPROGRAMS:
	@list='$(pkglibexec_PROGRAMS)'; test -n "$$list" || exit 0; \
	echo " rm -f" $$list; \
	rm -f $$list || exit $$?; \
	test -n "$(EXEEXT)" || exit 0; \
	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
	echo " rm -f" $$list; \
	rm -f $$list

clean-noinstLTLIBRARIES:
	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
	@list='$(noinst_LTLIBRARIES)'; \
	locs=`for p in $$list; do echo $$p; done | \
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
	      sort -u`; \
	test -z "$$locs" || { \
	  echo rm -f $${locs}; \
	  rm -f $${locs}; \
	}
external/libnv/$(am__dirstamp):
	@$(MKDIR_P) external/libnv
	@: > external/libnv/$(am__dirstamp)
external/libnv/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/libnv/$(DEPDIR)
	@: > external/libnv/$(DEPDIR)/$(am__dirstamp)
external/libnv/libnv_la-msgio.lo: external/libnv/$(am__dirstamp) \
	external/libnv/$(DEPDIR)/$(am__dirstamp)
external/libnv/sys/$(am__dirstamp):
	@$(MKDIR_P) external/libnv/sys
	@: > external/libnv/sys/$(am__dirstamp)
external/libnv/sys/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/libnv/sys/$(DEPDIR)
	@: > external/libnv/sys/$(DEPDIR)/$(am__dirstamp)
external/libnv/sys/libnv_la-dnvlist.lo:  \
	external/libnv/sys/$(am__dirstamp) \
	external/libnv/sys/$(DEPDIR)/$(am__dirstamp)
external/libnv/sys/libnv_la-nvlist.lo:  \
	external/libnv/sys/$(am__dirstamp) \
	external/libnv/sys/$(DEPDIR)/$(am__dirstamp)
external/libnv/sys/libnv_la-nvpair.lo:  \
	external/libnv/sys/$(am__dirstamp) \
	external/libnv/sys/$(DEPDIR)/$(am__dirstamp)

libnv.la: $(libnv_la_OBJECTS) $(libnv_la_DEPENDENCIES) $(EXTRA_libnv_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(libnv_la_LINK)  $(libnv_la_OBJECTS) $(libnv_la_LIBADD) $(LIBS)
external/ptsort/lib/$(am__dirstamp):
	@$(MKDIR_P) external/ptsort/lib
	@: > external/ptsort/lib/$(am__dirstamp)
external/ptsort/lib/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/ptsort/lib/$(DEPDIR)
	@: > external/ptsort/lib/$(DEPDIR)/$(am__dirstamp)
external/ptsort/lib/libptsort_la-aa_tree.lo:  \
	external/ptsort/lib/$(am__dirstamp) \
	external/ptsort/lib/$(DEPDIR)/$(am__dirstamp)
external/ptsort/lib/libptsort_la-fline.lo:  \
	external/ptsort/lib/$(am__dirstamp) \
	external/ptsort/lib/$(DEPDIR)/$(am__dirstamp)

libptsort.la: $(libptsort_la_OBJECTS) $(libptsort_la_DEPENDENCIES) $(EXTRA_libptsort_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK)  $(libptsort_la_OBJECTS) $(libptsort_la_LIBADD) $(LIBS)
external/libucl/src/$(am__dirstamp):
	@$(MKDIR_P) external/libucl/src
	@: > external/libucl/src/$(am__dirstamp)
external/libucl/src/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/libucl/src/$(DEPDIR)
	@: > external/libucl/src/$(DEPDIR)/$(am__dirstamp)
external/libucl/src/libucl_la-ucl_emitter.lo:  \
	external/libucl/src/$(am__dirstamp) \
	external/libucl/src/$(DEPDIR)/$(am__dirstamp)
external/libucl/src/libucl_la-ucl_emitter_streamline.lo:  \
	external/libucl/src/$(am__dirstamp) \
	external/libucl/src/$(DEPDIR)/$(am__dirstamp)
external/libucl/src/libucl_la-ucl_emitter_utils.lo:  \
	external/libucl/src/$(am__dirstamp) \
	external/libucl/src/$(DEPDIR)/$(am__dirstamp)
external/libucl/src/libucl_la-ucl_hash.lo:  \
	external/libucl/src/$(am__dirstamp) \
	external/libucl/src/$(DEPDIR)/$(am__dirstamp)
external/libucl/src/libucl_la-ucl_parser.lo:  \
	external/libucl/src/$(am__dirstamp) \
	external/libucl/src/$(DEPDIR)/$(am__dirstamp)
external/libucl/src/libucl_la-ucl_util.lo:  \
	external/libucl/src/$(am__dirstamp) \
	external/libucl/src/$(DEPDIR)/$(am__dirstamp)
external/libucl/src/libucl_la-xxhash.lo:  \
	external/libucl/src/$(am__dirstamp) \
	external/libucl/src/$(DEPDIR)/$(am__dirstamp)

libucl.la: $(libucl_la_OBJECTS) $(libucl_la_DEPENDENCIES) $(EXTRA_libucl_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(libucl_la_LINK)  $(libucl_la_OBJECTS) $(libucl_la_LIBADD) $(LIBS)
src/libexec/poudriere/cachec/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/cachec
	@: > src/libexec/poudriere/cachec/$(am__dirstamp)
src/libexec/poudriere/cachec/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/cachec/$(DEPDIR)
	@: > src/libexec/poudriere/cachec/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/cachec/cachec.$(OBJEXT):  \
	src/libexec/poudriere/cachec/$(am__dirstamp) \
	src/libexec/poudriere/cachec/$(DEPDIR)/$(am__dirstamp)

cachec$(EXEEXT): $(cachec_OBJECTS) $(cachec_DEPENDENCIES) $(EXTRA_cachec_DEPENDENCIES) 
	@rm -f cachec$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(cachec_OBJECTS) $(cachec_LDADD) $(LIBS)
src/libexec/poudriere/cached/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/cached
	@: > src/libexec/poudriere/cached/$(am__dirstamp)
src/libexec/poudriere/cached/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/cached/$(DEPDIR)
	@: > src/libexec/poudriere/cached/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/cached/cached-cached.$(OBJEXT):  \
	src/libexec/poudriere/cached/$(am__dirstamp) \
	src/libexec/poudriere/cached/$(DEPDIR)/$(am__dirstamp)

cached$(EXEEXT): $(cached_OBJECTS) $(cached_DEPENDENCIES) $(EXTRA_cached_DEPENDENCIES) 
	@rm -f cached$(EXEEXT)
	$(AM_V_CCLD)$(cached_LINK) $(cached_OBJECTS) $(cached_LDADD) $(LIBS)
src/libexec/poudriere/clock/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/clock
	@: > src/libexec/poudriere/clock/$(am__dirstamp)
src/libexec/poudriere/clock/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/clock/$(DEPDIR)
	@: > src/libexec/poudriere/clock/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/clock/clock.$(OBJEXT):  \
	src/libexec/poudriere/clock/$(am__dirstamp) \
	src/libexec/poudriere/clock/$(DEPDIR)/$(am__dirstamp)

clock$(EXEEXT): $(clock_OBJECTS) $(clock_DEPENDENCIES) $(EXTRA_clock_DEPENDENCIES) 
	@rm -f clock$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(clock_OBJECTS) $(clock_LDADD) $(LIBS)
src/libexec/poudriere/cpdup/src/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/cpdup/src
	@: > src/libexec/poudriere/cpdup/src/$(am__dirstamp)
src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/cpdup/src/$(DEPDIR)
	@: > src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/cpdup/src/cpdup-cpdup.$(OBJEXT):  \
	src/libexec/poudriere/cpdup/src/$(am__dirstamp) \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/cpdup/src/cpdup-hclink.$(OBJEXT):  \
	src/libexec/poudriere/cpdup/src/$(am__dirstamp) \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/cpdup/src/cpdup-hcproto.$(OBJEXT):  \
	src/libexec/poudriere/cpdup/src/$(am__dirstamp) \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/cpdup/src/cpdup-md5.$(OBJEXT):  \
	src/libexec/poudriere/cpdup/src/$(am__dirstamp) \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/cpdup/src/cpdup-misc.$(OBJEXT):  \
	src/libexec/poudriere/cpdup/src/$(am__dirstamp) \
	src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp)

cpdup$(EXEEXT): $(cpdup_OBJECTS) $(cpdup_DEPENDENCIES) $(EXTRA_cpdup_DEPENDENCIES) 
	@rm -f cpdup$(EXEEXT)
	$(AM_V_CCLD)$(cpdup_LINK) $(cpdup_OBJECTS) $(cpdup_LDADD) $(LIBS)
src/libexec/poudriere/dirempty/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/dirempty
	@: > src/libexec/poudriere/dirempty/$(am__dirstamp)
src/libexec/poudriere/dirempty/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/dirempty/$(DEPDIR)
	@: > src/libexec/poudriere/dirempty/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/dirempty/dirempty.$(OBJEXT):  \
	src/libexec/poudriere/dirempty/$(am__dirstamp) \
	src/libexec/poudriere/dirempty/$(DEPDIR)/$(am__dirstamp)

dirempty$(EXEEXT): $(dirempty_OBJECTS) $(dirempty_DEPENDENCIES) $(EXTRA_dirempty_DEPENDENCIES) 
	@rm -f dirempty$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(dirempty_OBJECTS) $(dirempty_LDADD) $(LIBS)
src/libexec/poudriere/dirwatch/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/dirwatch
	@: > src/libexec/poudriere/dirwatch/$(am__dirstamp)
src/libexec/poudriere/dirwatch/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/dirwatch/$(DEPDIR)
	@: > src/libexec/poudriere/dirwatch/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/dirwatch/dirwatch.$(OBJEXT):  \
	src/libexec/poudriere/dirwatch/$(am__dirstamp) \
	src/libexec/poudriere/dirwatch/$(DEPDIR)/$(am__dirstamp)

dirwatch$(EXEEXT): $(dirwatch_OBJECTS) $(dirwatch_DEPENDENCIES) $(EXTRA_dirwatch_DEPENDENCIES) 
	@rm -f dirwatch$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(dirwatch_OBJECTS) $(dirwatch_LDADD) $(LIBS)
src/libexec/poudriere/jexecd/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/jexecd
	@: > src/libexec/poudriere/jexecd/$(am__dirstamp)
src/libexec/poudriere/jexecd/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/jexecd/$(DEPDIR)
	@: > src/libexec/poudriere/jexecd/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/jexecd/jexecd-jexecd.$(OBJEXT):  \
	src/libexec/poudriere/jexecd/$(am__dirstamp) \
	src/libexec/poudriere/jexecd/$(DEPDIR)/$(am__dirstamp)

jexecd$(EXEEXT): $(jexecd_OBJECTS) $(jexecd_DEPENDENCIES) $(EXTRA_jexecd_DEPENDENCIES) 
	@rm -f jexecd$(EXEEXT)
	$(AM_V_CCLD)$(jexecd_LINK) $(jexecd_OBJECTS) $(jexecd_LDADD) $(LIBS)
src/libexec/poudriere/locked_mkdir/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/locked_mkdir
	@: > src/libexec/poudriere/locked_mkdir/$(am__dirstamp)
src/libexec/poudriere/locked_mkdir/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/locked_mkdir/$(DEPDIR)
	@: > src/libexec/poudriere/locked_mkdir/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/locked_mkdir/locked_mkdir.$(OBJEXT):  \
	src/libexec/poudriere/locked_mkdir/$(am__dirstamp) \
	src/libexec/poudriere/locked_mkdir/$(DEPDIR)/$(am__dirstamp)

locked_mkdir$(EXEEXT): $(locked_mkdir_OBJECTS) $(locked_mkdir_DEPENDENCIES) $(EXTRA_locked_mkdir_DEPENDENCIES) 
	@rm -f locked_mkdir$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(locked_mkdir_OBJECTS) $(locked_mkdir_LDADD) $(LIBS)
src/libexec/poudriere/nc/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/nc
	@: > src/libexec/poudriere/nc/$(am__dirstamp)
src/libexec/poudriere/nc/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/nc/$(DEPDIR)
	@: > src/libexec/poudriere/nc/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/nc/nc.$(OBJEXT):  \
	src/libexec/poudriere/nc/$(am__dirstamp) \
	src/libexec/poudriere/nc/$(DEPDIR)/$(am__dirstamp)

nc$(EXEEXT): $(nc_OBJECTS) $(nc_DEPENDENCIES) $(EXTRA_nc_DEPENDENCIES) 
	@rm -f nc$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(nc_OBJECTS) $(nc_LDADD) $(LIBS)
src/poudriered/$(am__dirstamp):
	@$(MKDIR_P) src/poudriered
	@: > src/poudriered/$(am__dirstamp)
src/poudriered/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/poudriered/$(DEPDIR)
	@: > src/poudriered/$(DEPDIR)/$(am__dirstamp)
src/poudriered/poudriered-poudriered.$(OBJEXT):  \
	src/poudriered/$(am__dirstamp) \
	src/poudriered/$(DEPDIR)/$(am__dirstamp)

poudriered$(EXEEXT): $(poudriered_OBJECTS) $(poudriered_DEPENDENCIES) $(EXTRA_poudriered_DEPENDENCIES) 
	@rm -f poudriered$(EXEEXT)
	$(AM_V_CCLD)$(poudriered_LINK) $(poudriered_OBJECTS) $(poudriered_LDADD) $(LIBS)
external/ptsort/bin/$(am__dirstamp):
	@$(MKDIR_P) external/ptsort/bin
	@: > external/ptsort/bin/$(am__dirstamp)
external/ptsort/bin/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/ptsort/bin/$(DEPDIR)
	@: > external/ptsort/bin/$(DEPDIR)/$(am__dirstamp)
external/ptsort/bin/ptsort-ptsort.$(OBJEXT):  \
	external/ptsort/bin/$(am__dirstamp) \
	external/ptsort/bin/$(DEPDIR)/$(am__dirstamp)

ptsort$(EXEEXT): $(ptsort_OBJECTS) $(ptsort_DEPENDENCIES) $(EXTRA_ptsort_DEPENDENCIES) 
	@rm -f ptsort$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(ptsort_OBJECTS) $(ptsort_LDADD) $(LIBS)
src/libexec/poudriere/pwait/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/pwait
	@: > src/libexec/poudriere/pwait/$(am__dirstamp)
src/libexec/poudriere/pwait/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/pwait/$(DEPDIR)
	@: > src/libexec/poudriere/pwait/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/pwait/pwait.$(OBJEXT):  \
	src/libexec/poudriere/pwait/$(am__dirstamp) \
	src/libexec/poudriere/pwait/$(DEPDIR)/$(am__dirstamp)

pwait$(EXEEXT): $(pwait_OBJECTS) $(pwait_DEPENDENCIES) $(EXTRA_pwait_DEPENDENCIES) 
	@rm -f pwait$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(pwait_OBJECTS) $(pwait_LDADD) $(LIBS)
src/libexec/poudriere/rename/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/rename
	@: > src/libexec/poudriere/rename/$(am__dirstamp)
src/libexec/poudriere/rename/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/rename/$(DEPDIR)
	@: > src/libexec/poudriere/rename/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/rename/rename.$(OBJEXT):  \
	src/libexec/poudriere/rename/$(am__dirstamp) \
	src/libexec/poudriere/rename/$(DEPDIR)/$(am__dirstamp)

rename$(EXEEXT): $(rename_OBJECTS) $(rename_DEPENDENCIES) $(EXTRA_rename_DEPENDENCIES) 
	@rm -f rename$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(rename_OBJECTS) $(rename_LDADD) $(LIBS)
src/libexec/poudriere/rexec/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/rexec
	@: > src/libexec/poudriere/rexec/$(am__dirstamp)
src/libexec/poudriere/rexec/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/rexec/$(DEPDIR)
	@: > src/libexec/poudriere/rexec/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/rexec/rexec-rexec.$(OBJEXT):  \
	src/libexec/poudriere/rexec/$(am__dirstamp) \
	src/libexec/poudriere/rexec/$(DEPDIR)/$(am__dirstamp)

rexec$(EXEEXT): $(rexec_OBJECTS) $(rexec_DEPENDENCIES) $(EXTRA_rexec_DEPENDENCIES) 
	@rm -f rexec$(EXEEXT)
	$(AM_V_CCLD)$(rexec_LINK) $(rexec_OBJECTS) $(rexec_LDADD) $(LIBS)
src/libexec/poudriere/rm/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/rm
	@: > src/libexec/poudriere/rm/$(am__dirstamp)
src/libexec/poudriere/rm/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/rm/$(DEPDIR)
	@: > src/libexec/poudriere/rm/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/rm/rm.$(OBJEXT):  \
	src/libexec/poudriere/rm/$(am__dirstamp) \
	src/libexec/poudriere/rm/$(DEPDIR)/$(am__dirstamp)

rm$(EXEEXT): $(rm_OBJECTS) $(rm_DEPENDENCIES) $(EXTRA_rm_DEPENDENCIES) 
	@rm -f rm$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(rm_OBJECTS) $(rm_LDADD) $(LIBS)
src/libexec/poudriere/setsid/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/setsid
	@: > src/libexec/poudriere/setsid/$(am__dirstamp)
src/libexec/poudriere/setsid/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/setsid/$(DEPDIR)
	@: > src/libexec/poudriere/setsid/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/setsid/setsid-setsid.$(OBJEXT):  \
	src/libexec/poudriere/setsid/$(am__dirstamp) \
	src/libexec/poudriere/setsid/$(DEPDIR)/$(am__dirstamp)

setsid$(EXEEXT): $(setsid_OBJECTS) $(setsid_DEPENDENCIES) $(EXTRA_setsid_DEPENDENCIES) 
	@rm -f setsid$(EXEEXT)
	$(AM_V_CCLD)$(setsid_LINK) $(setsid_OBJECTS) $(setsid_LDADD) $(LIBS)
external/sh/$(am__dirstamp):
	@$(MKDIR_P) external/sh
	@: > external/sh/$(am__dirstamp)
external/sh/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/sh/$(DEPDIR)
	@: > external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-alias.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-arith_yacc.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-arith_yylex.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/bltin/$(am__dirstamp):
	@$(MKDIR_P) external/sh/bltin
	@: > external/sh/bltin/$(am__dirstamp)
external/sh/bltin/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/sh/bltin/$(DEPDIR)
	@: > external/sh/bltin/$(DEPDIR)/$(am__dirstamp)
external/sh/bltin/sh-echo.$(OBJEXT):  \
	external/sh/bltin/$(am__dirstamp) \
	external/sh/bltin/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-cd.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-error.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-eval.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-exec.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-expand.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-histedit.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-input.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-jobs.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-kill.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-mail.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-main.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-memalloc.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-miscbltin.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-mystring.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-nodes.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-options.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-output.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-parser.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-printf.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-redir.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-show.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-syntax.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-test.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-trap.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh/sh-var.$(OBJEXT): external/sh/$(am__dirstamp) \
	external/sh/$(DEPDIR)/$(am__dirstamp)
external/sh_compat/$(am__dirstamp):
	@$(MKDIR_P) external/sh_compat
	@: > external/sh_compat/$(am__dirstamp)
external/sh_compat/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) external/sh_compat/$(DEPDIR)
	@: > external/sh_compat/$(DEPDIR)/$(am__dirstamp)
external/sh_compat/sh-strchrnul.$(OBJEXT):  \
	external/sh_compat/$(am__dirstamp) \
	external/sh_compat/$(DEPDIR)/$(am__dirstamp)
external/sh_compat/sh-utimensat.$(OBJEXT):  \
	external/sh_compat/$(am__dirstamp) \
	external/sh_compat/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/clock/sh-clock.$(OBJEXT):  \
	src/libexec/poudriere/clock/$(am__dirstamp) \
	src/libexec/poudriere/clock/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/dirempty/sh-dirempty.$(OBJEXT):  \
	src/libexec/poudriere/dirempty/$(am__dirstamp) \
	src/libexec/poudriere/dirempty/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.$(OBJEXT):  \
	src/libexec/poudriere/locked_mkdir/$(am__dirstamp) \
	src/libexec/poudriere/locked_mkdir/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/pwait/sh-pwait.$(OBJEXT):  \
	src/libexec/poudriere/pwait/$(am__dirstamp) \
	src/libexec/poudriere/pwait/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/rename/sh-rename.$(OBJEXT):  \
	src/libexec/poudriere/rename/$(am__dirstamp) \
	src/libexec/poudriere/rename/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/rm/sh-rm.$(OBJEXT):  \
	src/libexec/poudriere/rm/$(am__dirstamp) \
	src/libexec/poudriere/rm/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/$(am__dirstamp):
	@$(MKDIR_P) src/poudriere-sh
	@: > src/poudriere-sh/$(am__dirstamp)
src/poudriere-sh/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/poudriere-sh/$(DEPDIR)
	@: > src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-helpers.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-mapfile.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-mkdir.$(OBJEXT): src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-mkfifo.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-mktemp.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-realpath.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-rmdir.$(OBJEXT): src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-setproctitle.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-sleep.$(OBJEXT): src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-stat.$(OBJEXT): src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-touch.$(OBJEXT): src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-traps.$(OBJEXT): src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-unlink.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
src/poudriere-sh/sh-builtins.$(OBJEXT):  \
	src/poudriere-sh/$(am__dirstamp) \
	src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)

sh$(EXEEXT): $(sh_OBJECTS) $(sh_DEPENDENCIES) $(EXTRA_sh_DEPENDENCIES) 
	@rm -f sh$(EXEEXT)
	$(AM_V_CCLD)$(sh_LINK) $(sh_OBJECTS) $(sh_LDADD) $(LIBS)
src/libexec/poudriere/timeout/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/timeout
	@: > src/libexec/poudriere/timeout/$(am__dirstamp)
src/libexec/poudriere/timeout/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/timeout/$(DEPDIR)
	@: > src/libexec/poudriere/timeout/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/timeout/timeout.$(OBJEXT):  \
	src/libexec/poudriere/timeout/$(am__dirstamp) \
	src/libexec/poudriere/timeout/$(DEPDIR)/$(am__dirstamp)

timeout$(EXEEXT): $(timeout_OBJECTS) $(timeout_DEPENDENCIES) $(EXTRA_timeout_DEPENDENCIES) 
	@rm -f timeout$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(timeout_OBJECTS) $(timeout_LDADD) $(LIBS)
src/libexec/poudriere/timestamp/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/timestamp
	@: > src/libexec/poudriere/timestamp/$(am__dirstamp)
src/libexec/poudriere/timestamp/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/libexec/poudriere/timestamp/$(DEPDIR)
	@: > src/libexec/poudriere/timestamp/$(DEPDIR)/$(am__dirstamp)
src/libexec/poudriere/timestamp/timestamp.$(OBJEXT):  \
	src/libexec/poudriere/timestamp/$(am__dirstamp) \
	src/libexec/poudriere/timestamp/$(DEPDIR)/$(am__dirstamp)

timestamp$(EXEEXT): $(timestamp_OBJECTS) $(timestamp_DEPENDENCIES) $(EXTRA_timestamp_DEPENDENCIES) 
	@rm -f timestamp$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(timestamp_OBJECTS) $(timestamp_LDADD) $(LIBS)
install-dist_binSCRIPTS: $(dist_bin_SCRIPTS)
	@$(NORMAL_INSTALL)
	@list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n' \
	    -e 'h;s|.*|.|' \
	    -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) { files[d] = files[d] " " $$1; \
	      if (++n[d] == $(am__install_max)) { \
		print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
	    else { print "f", d "/" $$4, $$1 } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	     if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	     test -z "$$files" || { \
	       echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
	       $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
	     } \
	; done

uninstall-dist_binSCRIPTS:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
	files=`for p in $$list; do echo "$$p"; done | \
	       sed -e 's,.*/,,;$(transform)'`; \
	dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir)
install-dist_rcSCRIPTS: $(dist_rc_SCRIPTS)
	@$(NORMAL_INSTALL)
	@list='$(dist_rc_SCRIPTS)'; test -n "$(rcdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(rcdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(rcdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n' \
	    -e 'h;s|.*|.|' \
	    -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) { files[d] = files[d] " " $$1; \
	      if (++n[d] == $(am__install_max)) { \
		print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
	    else { print "f", d "/" $$4, $$1 } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	     if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	     test -z "$$files" || { \
	       echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(rcdir)$$dir'"; \
	       $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(rcdir)$$dir" || exit $$?; \
	     } \
	; done

uninstall-dist_rcSCRIPTS:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_rc_SCRIPTS)'; test -n "$(rcdir)" || exit 0; \
	files=`for p in $$list; do echo "$$p"; done | \
	       sed -e 's,.*/,,;$(transform)'`; \
	dir='$(DESTDIR)$(rcdir)'; $(am__uninstall_files_from_dir)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)
	-rm -f external/libnv/*.$(OBJEXT)
	-rm -f external/libnv/*.lo
	-rm -f external/libnv/sys/*.$(OBJEXT)
	-rm -f external/libnv/sys/*.lo
	-rm -f external/libucl/src/*.$(OBJEXT)
	-rm -f external/libucl/src/*.lo
	-rm -f external/ptsort/bin/*.$(OBJEXT)
	-rm -f external/ptsort/lib/*.$(OBJEXT)
	-rm -f external/ptsort/lib/*.lo
	-rm -f external/sh/*.$(OBJEXT)
	-rm -f external/sh/bltin/*.$(OBJEXT)
	-rm -f external/sh_compat/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/cachec/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/cached/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/clock/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/cpdup/src/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/dirempty/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/dirwatch/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/jexecd/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/locked_mkdir/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/nc/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/pwait/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/rename/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/rexec/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/rm/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/setsid/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/timeout/*.$(OBJEXT)
	-rm -f src/libexec/poudriere/timestamp/*.$(OBJEXT)
	-rm -f src/poudriere-sh/*.$(OBJEXT)
	-rm -f src/poudriered/*.$(OBJEXT)

distclean-compile:
	-rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@external/libnv/$(DEPDIR)/libnv_la-msgio.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libnv/sys/$(DEPDIR)/libnv_la-dnvlist.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libnv/sys/$(DEPDIR)/libnv_la-nvlist.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libnv/sys/$(DEPDIR)/libnv_la-nvpair.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_streamline.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_utils.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libucl/src/$(DEPDIR)/libucl_la-ucl_hash.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libucl/src/$(DEPDIR)/libucl_la-ucl_parser.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libucl/src/$(DEPDIR)/libucl_la-ucl_util.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/libucl/src/$(DEPDIR)/libucl_la-xxhash.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/ptsort/lib/$(DEPDIR)/libptsort_la-aa_tree.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/ptsort/lib/$(DEPDIR)/libptsort_la-fline.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-alias.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-arith_yacc.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-arith_yylex.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-cd.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-eval.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-exec.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-expand.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-histedit.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-input.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-jobs.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-kill.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-mail.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-memalloc.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-miscbltin.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-mystring.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-nodes.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-options.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-output.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-parser.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-printf.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-redir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-show.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-syntax.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-trap.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/$(DEPDIR)/sh-var.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh/bltin/$(DEPDIR)/sh-echo.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh_compat/$(DEPDIR)/sh-strchrnul.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@external/sh_compat/$(DEPDIR)/sh-utimensat.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/cachec/$(DEPDIR)/cachec.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/clock/$(DEPDIR)/clock.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/dirempty/$(DEPDIR)/dirempty.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/dirwatch/$(DEPDIR)/dirwatch.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/locked_mkdir/$(DEPDIR)/locked_mkdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/nc/$(DEPDIR)/nc.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/pwait/$(DEPDIR)/pwait.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/rename/$(DEPDIR)/rename.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/rm/$(DEPDIR)/rm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/timeout/$(DEPDIR)/timeout.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/libexec/poudriere/timestamp/$(DEPDIR)/timestamp.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-builtins.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-helpers.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-mapfile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-mkdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-mktemp.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-realpath.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-rmdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-sleep.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-stat.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-touch.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-traps.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriere-sh/$(DEPDIR)/sh-unlink.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/poudriered/$(DEPDIR)/poudriered-poudriered.Po@am__quote@ # am--include-marker

$(am__depfiles_remade):
	@$(MKDIR_P) $(@D)
	@echo '# dummy' >$@-t && $(am__mv) $@-t $@

am--depfiles: $(am__depfiles_remade)

.c.o:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<

.c.obj:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`

.c.lo:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<

external/libnv/libnv_la-msgio.lo: external/libnv/msgio.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -MT external/libnv/libnv_la-msgio.lo -MD -MP -MF external/libnv/$(DEPDIR)/libnv_la-msgio.Tpo -c -o external/libnv/libnv_la-msgio.lo `test -f 'external/libnv/msgio.c' || echo '$(srcdir)/'`external/libnv/msgio.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libnv/$(DEPDIR)/libnv_la-msgio.Tpo external/libnv/$(DEPDIR)/libnv_la-msgio.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libnv/msgio.c' object='external/libnv/libnv_la-msgio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -c -o external/libnv/libnv_la-msgio.lo `test -f 'external/libnv/msgio.c' || echo '$(srcdir)/'`external/libnv/msgio.c

external/libnv/sys/libnv_la-dnvlist.lo: external/libnv/sys/dnvlist.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -MT external/libnv/sys/libnv_la-dnvlist.lo -MD -MP -MF external/libnv/sys/$(DEPDIR)/libnv_la-dnvlist.Tpo -c -o external/libnv/sys/libnv_la-dnvlist.lo `test -f 'external/libnv/sys/dnvlist.c' || echo '$(srcdir)/'`external/libnv/sys/dnvlist.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libnv/sys/$(DEPDIR)/libnv_la-dnvlist.Tpo external/libnv/sys/$(DEPDIR)/libnv_la-dnvlist.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libnv/sys/dnvlist.c' object='external/libnv/sys/libnv_la-dnvlist.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -c -o external/libnv/sys/libnv_la-dnvlist.lo `test -f 'external/libnv/sys/dnvlist.c' || echo '$(srcdir)/'`external/libnv/sys/dnvlist.c

external/libnv/sys/libnv_la-nvlist.lo: external/libnv/sys/nvlist.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -MT external/libnv/sys/libnv_la-nvlist.lo -MD -MP -MF external/libnv/sys/$(DEPDIR)/libnv_la-nvlist.Tpo -c -o external/libnv/sys/libnv_la-nvlist.lo `test -f 'external/libnv/sys/nvlist.c' || echo '$(srcdir)/'`external/libnv/sys/nvlist.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libnv/sys/$(DEPDIR)/libnv_la-nvlist.Tpo external/libnv/sys/$(DEPDIR)/libnv_la-nvlist.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libnv/sys/nvlist.c' object='external/libnv/sys/libnv_la-nvlist.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -c -o external/libnv/sys/libnv_la-nvlist.lo `test -f 'external/libnv/sys/nvlist.c' || echo '$(srcdir)/'`external/libnv/sys/nvlist.c

external/libnv/sys/libnv_la-nvpair.lo: external/libnv/sys/nvpair.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -MT external/libnv/sys/libnv_la-nvpair.lo -MD -MP -MF external/libnv/sys/$(DEPDIR)/libnv_la-nvpair.Tpo -c -o external/libnv/sys/libnv_la-nvpair.lo `test -f 'external/libnv/sys/nvpair.c' || echo '$(srcdir)/'`external/libnv/sys/nvpair.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libnv/sys/$(DEPDIR)/libnv_la-nvpair.Tpo external/libnv/sys/$(DEPDIR)/libnv_la-nvpair.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libnv/sys/nvpair.c' object='external/libnv/sys/libnv_la-nvpair.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnv_la_CFLAGS) $(CFLAGS) -c -o external/libnv/sys/libnv_la-nvpair.lo `test -f 'external/libnv/sys/nvpair.c' || echo '$(srcdir)/'`external/libnv/sys/nvpair.c

external/ptsort/lib/libptsort_la-aa_tree.lo: external/ptsort/lib/aa_tree.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libptsort_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/ptsort/lib/libptsort_la-aa_tree.lo -MD -MP -MF external/ptsort/lib/$(DEPDIR)/libptsort_la-aa_tree.Tpo -c -o external/ptsort/lib/libptsort_la-aa_tree.lo `test -f 'external/ptsort/lib/aa_tree.c' || echo '$(srcdir)/'`external/ptsort/lib/aa_tree.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/ptsort/lib/$(DEPDIR)/libptsort_la-aa_tree.Tpo external/ptsort/lib/$(DEPDIR)/libptsort_la-aa_tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/ptsort/lib/aa_tree.c' object='external/ptsort/lib/libptsort_la-aa_tree.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libptsort_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/ptsort/lib/libptsort_la-aa_tree.lo `test -f 'external/ptsort/lib/aa_tree.c' || echo '$(srcdir)/'`external/ptsort/lib/aa_tree.c

external/ptsort/lib/libptsort_la-fline.lo: external/ptsort/lib/fline.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libptsort_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/ptsort/lib/libptsort_la-fline.lo -MD -MP -MF external/ptsort/lib/$(DEPDIR)/libptsort_la-fline.Tpo -c -o external/ptsort/lib/libptsort_la-fline.lo `test -f 'external/ptsort/lib/fline.c' || echo '$(srcdir)/'`external/ptsort/lib/fline.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/ptsort/lib/$(DEPDIR)/libptsort_la-fline.Tpo external/ptsort/lib/$(DEPDIR)/libptsort_la-fline.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/ptsort/lib/fline.c' object='external/ptsort/lib/libptsort_la-fline.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libptsort_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/ptsort/lib/libptsort_la-fline.lo `test -f 'external/ptsort/lib/fline.c' || echo '$(srcdir)/'`external/ptsort/lib/fline.c

external/libucl/src/libucl_la-ucl_emitter.lo: external/libucl/src/ucl_emitter.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -MT external/libucl/src/libucl_la-ucl_emitter.lo -MD -MP -MF external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter.Tpo -c -o external/libucl/src/libucl_la-ucl_emitter.lo `test -f 'external/libucl/src/ucl_emitter.c' || echo '$(srcdir)/'`external/libucl/src/ucl_emitter.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter.Tpo external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libucl/src/ucl_emitter.c' object='external/libucl/src/libucl_la-ucl_emitter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -c -o external/libucl/src/libucl_la-ucl_emitter.lo `test -f 'external/libucl/src/ucl_emitter.c' || echo '$(srcdir)/'`external/libucl/src/ucl_emitter.c

external/libucl/src/libucl_la-ucl_emitter_streamline.lo: external/libucl/src/ucl_emitter_streamline.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -MT external/libucl/src/libucl_la-ucl_emitter_streamline.lo -MD -MP -MF external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_streamline.Tpo -c -o external/libucl/src/libucl_la-ucl_emitter_streamline.lo `test -f 'external/libucl/src/ucl_emitter_streamline.c' || echo '$(srcdir)/'`external/libucl/src/ucl_emitter_streamline.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_streamline.Tpo external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_streamline.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libucl/src/ucl_emitter_streamline.c' object='external/libucl/src/libucl_la-ucl_emitter_streamline.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -c -o external/libucl/src/libucl_la-ucl_emitter_streamline.lo `test -f 'external/libucl/src/ucl_emitter_streamline.c' || echo '$(srcdir)/'`external/libucl/src/ucl_emitter_streamline.c

external/libucl/src/libucl_la-ucl_emitter_utils.lo: external/libucl/src/ucl_emitter_utils.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -MT external/libucl/src/libucl_la-ucl_emitter_utils.lo -MD -MP -MF external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_utils.Tpo -c -o external/libucl/src/libucl_la-ucl_emitter_utils.lo `test -f 'external/libucl/src/ucl_emitter_utils.c' || echo '$(srcdir)/'`external/libucl/src/ucl_emitter_utils.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_utils.Tpo external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libucl/src/ucl_emitter_utils.c' object='external/libucl/src/libucl_la-ucl_emitter_utils.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -c -o external/libucl/src/libucl_la-ucl_emitter_utils.lo `test -f 'external/libucl/src/ucl_emitter_utils.c' || echo '$(srcdir)/'`external/libucl/src/ucl_emitter_utils.c

external/libucl/src/libucl_la-ucl_hash.lo: external/libucl/src/ucl_hash.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -MT external/libucl/src/libucl_la-ucl_hash.lo -MD -MP -MF external/libucl/src/$(DEPDIR)/libucl_la-ucl_hash.Tpo -c -o external/libucl/src/libucl_la-ucl_hash.lo `test -f 'external/libucl/src/ucl_hash.c' || echo '$(srcdir)/'`external/libucl/src/ucl_hash.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libucl/src/$(DEPDIR)/libucl_la-ucl_hash.Tpo external/libucl/src/$(DEPDIR)/libucl_la-ucl_hash.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libucl/src/ucl_hash.c' object='external/libucl/src/libucl_la-ucl_hash.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -c -o external/libucl/src/libucl_la-ucl_hash.lo `test -f 'external/libucl/src/ucl_hash.c' || echo '$(srcdir)/'`external/libucl/src/ucl_hash.c

external/libucl/src/libucl_la-ucl_parser.lo: external/libucl/src/ucl_parser.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -MT external/libucl/src/libucl_la-ucl_parser.lo -MD -MP -MF external/libucl/src/$(DEPDIR)/libucl_la-ucl_parser.Tpo -c -o external/libucl/src/libucl_la-ucl_parser.lo `test -f 'external/libucl/src/ucl_parser.c' || echo '$(srcdir)/'`external/libucl/src/ucl_parser.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libucl/src/$(DEPDIR)/libucl_la-ucl_parser.Tpo external/libucl/src/$(DEPDIR)/libucl_la-ucl_parser.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libucl/src/ucl_parser.c' object='external/libucl/src/libucl_la-ucl_parser.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -c -o external/libucl/src/libucl_la-ucl_parser.lo `test -f 'external/libucl/src/ucl_parser.c' || echo '$(srcdir)/'`external/libucl/src/ucl_parser.c

external/libucl/src/libucl_la-ucl_util.lo: external/libucl/src/ucl_util.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -MT external/libucl/src/libucl_la-ucl_util.lo -MD -MP -MF external/libucl/src/$(DEPDIR)/libucl_la-ucl_util.Tpo -c -o external/libucl/src/libucl_la-ucl_util.lo `test -f 'external/libucl/src/ucl_util.c' || echo '$(srcdir)/'`external/libucl/src/ucl_util.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libucl/src/$(DEPDIR)/libucl_la-ucl_util.Tpo external/libucl/src/$(DEPDIR)/libucl_la-ucl_util.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libucl/src/ucl_util.c' object='external/libucl/src/libucl_la-ucl_util.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -c -o external/libucl/src/libucl_la-ucl_util.lo `test -f 'external/libucl/src/ucl_util.c' || echo '$(srcdir)/'`external/libucl/src/ucl_util.c

external/libucl/src/libucl_la-xxhash.lo: external/libucl/src/xxhash.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -MT external/libucl/src/libucl_la-xxhash.lo -MD -MP -MF external/libucl/src/$(DEPDIR)/libucl_la-xxhash.Tpo -c -o external/libucl/src/libucl_la-xxhash.lo `test -f 'external/libucl/src/xxhash.c' || echo '$(srcdir)/'`external/libucl/src/xxhash.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/libucl/src/$(DEPDIR)/libucl_la-xxhash.Tpo external/libucl/src/$(DEPDIR)/libucl_la-xxhash.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/libucl/src/xxhash.c' object='external/libucl/src/libucl_la-xxhash.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libucl_la_CFLAGS) $(CFLAGS) -c -o external/libucl/src/libucl_la-xxhash.lo `test -f 'external/libucl/src/xxhash.c' || echo '$(srcdir)/'`external/libucl/src/xxhash.c

src/libexec/poudriere/cached/cached-cached.o: src/libexec/poudriere/cached/cached.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cached_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cached/cached-cached.o -MD -MP -MF src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Tpo -c -o src/libexec/poudriere/cached/cached-cached.o `test -f 'src/libexec/poudriere/cached/cached.c' || echo '$(srcdir)/'`src/libexec/poudriere/cached/cached.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Tpo src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cached/cached.c' object='src/libexec/poudriere/cached/cached-cached.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cached_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cached/cached-cached.o `test -f 'src/libexec/poudriere/cached/cached.c' || echo '$(srcdir)/'`src/libexec/poudriere/cached/cached.c

src/libexec/poudriere/cached/cached-cached.obj: src/libexec/poudriere/cached/cached.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cached_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cached/cached-cached.obj -MD -MP -MF src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Tpo -c -o src/libexec/poudriere/cached/cached-cached.obj `if test -f 'src/libexec/poudriere/cached/cached.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cached/cached.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cached/cached.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Tpo src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cached/cached.c' object='src/libexec/poudriere/cached/cached-cached.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cached_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cached/cached-cached.obj `if test -f 'src/libexec/poudriere/cached/cached.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cached/cached.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cached/cached.c'; fi`

src/libexec/poudriere/cpdup/src/cpdup-cpdup.o: src/libexec/poudriere/cpdup/src/cpdup.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-cpdup.o -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-cpdup.o `test -f 'src/libexec/poudriere/cpdup/src/cpdup.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/cpdup.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/cpdup.c' object='src/libexec/poudriere/cpdup/src/cpdup-cpdup.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-cpdup.o `test -f 'src/libexec/poudriere/cpdup/src/cpdup.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/cpdup.c

src/libexec/poudriere/cpdup/src/cpdup-cpdup.obj: src/libexec/poudriere/cpdup/src/cpdup.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-cpdup.obj -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-cpdup.obj `if test -f 'src/libexec/poudriere/cpdup/src/cpdup.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/cpdup.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/cpdup.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/cpdup.c' object='src/libexec/poudriere/cpdup/src/cpdup-cpdup.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-cpdup.obj `if test -f 'src/libexec/poudriere/cpdup/src/cpdup.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/cpdup.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/cpdup.c'; fi`

src/libexec/poudriere/cpdup/src/cpdup-hclink.o: src/libexec/poudriere/cpdup/src/hclink.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-hclink.o -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-hclink.o `test -f 'src/libexec/poudriere/cpdup/src/hclink.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/hclink.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/hclink.c' object='src/libexec/poudriere/cpdup/src/cpdup-hclink.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-hclink.o `test -f 'src/libexec/poudriere/cpdup/src/hclink.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/hclink.c

src/libexec/poudriere/cpdup/src/cpdup-hclink.obj: src/libexec/poudriere/cpdup/src/hclink.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-hclink.obj -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-hclink.obj `if test -f 'src/libexec/poudriere/cpdup/src/hclink.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/hclink.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/hclink.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/hclink.c' object='src/libexec/poudriere/cpdup/src/cpdup-hclink.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-hclink.obj `if test -f 'src/libexec/poudriere/cpdup/src/hclink.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/hclink.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/hclink.c'; fi`

src/libexec/poudriere/cpdup/src/cpdup-hcproto.o: src/libexec/poudriere/cpdup/src/hcproto.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-hcproto.o -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-hcproto.o `test -f 'src/libexec/poudriere/cpdup/src/hcproto.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/hcproto.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/hcproto.c' object='src/libexec/poudriere/cpdup/src/cpdup-hcproto.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-hcproto.o `test -f 'src/libexec/poudriere/cpdup/src/hcproto.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/hcproto.c

src/libexec/poudriere/cpdup/src/cpdup-hcproto.obj: src/libexec/poudriere/cpdup/src/hcproto.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-hcproto.obj -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-hcproto.obj `if test -f 'src/libexec/poudriere/cpdup/src/hcproto.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/hcproto.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/hcproto.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/hcproto.c' object='src/libexec/poudriere/cpdup/src/cpdup-hcproto.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-hcproto.obj `if test -f 'src/libexec/poudriere/cpdup/src/hcproto.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/hcproto.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/hcproto.c'; fi`

src/libexec/poudriere/cpdup/src/cpdup-md5.o: src/libexec/poudriere/cpdup/src/md5.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-md5.o -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-md5.o `test -f 'src/libexec/poudriere/cpdup/src/md5.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/md5.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/md5.c' object='src/libexec/poudriere/cpdup/src/cpdup-md5.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-md5.o `test -f 'src/libexec/poudriere/cpdup/src/md5.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/md5.c

src/libexec/poudriere/cpdup/src/cpdup-md5.obj: src/libexec/poudriere/cpdup/src/md5.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-md5.obj -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-md5.obj `if test -f 'src/libexec/poudriere/cpdup/src/md5.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/md5.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/md5.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/md5.c' object='src/libexec/poudriere/cpdup/src/cpdup-md5.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-md5.obj `if test -f 'src/libexec/poudriere/cpdup/src/md5.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/md5.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/md5.c'; fi`

src/libexec/poudriere/cpdup/src/cpdup-misc.o: src/libexec/poudriere/cpdup/src/misc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-misc.o -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-misc.o `test -f 'src/libexec/poudriere/cpdup/src/misc.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/misc.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/misc.c' object='src/libexec/poudriere/cpdup/src/cpdup-misc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-misc.o `test -f 'src/libexec/poudriere/cpdup/src/misc.c' || echo '$(srcdir)/'`src/libexec/poudriere/cpdup/src/misc.c

src/libexec/poudriere/cpdup/src/cpdup-misc.obj: src/libexec/poudriere/cpdup/src/misc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/cpdup/src/cpdup-misc.obj -MD -MP -MF src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Tpo -c -o src/libexec/poudriere/cpdup/src/cpdup-misc.obj `if test -f 'src/libexec/poudriere/cpdup/src/misc.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/misc.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/misc.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Tpo src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/cpdup/src/misc.c' object='src/libexec/poudriere/cpdup/src/cpdup-misc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cpdup_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/cpdup/src/cpdup-misc.obj `if test -f 'src/libexec/poudriere/cpdup/src/misc.c'; then $(CYGPATH_W) 'src/libexec/poudriere/cpdup/src/misc.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/cpdup/src/misc.c'; fi`

src/libexec/poudriere/jexecd/jexecd-jexecd.o: src/libexec/poudriere/jexecd/jexecd.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(jexecd_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/jexecd/jexecd-jexecd.o -MD -MP -MF src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Tpo -c -o src/libexec/poudriere/jexecd/jexecd-jexecd.o `test -f 'src/libexec/poudriere/jexecd/jexecd.c' || echo '$(srcdir)/'`src/libexec/poudriere/jexecd/jexecd.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Tpo src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/jexecd/jexecd.c' object='src/libexec/poudriere/jexecd/jexecd-jexecd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(jexecd_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/jexecd/jexecd-jexecd.o `test -f 'src/libexec/poudriere/jexecd/jexecd.c' || echo '$(srcdir)/'`src/libexec/poudriere/jexecd/jexecd.c

src/libexec/poudriere/jexecd/jexecd-jexecd.obj: src/libexec/poudriere/jexecd/jexecd.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(jexecd_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/jexecd/jexecd-jexecd.obj -MD -MP -MF src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Tpo -c -o src/libexec/poudriere/jexecd/jexecd-jexecd.obj `if test -f 'src/libexec/poudriere/jexecd/jexecd.c'; then $(CYGPATH_W) 'src/libexec/poudriere/jexecd/jexecd.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/jexecd/jexecd.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Tpo src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/jexecd/jexecd.c' object='src/libexec/poudriere/jexecd/jexecd-jexecd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(jexecd_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/jexecd/jexecd-jexecd.obj `if test -f 'src/libexec/poudriere/jexecd/jexecd.c'; then $(CYGPATH_W) 'src/libexec/poudriere/jexecd/jexecd.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/jexecd/jexecd.c'; fi`

src/poudriered/poudriered-poudriered.o: src/poudriered/poudriered.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(poudriered_CFLAGS) $(CFLAGS) -MT src/poudriered/poudriered-poudriered.o -MD -MP -MF src/poudriered/$(DEPDIR)/poudriered-poudriered.Tpo -c -o src/poudriered/poudriered-poudriered.o `test -f 'src/poudriered/poudriered.c' || echo '$(srcdir)/'`src/poudriered/poudriered.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriered/$(DEPDIR)/poudriered-poudriered.Tpo src/poudriered/$(DEPDIR)/poudriered-poudriered.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriered/poudriered.c' object='src/poudriered/poudriered-poudriered.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(poudriered_CFLAGS) $(CFLAGS) -c -o src/poudriered/poudriered-poudriered.o `test -f 'src/poudriered/poudriered.c' || echo '$(srcdir)/'`src/poudriered/poudriered.c

src/poudriered/poudriered-poudriered.obj: src/poudriered/poudriered.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(poudriered_CFLAGS) $(CFLAGS) -MT src/poudriered/poudriered-poudriered.obj -MD -MP -MF src/poudriered/$(DEPDIR)/poudriered-poudriered.Tpo -c -o src/poudriered/poudriered-poudriered.obj `if test -f 'src/poudriered/poudriered.c'; then $(CYGPATH_W) 'src/poudriered/poudriered.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriered/poudriered.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriered/$(DEPDIR)/poudriered-poudriered.Tpo src/poudriered/$(DEPDIR)/poudriered-poudriered.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriered/poudriered.c' object='src/poudriered/poudriered-poudriered.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(poudriered_CFLAGS) $(CFLAGS) -c -o src/poudriered/poudriered-poudriered.obj `if test -f 'src/poudriered/poudriered.c'; then $(CYGPATH_W) 'src/poudriered/poudriered.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriered/poudriered.c'; fi`

external/ptsort/bin/ptsort-ptsort.o: external/ptsort/bin/ptsort.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ptsort_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/ptsort/bin/ptsort-ptsort.o -MD -MP -MF external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Tpo -c -o external/ptsort/bin/ptsort-ptsort.o `test -f 'external/ptsort/bin/ptsort.c' || echo '$(srcdir)/'`external/ptsort/bin/ptsort.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Tpo external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/ptsort/bin/ptsort.c' object='external/ptsort/bin/ptsort-ptsort.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ptsort_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/ptsort/bin/ptsort-ptsort.o `test -f 'external/ptsort/bin/ptsort.c' || echo '$(srcdir)/'`external/ptsort/bin/ptsort.c

external/ptsort/bin/ptsort-ptsort.obj: external/ptsort/bin/ptsort.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ptsort_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT external/ptsort/bin/ptsort-ptsort.obj -MD -MP -MF external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Tpo -c -o external/ptsort/bin/ptsort-ptsort.obj `if test -f 'external/ptsort/bin/ptsort.c'; then $(CYGPATH_W) 'external/ptsort/bin/ptsort.c'; else $(CYGPATH_W) '$(srcdir)/external/ptsort/bin/ptsort.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Tpo external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/ptsort/bin/ptsort.c' object='external/ptsort/bin/ptsort-ptsort.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ptsort_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o external/ptsort/bin/ptsort-ptsort.obj `if test -f 'external/ptsort/bin/ptsort.c'; then $(CYGPATH_W) 'external/ptsort/bin/ptsort.c'; else $(CYGPATH_W) '$(srcdir)/external/ptsort/bin/ptsort.c'; fi`

src/libexec/poudriere/rexec/rexec-rexec.o: src/libexec/poudriere/rexec/rexec.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rexec_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/rexec/rexec-rexec.o -MD -MP -MF src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Tpo -c -o src/libexec/poudriere/rexec/rexec-rexec.o `test -f 'src/libexec/poudriere/rexec/rexec.c' || echo '$(srcdir)/'`src/libexec/poudriere/rexec/rexec.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Tpo src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/rexec/rexec.c' object='src/libexec/poudriere/rexec/rexec-rexec.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rexec_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/rexec/rexec-rexec.o `test -f 'src/libexec/poudriere/rexec/rexec.c' || echo '$(srcdir)/'`src/libexec/poudriere/rexec/rexec.c

src/libexec/poudriere/rexec/rexec-rexec.obj: src/libexec/poudriere/rexec/rexec.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rexec_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/rexec/rexec-rexec.obj -MD -MP -MF src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Tpo -c -o src/libexec/poudriere/rexec/rexec-rexec.obj `if test -f 'src/libexec/poudriere/rexec/rexec.c'; then $(CYGPATH_W) 'src/libexec/poudriere/rexec/rexec.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/rexec/rexec.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Tpo src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/rexec/rexec.c' object='src/libexec/poudriere/rexec/rexec-rexec.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rexec_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/rexec/rexec-rexec.obj `if test -f 'src/libexec/poudriere/rexec/rexec.c'; then $(CYGPATH_W) 'src/libexec/poudriere/rexec/rexec.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/rexec/rexec.c'; fi`

src/libexec/poudriere/setsid/setsid-setsid.o: src/libexec/poudriere/setsid/setsid.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(setsid_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/setsid/setsid-setsid.o -MD -MP -MF src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Tpo -c -o src/libexec/poudriere/setsid/setsid-setsid.o `test -f 'src/libexec/poudriere/setsid/setsid.c' || echo '$(srcdir)/'`src/libexec/poudriere/setsid/setsid.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Tpo src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/setsid/setsid.c' object='src/libexec/poudriere/setsid/setsid-setsid.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(setsid_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/setsid/setsid-setsid.o `test -f 'src/libexec/poudriere/setsid/setsid.c' || echo '$(srcdir)/'`src/libexec/poudriere/setsid/setsid.c

src/libexec/poudriere/setsid/setsid-setsid.obj: src/libexec/poudriere/setsid/setsid.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(setsid_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/setsid/setsid-setsid.obj -MD -MP -MF src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Tpo -c -o src/libexec/poudriere/setsid/setsid-setsid.obj `if test -f 'src/libexec/poudriere/setsid/setsid.c'; then $(CYGPATH_W) 'src/libexec/poudriere/setsid/setsid.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/setsid/setsid.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Tpo src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/setsid/setsid.c' object='src/libexec/poudriere/setsid/setsid-setsid.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(setsid_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/setsid/setsid-setsid.obj `if test -f 'src/libexec/poudriere/setsid/setsid.c'; then $(CYGPATH_W) 'src/libexec/poudriere/setsid/setsid.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/setsid/setsid.c'; fi`

external/sh/sh-alias.o: external/sh/alias.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-alias.o -MD -MP -MF external/sh/$(DEPDIR)/sh-alias.Tpo -c -o external/sh/sh-alias.o `test -f 'external/sh/alias.c' || echo '$(srcdir)/'`external/sh/alias.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-alias.Tpo external/sh/$(DEPDIR)/sh-alias.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/alias.c' object='external/sh/sh-alias.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-alias.o `test -f 'external/sh/alias.c' || echo '$(srcdir)/'`external/sh/alias.c

external/sh/sh-alias.obj: external/sh/alias.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-alias.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-alias.Tpo -c -o external/sh/sh-alias.obj `if test -f 'external/sh/alias.c'; then $(CYGPATH_W) 'external/sh/alias.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/alias.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-alias.Tpo external/sh/$(DEPDIR)/sh-alias.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/alias.c' object='external/sh/sh-alias.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-alias.obj `if test -f 'external/sh/alias.c'; then $(CYGPATH_W) 'external/sh/alias.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/alias.c'; fi`

external/sh/sh-arith_yacc.o: external/sh/arith_yacc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-arith_yacc.o -MD -MP -MF external/sh/$(DEPDIR)/sh-arith_yacc.Tpo -c -o external/sh/sh-arith_yacc.o `test -f 'external/sh/arith_yacc.c' || echo '$(srcdir)/'`external/sh/arith_yacc.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-arith_yacc.Tpo external/sh/$(DEPDIR)/sh-arith_yacc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/arith_yacc.c' object='external/sh/sh-arith_yacc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-arith_yacc.o `test -f 'external/sh/arith_yacc.c' || echo '$(srcdir)/'`external/sh/arith_yacc.c

external/sh/sh-arith_yacc.obj: external/sh/arith_yacc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-arith_yacc.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-arith_yacc.Tpo -c -o external/sh/sh-arith_yacc.obj `if test -f 'external/sh/arith_yacc.c'; then $(CYGPATH_W) 'external/sh/arith_yacc.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/arith_yacc.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-arith_yacc.Tpo external/sh/$(DEPDIR)/sh-arith_yacc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/arith_yacc.c' object='external/sh/sh-arith_yacc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-arith_yacc.obj `if test -f 'external/sh/arith_yacc.c'; then $(CYGPATH_W) 'external/sh/arith_yacc.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/arith_yacc.c'; fi`

external/sh/sh-arith_yylex.o: external/sh/arith_yylex.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-arith_yylex.o -MD -MP -MF external/sh/$(DEPDIR)/sh-arith_yylex.Tpo -c -o external/sh/sh-arith_yylex.o `test -f 'external/sh/arith_yylex.c' || echo '$(srcdir)/'`external/sh/arith_yylex.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-arith_yylex.Tpo external/sh/$(DEPDIR)/sh-arith_yylex.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/arith_yylex.c' object='external/sh/sh-arith_yylex.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-arith_yylex.o `test -f 'external/sh/arith_yylex.c' || echo '$(srcdir)/'`external/sh/arith_yylex.c

external/sh/sh-arith_yylex.obj: external/sh/arith_yylex.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-arith_yylex.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-arith_yylex.Tpo -c -o external/sh/sh-arith_yylex.obj `if test -f 'external/sh/arith_yylex.c'; then $(CYGPATH_W) 'external/sh/arith_yylex.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/arith_yylex.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-arith_yylex.Tpo external/sh/$(DEPDIR)/sh-arith_yylex.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/arith_yylex.c' object='external/sh/sh-arith_yylex.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-arith_yylex.obj `if test -f 'external/sh/arith_yylex.c'; then $(CYGPATH_W) 'external/sh/arith_yylex.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/arith_yylex.c'; fi`

external/sh/bltin/sh-echo.o: external/sh/bltin/echo.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/bltin/sh-echo.o -MD -MP -MF external/sh/bltin/$(DEPDIR)/sh-echo.Tpo -c -o external/sh/bltin/sh-echo.o `test -f 'external/sh/bltin/echo.c' || echo '$(srcdir)/'`external/sh/bltin/echo.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/bltin/$(DEPDIR)/sh-echo.Tpo external/sh/bltin/$(DEPDIR)/sh-echo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/bltin/echo.c' object='external/sh/bltin/sh-echo.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/bltin/sh-echo.o `test -f 'external/sh/bltin/echo.c' || echo '$(srcdir)/'`external/sh/bltin/echo.c

external/sh/bltin/sh-echo.obj: external/sh/bltin/echo.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/bltin/sh-echo.obj -MD -MP -MF external/sh/bltin/$(DEPDIR)/sh-echo.Tpo -c -o external/sh/bltin/sh-echo.obj `if test -f 'external/sh/bltin/echo.c'; then $(CYGPATH_W) 'external/sh/bltin/echo.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/bltin/echo.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/bltin/$(DEPDIR)/sh-echo.Tpo external/sh/bltin/$(DEPDIR)/sh-echo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/bltin/echo.c' object='external/sh/bltin/sh-echo.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/bltin/sh-echo.obj `if test -f 'external/sh/bltin/echo.c'; then $(CYGPATH_W) 'external/sh/bltin/echo.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/bltin/echo.c'; fi`

external/sh/sh-cd.o: external/sh/cd.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-cd.o -MD -MP -MF external/sh/$(DEPDIR)/sh-cd.Tpo -c -o external/sh/sh-cd.o `test -f 'external/sh/cd.c' || echo '$(srcdir)/'`external/sh/cd.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-cd.Tpo external/sh/$(DEPDIR)/sh-cd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/cd.c' object='external/sh/sh-cd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-cd.o `test -f 'external/sh/cd.c' || echo '$(srcdir)/'`external/sh/cd.c

external/sh/sh-cd.obj: external/sh/cd.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-cd.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-cd.Tpo -c -o external/sh/sh-cd.obj `if test -f 'external/sh/cd.c'; then $(CYGPATH_W) 'external/sh/cd.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/cd.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-cd.Tpo external/sh/$(DEPDIR)/sh-cd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/cd.c' object='external/sh/sh-cd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-cd.obj `if test -f 'external/sh/cd.c'; then $(CYGPATH_W) 'external/sh/cd.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/cd.c'; fi`

external/sh/sh-error.o: external/sh/error.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-error.o -MD -MP -MF external/sh/$(DEPDIR)/sh-error.Tpo -c -o external/sh/sh-error.o `test -f 'external/sh/error.c' || echo '$(srcdir)/'`external/sh/error.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-error.Tpo external/sh/$(DEPDIR)/sh-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/error.c' object='external/sh/sh-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-error.o `test -f 'external/sh/error.c' || echo '$(srcdir)/'`external/sh/error.c

external/sh/sh-error.obj: external/sh/error.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-error.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-error.Tpo -c -o external/sh/sh-error.obj `if test -f 'external/sh/error.c'; then $(CYGPATH_W) 'external/sh/error.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/error.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-error.Tpo external/sh/$(DEPDIR)/sh-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/error.c' object='external/sh/sh-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-error.obj `if test -f 'external/sh/error.c'; then $(CYGPATH_W) 'external/sh/error.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/error.c'; fi`

external/sh/sh-eval.o: external/sh/eval.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-eval.o -MD -MP -MF external/sh/$(DEPDIR)/sh-eval.Tpo -c -o external/sh/sh-eval.o `test -f 'external/sh/eval.c' || echo '$(srcdir)/'`external/sh/eval.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-eval.Tpo external/sh/$(DEPDIR)/sh-eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/eval.c' object='external/sh/sh-eval.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-eval.o `test -f 'external/sh/eval.c' || echo '$(srcdir)/'`external/sh/eval.c

external/sh/sh-eval.obj: external/sh/eval.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-eval.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-eval.Tpo -c -o external/sh/sh-eval.obj `if test -f 'external/sh/eval.c'; then $(CYGPATH_W) 'external/sh/eval.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/eval.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-eval.Tpo external/sh/$(DEPDIR)/sh-eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/eval.c' object='external/sh/sh-eval.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-eval.obj `if test -f 'external/sh/eval.c'; then $(CYGPATH_W) 'external/sh/eval.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/eval.c'; fi`

external/sh/sh-exec.o: external/sh/exec.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-exec.o -MD -MP -MF external/sh/$(DEPDIR)/sh-exec.Tpo -c -o external/sh/sh-exec.o `test -f 'external/sh/exec.c' || echo '$(srcdir)/'`external/sh/exec.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-exec.Tpo external/sh/$(DEPDIR)/sh-exec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/exec.c' object='external/sh/sh-exec.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-exec.o `test -f 'external/sh/exec.c' || echo '$(srcdir)/'`external/sh/exec.c

external/sh/sh-exec.obj: external/sh/exec.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-exec.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-exec.Tpo -c -o external/sh/sh-exec.obj `if test -f 'external/sh/exec.c'; then $(CYGPATH_W) 'external/sh/exec.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/exec.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-exec.Tpo external/sh/$(DEPDIR)/sh-exec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/exec.c' object='external/sh/sh-exec.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-exec.obj `if test -f 'external/sh/exec.c'; then $(CYGPATH_W) 'external/sh/exec.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/exec.c'; fi`

external/sh/sh-expand.o: external/sh/expand.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-expand.o -MD -MP -MF external/sh/$(DEPDIR)/sh-expand.Tpo -c -o external/sh/sh-expand.o `test -f 'external/sh/expand.c' || echo '$(srcdir)/'`external/sh/expand.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-expand.Tpo external/sh/$(DEPDIR)/sh-expand.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/expand.c' object='external/sh/sh-expand.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-expand.o `test -f 'external/sh/expand.c' || echo '$(srcdir)/'`external/sh/expand.c

external/sh/sh-expand.obj: external/sh/expand.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-expand.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-expand.Tpo -c -o external/sh/sh-expand.obj `if test -f 'external/sh/expand.c'; then $(CYGPATH_W) 'external/sh/expand.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/expand.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-expand.Tpo external/sh/$(DEPDIR)/sh-expand.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/expand.c' object='external/sh/sh-expand.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-expand.obj `if test -f 'external/sh/expand.c'; then $(CYGPATH_W) 'external/sh/expand.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/expand.c'; fi`

external/sh/sh-histedit.o: external/sh/histedit.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-histedit.o -MD -MP -MF external/sh/$(DEPDIR)/sh-histedit.Tpo -c -o external/sh/sh-histedit.o `test -f 'external/sh/histedit.c' || echo '$(srcdir)/'`external/sh/histedit.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-histedit.Tpo external/sh/$(DEPDIR)/sh-histedit.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/histedit.c' object='external/sh/sh-histedit.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-histedit.o `test -f 'external/sh/histedit.c' || echo '$(srcdir)/'`external/sh/histedit.c

external/sh/sh-histedit.obj: external/sh/histedit.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-histedit.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-histedit.Tpo -c -o external/sh/sh-histedit.obj `if test -f 'external/sh/histedit.c'; then $(CYGPATH_W) 'external/sh/histedit.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/histedit.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-histedit.Tpo external/sh/$(DEPDIR)/sh-histedit.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/histedit.c' object='external/sh/sh-histedit.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-histedit.obj `if test -f 'external/sh/histedit.c'; then $(CYGPATH_W) 'external/sh/histedit.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/histedit.c'; fi`

external/sh/sh-input.o: external/sh/input.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-input.o -MD -MP -MF external/sh/$(DEPDIR)/sh-input.Tpo -c -o external/sh/sh-input.o `test -f 'external/sh/input.c' || echo '$(srcdir)/'`external/sh/input.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-input.Tpo external/sh/$(DEPDIR)/sh-input.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/input.c' object='external/sh/sh-input.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-input.o `test -f 'external/sh/input.c' || echo '$(srcdir)/'`external/sh/input.c

external/sh/sh-input.obj: external/sh/input.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-input.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-input.Tpo -c -o external/sh/sh-input.obj `if test -f 'external/sh/input.c'; then $(CYGPATH_W) 'external/sh/input.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/input.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-input.Tpo external/sh/$(DEPDIR)/sh-input.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/input.c' object='external/sh/sh-input.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-input.obj `if test -f 'external/sh/input.c'; then $(CYGPATH_W) 'external/sh/input.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/input.c'; fi`

external/sh/sh-jobs.o: external/sh/jobs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-jobs.o -MD -MP -MF external/sh/$(DEPDIR)/sh-jobs.Tpo -c -o external/sh/sh-jobs.o `test -f 'external/sh/jobs.c' || echo '$(srcdir)/'`external/sh/jobs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-jobs.Tpo external/sh/$(DEPDIR)/sh-jobs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/jobs.c' object='external/sh/sh-jobs.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-jobs.o `test -f 'external/sh/jobs.c' || echo '$(srcdir)/'`external/sh/jobs.c

external/sh/sh-jobs.obj: external/sh/jobs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-jobs.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-jobs.Tpo -c -o external/sh/sh-jobs.obj `if test -f 'external/sh/jobs.c'; then $(CYGPATH_W) 'external/sh/jobs.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/jobs.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-jobs.Tpo external/sh/$(DEPDIR)/sh-jobs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/jobs.c' object='external/sh/sh-jobs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-jobs.obj `if test -f 'external/sh/jobs.c'; then $(CYGPATH_W) 'external/sh/jobs.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/jobs.c'; fi`

external/sh/sh-kill.o: external/sh/kill.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-kill.o -MD -MP -MF external/sh/$(DEPDIR)/sh-kill.Tpo -c -o external/sh/sh-kill.o `test -f 'external/sh/kill.c' || echo '$(srcdir)/'`external/sh/kill.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-kill.Tpo external/sh/$(DEPDIR)/sh-kill.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/kill.c' object='external/sh/sh-kill.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-kill.o `test -f 'external/sh/kill.c' || echo '$(srcdir)/'`external/sh/kill.c

external/sh/sh-kill.obj: external/sh/kill.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-kill.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-kill.Tpo -c -o external/sh/sh-kill.obj `if test -f 'external/sh/kill.c'; then $(CYGPATH_W) 'external/sh/kill.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/kill.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-kill.Tpo external/sh/$(DEPDIR)/sh-kill.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/kill.c' object='external/sh/sh-kill.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-kill.obj `if test -f 'external/sh/kill.c'; then $(CYGPATH_W) 'external/sh/kill.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/kill.c'; fi`

external/sh/sh-mail.o: external/sh/mail.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-mail.o -MD -MP -MF external/sh/$(DEPDIR)/sh-mail.Tpo -c -o external/sh/sh-mail.o `test -f 'external/sh/mail.c' || echo '$(srcdir)/'`external/sh/mail.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-mail.Tpo external/sh/$(DEPDIR)/sh-mail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/mail.c' object='external/sh/sh-mail.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-mail.o `test -f 'external/sh/mail.c' || echo '$(srcdir)/'`external/sh/mail.c

external/sh/sh-mail.obj: external/sh/mail.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-mail.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-mail.Tpo -c -o external/sh/sh-mail.obj `if test -f 'external/sh/mail.c'; then $(CYGPATH_W) 'external/sh/mail.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/mail.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-mail.Tpo external/sh/$(DEPDIR)/sh-mail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/mail.c' object='external/sh/sh-mail.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-mail.obj `if test -f 'external/sh/mail.c'; then $(CYGPATH_W) 'external/sh/mail.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/mail.c'; fi`

external/sh/sh-main.o: external/sh/main.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-main.o -MD -MP -MF external/sh/$(DEPDIR)/sh-main.Tpo -c -o external/sh/sh-main.o `test -f 'external/sh/main.c' || echo '$(srcdir)/'`external/sh/main.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-main.Tpo external/sh/$(DEPDIR)/sh-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/main.c' object='external/sh/sh-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-main.o `test -f 'external/sh/main.c' || echo '$(srcdir)/'`external/sh/main.c

external/sh/sh-main.obj: external/sh/main.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-main.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-main.Tpo -c -o external/sh/sh-main.obj `if test -f 'external/sh/main.c'; then $(CYGPATH_W) 'external/sh/main.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/main.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-main.Tpo external/sh/$(DEPDIR)/sh-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/main.c' object='external/sh/sh-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-main.obj `if test -f 'external/sh/main.c'; then $(CYGPATH_W) 'external/sh/main.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/main.c'; fi`

external/sh/sh-memalloc.o: external/sh/memalloc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-memalloc.o -MD -MP -MF external/sh/$(DEPDIR)/sh-memalloc.Tpo -c -o external/sh/sh-memalloc.o `test -f 'external/sh/memalloc.c' || echo '$(srcdir)/'`external/sh/memalloc.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-memalloc.Tpo external/sh/$(DEPDIR)/sh-memalloc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/memalloc.c' object='external/sh/sh-memalloc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-memalloc.o `test -f 'external/sh/memalloc.c' || echo '$(srcdir)/'`external/sh/memalloc.c

external/sh/sh-memalloc.obj: external/sh/memalloc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-memalloc.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-memalloc.Tpo -c -o external/sh/sh-memalloc.obj `if test -f 'external/sh/memalloc.c'; then $(CYGPATH_W) 'external/sh/memalloc.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/memalloc.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-memalloc.Tpo external/sh/$(DEPDIR)/sh-memalloc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/memalloc.c' object='external/sh/sh-memalloc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-memalloc.obj `if test -f 'external/sh/memalloc.c'; then $(CYGPATH_W) 'external/sh/memalloc.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/memalloc.c'; fi`

external/sh/sh-miscbltin.o: external/sh/miscbltin.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-miscbltin.o -MD -MP -MF external/sh/$(DEPDIR)/sh-miscbltin.Tpo -c -o external/sh/sh-miscbltin.o `test -f 'external/sh/miscbltin.c' || echo '$(srcdir)/'`external/sh/miscbltin.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-miscbltin.Tpo external/sh/$(DEPDIR)/sh-miscbltin.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/miscbltin.c' object='external/sh/sh-miscbltin.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-miscbltin.o `test -f 'external/sh/miscbltin.c' || echo '$(srcdir)/'`external/sh/miscbltin.c

external/sh/sh-miscbltin.obj: external/sh/miscbltin.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-miscbltin.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-miscbltin.Tpo -c -o external/sh/sh-miscbltin.obj `if test -f 'external/sh/miscbltin.c'; then $(CYGPATH_W) 'external/sh/miscbltin.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/miscbltin.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-miscbltin.Tpo external/sh/$(DEPDIR)/sh-miscbltin.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/miscbltin.c' object='external/sh/sh-miscbltin.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-miscbltin.obj `if test -f 'external/sh/miscbltin.c'; then $(CYGPATH_W) 'external/sh/miscbltin.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/miscbltin.c'; fi`

external/sh/sh-mystring.o: external/sh/mystring.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-mystring.o -MD -MP -MF external/sh/$(DEPDIR)/sh-mystring.Tpo -c -o external/sh/sh-mystring.o `test -f 'external/sh/mystring.c' || echo '$(srcdir)/'`external/sh/mystring.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-mystring.Tpo external/sh/$(DEPDIR)/sh-mystring.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/mystring.c' object='external/sh/sh-mystring.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-mystring.o `test -f 'external/sh/mystring.c' || echo '$(srcdir)/'`external/sh/mystring.c

external/sh/sh-mystring.obj: external/sh/mystring.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-mystring.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-mystring.Tpo -c -o external/sh/sh-mystring.obj `if test -f 'external/sh/mystring.c'; then $(CYGPATH_W) 'external/sh/mystring.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/mystring.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-mystring.Tpo external/sh/$(DEPDIR)/sh-mystring.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/mystring.c' object='external/sh/sh-mystring.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-mystring.obj `if test -f 'external/sh/mystring.c'; then $(CYGPATH_W) 'external/sh/mystring.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/mystring.c'; fi`

external/sh/sh-nodes.o: external/sh/nodes.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-nodes.o -MD -MP -MF external/sh/$(DEPDIR)/sh-nodes.Tpo -c -o external/sh/sh-nodes.o `test -f 'external/sh/nodes.c' || echo '$(srcdir)/'`external/sh/nodes.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-nodes.Tpo external/sh/$(DEPDIR)/sh-nodes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/nodes.c' object='external/sh/sh-nodes.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-nodes.o `test -f 'external/sh/nodes.c' || echo '$(srcdir)/'`external/sh/nodes.c

external/sh/sh-nodes.obj: external/sh/nodes.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-nodes.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-nodes.Tpo -c -o external/sh/sh-nodes.obj `if test -f 'external/sh/nodes.c'; then $(CYGPATH_W) 'external/sh/nodes.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/nodes.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-nodes.Tpo external/sh/$(DEPDIR)/sh-nodes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/nodes.c' object='external/sh/sh-nodes.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-nodes.obj `if test -f 'external/sh/nodes.c'; then $(CYGPATH_W) 'external/sh/nodes.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/nodes.c'; fi`

external/sh/sh-options.o: external/sh/options.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-options.o -MD -MP -MF external/sh/$(DEPDIR)/sh-options.Tpo -c -o external/sh/sh-options.o `test -f 'external/sh/options.c' || echo '$(srcdir)/'`external/sh/options.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-options.Tpo external/sh/$(DEPDIR)/sh-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/options.c' object='external/sh/sh-options.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-options.o `test -f 'external/sh/options.c' || echo '$(srcdir)/'`external/sh/options.c

external/sh/sh-options.obj: external/sh/options.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-options.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-options.Tpo -c -o external/sh/sh-options.obj `if test -f 'external/sh/options.c'; then $(CYGPATH_W) 'external/sh/options.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/options.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-options.Tpo external/sh/$(DEPDIR)/sh-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/options.c' object='external/sh/sh-options.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-options.obj `if test -f 'external/sh/options.c'; then $(CYGPATH_W) 'external/sh/options.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/options.c'; fi`

external/sh/sh-output.o: external/sh/output.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-output.o -MD -MP -MF external/sh/$(DEPDIR)/sh-output.Tpo -c -o external/sh/sh-output.o `test -f 'external/sh/output.c' || echo '$(srcdir)/'`external/sh/output.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-output.Tpo external/sh/$(DEPDIR)/sh-output.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/output.c' object='external/sh/sh-output.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-output.o `test -f 'external/sh/output.c' || echo '$(srcdir)/'`external/sh/output.c

external/sh/sh-output.obj: external/sh/output.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-output.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-output.Tpo -c -o external/sh/sh-output.obj `if test -f 'external/sh/output.c'; then $(CYGPATH_W) 'external/sh/output.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/output.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-output.Tpo external/sh/$(DEPDIR)/sh-output.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/output.c' object='external/sh/sh-output.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-output.obj `if test -f 'external/sh/output.c'; then $(CYGPATH_W) 'external/sh/output.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/output.c'; fi`

external/sh/sh-parser.o: external/sh/parser.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-parser.o -MD -MP -MF external/sh/$(DEPDIR)/sh-parser.Tpo -c -o external/sh/sh-parser.o `test -f 'external/sh/parser.c' || echo '$(srcdir)/'`external/sh/parser.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-parser.Tpo external/sh/$(DEPDIR)/sh-parser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/parser.c' object='external/sh/sh-parser.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-parser.o `test -f 'external/sh/parser.c' || echo '$(srcdir)/'`external/sh/parser.c

external/sh/sh-parser.obj: external/sh/parser.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-parser.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-parser.Tpo -c -o external/sh/sh-parser.obj `if test -f 'external/sh/parser.c'; then $(CYGPATH_W) 'external/sh/parser.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/parser.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-parser.Tpo external/sh/$(DEPDIR)/sh-parser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/parser.c' object='external/sh/sh-parser.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-parser.obj `if test -f 'external/sh/parser.c'; then $(CYGPATH_W) 'external/sh/parser.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/parser.c'; fi`

external/sh/sh-printf.o: external/sh/printf.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-printf.o -MD -MP -MF external/sh/$(DEPDIR)/sh-printf.Tpo -c -o external/sh/sh-printf.o `test -f 'external/sh/printf.c' || echo '$(srcdir)/'`external/sh/printf.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-printf.Tpo external/sh/$(DEPDIR)/sh-printf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/printf.c' object='external/sh/sh-printf.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-printf.o `test -f 'external/sh/printf.c' || echo '$(srcdir)/'`external/sh/printf.c

external/sh/sh-printf.obj: external/sh/printf.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-printf.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-printf.Tpo -c -o external/sh/sh-printf.obj `if test -f 'external/sh/printf.c'; then $(CYGPATH_W) 'external/sh/printf.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/printf.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-printf.Tpo external/sh/$(DEPDIR)/sh-printf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/printf.c' object='external/sh/sh-printf.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-printf.obj `if test -f 'external/sh/printf.c'; then $(CYGPATH_W) 'external/sh/printf.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/printf.c'; fi`

external/sh/sh-redir.o: external/sh/redir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-redir.o -MD -MP -MF external/sh/$(DEPDIR)/sh-redir.Tpo -c -o external/sh/sh-redir.o `test -f 'external/sh/redir.c' || echo '$(srcdir)/'`external/sh/redir.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-redir.Tpo external/sh/$(DEPDIR)/sh-redir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/redir.c' object='external/sh/sh-redir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-redir.o `test -f 'external/sh/redir.c' || echo '$(srcdir)/'`external/sh/redir.c

external/sh/sh-redir.obj: external/sh/redir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-redir.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-redir.Tpo -c -o external/sh/sh-redir.obj `if test -f 'external/sh/redir.c'; then $(CYGPATH_W) 'external/sh/redir.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/redir.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-redir.Tpo external/sh/$(DEPDIR)/sh-redir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/redir.c' object='external/sh/sh-redir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-redir.obj `if test -f 'external/sh/redir.c'; then $(CYGPATH_W) 'external/sh/redir.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/redir.c'; fi`

external/sh/sh-show.o: external/sh/show.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-show.o -MD -MP -MF external/sh/$(DEPDIR)/sh-show.Tpo -c -o external/sh/sh-show.o `test -f 'external/sh/show.c' || echo '$(srcdir)/'`external/sh/show.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-show.Tpo external/sh/$(DEPDIR)/sh-show.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/show.c' object='external/sh/sh-show.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-show.o `test -f 'external/sh/show.c' || echo '$(srcdir)/'`external/sh/show.c

external/sh/sh-show.obj: external/sh/show.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-show.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-show.Tpo -c -o external/sh/sh-show.obj `if test -f 'external/sh/show.c'; then $(CYGPATH_W) 'external/sh/show.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/show.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-show.Tpo external/sh/$(DEPDIR)/sh-show.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/show.c' object='external/sh/sh-show.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-show.obj `if test -f 'external/sh/show.c'; then $(CYGPATH_W) 'external/sh/show.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/show.c'; fi`

external/sh/sh-syntax.o: external/sh/syntax.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-syntax.o -MD -MP -MF external/sh/$(DEPDIR)/sh-syntax.Tpo -c -o external/sh/sh-syntax.o `test -f 'external/sh/syntax.c' || echo '$(srcdir)/'`external/sh/syntax.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-syntax.Tpo external/sh/$(DEPDIR)/sh-syntax.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/syntax.c' object='external/sh/sh-syntax.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-syntax.o `test -f 'external/sh/syntax.c' || echo '$(srcdir)/'`external/sh/syntax.c

external/sh/sh-syntax.obj: external/sh/syntax.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-syntax.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-syntax.Tpo -c -o external/sh/sh-syntax.obj `if test -f 'external/sh/syntax.c'; then $(CYGPATH_W) 'external/sh/syntax.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/syntax.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-syntax.Tpo external/sh/$(DEPDIR)/sh-syntax.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/syntax.c' object='external/sh/sh-syntax.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-syntax.obj `if test -f 'external/sh/syntax.c'; then $(CYGPATH_W) 'external/sh/syntax.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/syntax.c'; fi`

external/sh/sh-test.o: external/sh/test.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-test.o -MD -MP -MF external/sh/$(DEPDIR)/sh-test.Tpo -c -o external/sh/sh-test.o `test -f 'external/sh/test.c' || echo '$(srcdir)/'`external/sh/test.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-test.Tpo external/sh/$(DEPDIR)/sh-test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/test.c' object='external/sh/sh-test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-test.o `test -f 'external/sh/test.c' || echo '$(srcdir)/'`external/sh/test.c

external/sh/sh-test.obj: external/sh/test.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-test.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-test.Tpo -c -o external/sh/sh-test.obj `if test -f 'external/sh/test.c'; then $(CYGPATH_W) 'external/sh/test.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/test.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-test.Tpo external/sh/$(DEPDIR)/sh-test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/test.c' object='external/sh/sh-test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-test.obj `if test -f 'external/sh/test.c'; then $(CYGPATH_W) 'external/sh/test.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/test.c'; fi`

external/sh/sh-trap.o: external/sh/trap.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-trap.o -MD -MP -MF external/sh/$(DEPDIR)/sh-trap.Tpo -c -o external/sh/sh-trap.o `test -f 'external/sh/trap.c' || echo '$(srcdir)/'`external/sh/trap.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-trap.Tpo external/sh/$(DEPDIR)/sh-trap.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/trap.c' object='external/sh/sh-trap.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-trap.o `test -f 'external/sh/trap.c' || echo '$(srcdir)/'`external/sh/trap.c

external/sh/sh-trap.obj: external/sh/trap.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-trap.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-trap.Tpo -c -o external/sh/sh-trap.obj `if test -f 'external/sh/trap.c'; then $(CYGPATH_W) 'external/sh/trap.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/trap.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-trap.Tpo external/sh/$(DEPDIR)/sh-trap.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/trap.c' object='external/sh/sh-trap.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-trap.obj `if test -f 'external/sh/trap.c'; then $(CYGPATH_W) 'external/sh/trap.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/trap.c'; fi`

external/sh/sh-var.o: external/sh/var.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-var.o -MD -MP -MF external/sh/$(DEPDIR)/sh-var.Tpo -c -o external/sh/sh-var.o `test -f 'external/sh/var.c' || echo '$(srcdir)/'`external/sh/var.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-var.Tpo external/sh/$(DEPDIR)/sh-var.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/var.c' object='external/sh/sh-var.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-var.o `test -f 'external/sh/var.c' || echo '$(srcdir)/'`external/sh/var.c

external/sh/sh-var.obj: external/sh/var.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh/sh-var.obj -MD -MP -MF external/sh/$(DEPDIR)/sh-var.Tpo -c -o external/sh/sh-var.obj `if test -f 'external/sh/var.c'; then $(CYGPATH_W) 'external/sh/var.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/var.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh/$(DEPDIR)/sh-var.Tpo external/sh/$(DEPDIR)/sh-var.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh/var.c' object='external/sh/sh-var.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh/sh-var.obj `if test -f 'external/sh/var.c'; then $(CYGPATH_W) 'external/sh/var.c'; else $(CYGPATH_W) '$(srcdir)/external/sh/var.c'; fi`

external/sh_compat/sh-strchrnul.o: external/sh_compat/strchrnul.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh_compat/sh-strchrnul.o -MD -MP -MF external/sh_compat/$(DEPDIR)/sh-strchrnul.Tpo -c -o external/sh_compat/sh-strchrnul.o `test -f 'external/sh_compat/strchrnul.c' || echo '$(srcdir)/'`external/sh_compat/strchrnul.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh_compat/$(DEPDIR)/sh-strchrnul.Tpo external/sh_compat/$(DEPDIR)/sh-strchrnul.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh_compat/strchrnul.c' object='external/sh_compat/sh-strchrnul.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh_compat/sh-strchrnul.o `test -f 'external/sh_compat/strchrnul.c' || echo '$(srcdir)/'`external/sh_compat/strchrnul.c

external/sh_compat/sh-strchrnul.obj: external/sh_compat/strchrnul.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh_compat/sh-strchrnul.obj -MD -MP -MF external/sh_compat/$(DEPDIR)/sh-strchrnul.Tpo -c -o external/sh_compat/sh-strchrnul.obj `if test -f 'external/sh_compat/strchrnul.c'; then $(CYGPATH_W) 'external/sh_compat/strchrnul.c'; else $(CYGPATH_W) '$(srcdir)/external/sh_compat/strchrnul.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh_compat/$(DEPDIR)/sh-strchrnul.Tpo external/sh_compat/$(DEPDIR)/sh-strchrnul.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh_compat/strchrnul.c' object='external/sh_compat/sh-strchrnul.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh_compat/sh-strchrnul.obj `if test -f 'external/sh_compat/strchrnul.c'; then $(CYGPATH_W) 'external/sh_compat/strchrnul.c'; else $(CYGPATH_W) '$(srcdir)/external/sh_compat/strchrnul.c'; fi`

external/sh_compat/sh-utimensat.o: external/sh_compat/utimensat.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh_compat/sh-utimensat.o -MD -MP -MF external/sh_compat/$(DEPDIR)/sh-utimensat.Tpo -c -o external/sh_compat/sh-utimensat.o `test -f 'external/sh_compat/utimensat.c' || echo '$(srcdir)/'`external/sh_compat/utimensat.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh_compat/$(DEPDIR)/sh-utimensat.Tpo external/sh_compat/$(DEPDIR)/sh-utimensat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh_compat/utimensat.c' object='external/sh_compat/sh-utimensat.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh_compat/sh-utimensat.o `test -f 'external/sh_compat/utimensat.c' || echo '$(srcdir)/'`external/sh_compat/utimensat.c

external/sh_compat/sh-utimensat.obj: external/sh_compat/utimensat.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT external/sh_compat/sh-utimensat.obj -MD -MP -MF external/sh_compat/$(DEPDIR)/sh-utimensat.Tpo -c -o external/sh_compat/sh-utimensat.obj `if test -f 'external/sh_compat/utimensat.c'; then $(CYGPATH_W) 'external/sh_compat/utimensat.c'; else $(CYGPATH_W) '$(srcdir)/external/sh_compat/utimensat.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) external/sh_compat/$(DEPDIR)/sh-utimensat.Tpo external/sh_compat/$(DEPDIR)/sh-utimensat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='external/sh_compat/utimensat.c' object='external/sh_compat/sh-utimensat.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o external/sh_compat/sh-utimensat.obj `if test -f 'external/sh_compat/utimensat.c'; then $(CYGPATH_W) 'external/sh_compat/utimensat.c'; else $(CYGPATH_W) '$(srcdir)/external/sh_compat/utimensat.c'; fi`

src/libexec/poudriere/clock/sh-clock.o: src/libexec/poudriere/clock/clock.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/clock/sh-clock.o -MD -MP -MF src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Tpo -c -o src/libexec/poudriere/clock/sh-clock.o `test -f 'src/libexec/poudriere/clock/clock.c' || echo '$(srcdir)/'`src/libexec/poudriere/clock/clock.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Tpo src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/clock/clock.c' object='src/libexec/poudriere/clock/sh-clock.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/clock/sh-clock.o `test -f 'src/libexec/poudriere/clock/clock.c' || echo '$(srcdir)/'`src/libexec/poudriere/clock/clock.c

src/libexec/poudriere/clock/sh-clock.obj: src/libexec/poudriere/clock/clock.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/clock/sh-clock.obj -MD -MP -MF src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Tpo -c -o src/libexec/poudriere/clock/sh-clock.obj `if test -f 'src/libexec/poudriere/clock/clock.c'; then $(CYGPATH_W) 'src/libexec/poudriere/clock/clock.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/clock/clock.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Tpo src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/clock/clock.c' object='src/libexec/poudriere/clock/sh-clock.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/clock/sh-clock.obj `if test -f 'src/libexec/poudriere/clock/clock.c'; then $(CYGPATH_W) 'src/libexec/poudriere/clock/clock.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/clock/clock.c'; fi`

src/libexec/poudriere/dirempty/sh-dirempty.o: src/libexec/poudriere/dirempty/dirempty.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/dirempty/sh-dirempty.o -MD -MP -MF src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Tpo -c -o src/libexec/poudriere/dirempty/sh-dirempty.o `test -f 'src/libexec/poudriere/dirempty/dirempty.c' || echo '$(srcdir)/'`src/libexec/poudriere/dirempty/dirempty.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Tpo src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/dirempty/dirempty.c' object='src/libexec/poudriere/dirempty/sh-dirempty.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/dirempty/sh-dirempty.o `test -f 'src/libexec/poudriere/dirempty/dirempty.c' || echo '$(srcdir)/'`src/libexec/poudriere/dirempty/dirempty.c

src/libexec/poudriere/dirempty/sh-dirempty.obj: src/libexec/poudriere/dirempty/dirempty.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/dirempty/sh-dirempty.obj -MD -MP -MF src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Tpo -c -o src/libexec/poudriere/dirempty/sh-dirempty.obj `if test -f 'src/libexec/poudriere/dirempty/dirempty.c'; then $(CYGPATH_W) 'src/libexec/poudriere/dirempty/dirempty.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/dirempty/dirempty.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Tpo src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/dirempty/dirempty.c' object='src/libexec/poudriere/dirempty/sh-dirempty.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/dirempty/sh-dirempty.obj `if test -f 'src/libexec/poudriere/dirempty/dirempty.c'; then $(CYGPATH_W) 'src/libexec/poudriere/dirempty/dirempty.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/dirempty/dirempty.c'; fi`

src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.o: src/libexec/poudriere/locked_mkdir/locked_mkdir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.o -MD -MP -MF src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Tpo -c -o src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.o `test -f 'src/libexec/poudriere/locked_mkdir/locked_mkdir.c' || echo '$(srcdir)/'`src/libexec/poudriere/locked_mkdir/locked_mkdir.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Tpo src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/locked_mkdir/locked_mkdir.c' object='src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.o `test -f 'src/libexec/poudriere/locked_mkdir/locked_mkdir.c' || echo '$(srcdir)/'`src/libexec/poudriere/locked_mkdir/locked_mkdir.c

src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.obj: src/libexec/poudriere/locked_mkdir/locked_mkdir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.obj -MD -MP -MF src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Tpo -c -o src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.obj `if test -f 'src/libexec/poudriere/locked_mkdir/locked_mkdir.c'; then $(CYGPATH_W) 'src/libexec/poudriere/locked_mkdir/locked_mkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/locked_mkdir/locked_mkdir.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Tpo src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/locked_mkdir/locked_mkdir.c' object='src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/locked_mkdir/sh-locked_mkdir.obj `if test -f 'src/libexec/poudriere/locked_mkdir/locked_mkdir.c'; then $(CYGPATH_W) 'src/libexec/poudriere/locked_mkdir/locked_mkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/locked_mkdir/locked_mkdir.c'; fi`

src/libexec/poudriere/pwait/sh-pwait.o: src/libexec/poudriere/pwait/pwait.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/pwait/sh-pwait.o -MD -MP -MF src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Tpo -c -o src/libexec/poudriere/pwait/sh-pwait.o `test -f 'src/libexec/poudriere/pwait/pwait.c' || echo '$(srcdir)/'`src/libexec/poudriere/pwait/pwait.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Tpo src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/pwait/pwait.c' object='src/libexec/poudriere/pwait/sh-pwait.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/pwait/sh-pwait.o `test -f 'src/libexec/poudriere/pwait/pwait.c' || echo '$(srcdir)/'`src/libexec/poudriere/pwait/pwait.c

src/libexec/poudriere/pwait/sh-pwait.obj: src/libexec/poudriere/pwait/pwait.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/pwait/sh-pwait.obj -MD -MP -MF src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Tpo -c -o src/libexec/poudriere/pwait/sh-pwait.obj `if test -f 'src/libexec/poudriere/pwait/pwait.c'; then $(CYGPATH_W) 'src/libexec/poudriere/pwait/pwait.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/pwait/pwait.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Tpo src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/pwait/pwait.c' object='src/libexec/poudriere/pwait/sh-pwait.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/pwait/sh-pwait.obj `if test -f 'src/libexec/poudriere/pwait/pwait.c'; then $(CYGPATH_W) 'src/libexec/poudriere/pwait/pwait.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/pwait/pwait.c'; fi`

src/libexec/poudriere/rename/sh-rename.o: src/libexec/poudriere/rename/rename.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/rename/sh-rename.o -MD -MP -MF src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Tpo -c -o src/libexec/poudriere/rename/sh-rename.o `test -f 'src/libexec/poudriere/rename/rename.c' || echo '$(srcdir)/'`src/libexec/poudriere/rename/rename.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Tpo src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/rename/rename.c' object='src/libexec/poudriere/rename/sh-rename.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/rename/sh-rename.o `test -f 'src/libexec/poudriere/rename/rename.c' || echo '$(srcdir)/'`src/libexec/poudriere/rename/rename.c

src/libexec/poudriere/rename/sh-rename.obj: src/libexec/poudriere/rename/rename.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/rename/sh-rename.obj -MD -MP -MF src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Tpo -c -o src/libexec/poudriere/rename/sh-rename.obj `if test -f 'src/libexec/poudriere/rename/rename.c'; then $(CYGPATH_W) 'src/libexec/poudriere/rename/rename.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/rename/rename.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Tpo src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/rename/rename.c' object='src/libexec/poudriere/rename/sh-rename.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/rename/sh-rename.obj `if test -f 'src/libexec/poudriere/rename/rename.c'; then $(CYGPATH_W) 'src/libexec/poudriere/rename/rename.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/rename/rename.c'; fi`

src/libexec/poudriere/rm/sh-rm.o: src/libexec/poudriere/rm/rm.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/rm/sh-rm.o -MD -MP -MF src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Tpo -c -o src/libexec/poudriere/rm/sh-rm.o `test -f 'src/libexec/poudriere/rm/rm.c' || echo '$(srcdir)/'`src/libexec/poudriere/rm/rm.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Tpo src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/rm/rm.c' object='src/libexec/poudriere/rm/sh-rm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/rm/sh-rm.o `test -f 'src/libexec/poudriere/rm/rm.c' || echo '$(srcdir)/'`src/libexec/poudriere/rm/rm.c

src/libexec/poudriere/rm/sh-rm.obj: src/libexec/poudriere/rm/rm.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/libexec/poudriere/rm/sh-rm.obj -MD -MP -MF src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Tpo -c -o src/libexec/poudriere/rm/sh-rm.obj `if test -f 'src/libexec/poudriere/rm/rm.c'; then $(CYGPATH_W) 'src/libexec/poudriere/rm/rm.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/rm/rm.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Tpo src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/libexec/poudriere/rm/rm.c' object='src/libexec/poudriere/rm/sh-rm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/libexec/poudriere/rm/sh-rm.obj `if test -f 'src/libexec/poudriere/rm/rm.c'; then $(CYGPATH_W) 'src/libexec/poudriere/rm/rm.c'; else $(CYGPATH_W) '$(srcdir)/src/libexec/poudriere/rm/rm.c'; fi`

src/poudriere-sh/sh-helpers.o: src/poudriere-sh/helpers.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-helpers.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-helpers.Tpo -c -o src/poudriere-sh/sh-helpers.o `test -f 'src/poudriere-sh/helpers.c' || echo '$(srcdir)/'`src/poudriere-sh/helpers.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-helpers.Tpo src/poudriere-sh/$(DEPDIR)/sh-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/helpers.c' object='src/poudriere-sh/sh-helpers.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-helpers.o `test -f 'src/poudriere-sh/helpers.c' || echo '$(srcdir)/'`src/poudriere-sh/helpers.c

src/poudriere-sh/sh-helpers.obj: src/poudriere-sh/helpers.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-helpers.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-helpers.Tpo -c -o src/poudriere-sh/sh-helpers.obj `if test -f 'src/poudriere-sh/helpers.c'; then $(CYGPATH_W) 'src/poudriere-sh/helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/helpers.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-helpers.Tpo src/poudriere-sh/$(DEPDIR)/sh-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/helpers.c' object='src/poudriere-sh/sh-helpers.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-helpers.obj `if test -f 'src/poudriere-sh/helpers.c'; then $(CYGPATH_W) 'src/poudriere-sh/helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/helpers.c'; fi`

src/poudriere-sh/sh-mapfile.o: src/poudriere-sh/mapfile.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mapfile.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mapfile.Tpo -c -o src/poudriere-sh/sh-mapfile.o `test -f 'src/poudriere-sh/mapfile.c' || echo '$(srcdir)/'`src/poudriere-sh/mapfile.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mapfile.Tpo src/poudriere-sh/$(DEPDIR)/sh-mapfile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mapfile.c' object='src/poudriere-sh/sh-mapfile.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mapfile.o `test -f 'src/poudriere-sh/mapfile.c' || echo '$(srcdir)/'`src/poudriere-sh/mapfile.c

src/poudriere-sh/sh-mapfile.obj: src/poudriere-sh/mapfile.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mapfile.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mapfile.Tpo -c -o src/poudriere-sh/sh-mapfile.obj `if test -f 'src/poudriere-sh/mapfile.c'; then $(CYGPATH_W) 'src/poudriere-sh/mapfile.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mapfile.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mapfile.Tpo src/poudriere-sh/$(DEPDIR)/sh-mapfile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mapfile.c' object='src/poudriere-sh/sh-mapfile.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mapfile.obj `if test -f 'src/poudriere-sh/mapfile.c'; then $(CYGPATH_W) 'src/poudriere-sh/mapfile.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mapfile.c'; fi`

src/poudriere-sh/sh-mkdir.o: src/poudriere-sh/mkdir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mkdir.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mkdir.Tpo -c -o src/poudriere-sh/sh-mkdir.o `test -f 'src/poudriere-sh/mkdir.c' || echo '$(srcdir)/'`src/poudriere-sh/mkdir.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mkdir.Tpo src/poudriere-sh/$(DEPDIR)/sh-mkdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mkdir.c' object='src/poudriere-sh/sh-mkdir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mkdir.o `test -f 'src/poudriere-sh/mkdir.c' || echo '$(srcdir)/'`src/poudriere-sh/mkdir.c

src/poudriere-sh/sh-mkdir.obj: src/poudriere-sh/mkdir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mkdir.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mkdir.Tpo -c -o src/poudriere-sh/sh-mkdir.obj `if test -f 'src/poudriere-sh/mkdir.c'; then $(CYGPATH_W) 'src/poudriere-sh/mkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mkdir.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mkdir.Tpo src/poudriere-sh/$(DEPDIR)/sh-mkdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mkdir.c' object='src/poudriere-sh/sh-mkdir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mkdir.obj `if test -f 'src/poudriere-sh/mkdir.c'; then $(CYGPATH_W) 'src/poudriere-sh/mkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mkdir.c'; fi`

src/poudriere-sh/sh-mkfifo.o: src/poudriere-sh/mkfifo.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mkfifo.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Tpo -c -o src/poudriere-sh/sh-mkfifo.o `test -f 'src/poudriere-sh/mkfifo.c' || echo '$(srcdir)/'`src/poudriere-sh/mkfifo.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Tpo src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mkfifo.c' object='src/poudriere-sh/sh-mkfifo.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mkfifo.o `test -f 'src/poudriere-sh/mkfifo.c' || echo '$(srcdir)/'`src/poudriere-sh/mkfifo.c

src/poudriere-sh/sh-mkfifo.obj: src/poudriere-sh/mkfifo.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mkfifo.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Tpo -c -o src/poudriere-sh/sh-mkfifo.obj `if test -f 'src/poudriere-sh/mkfifo.c'; then $(CYGPATH_W) 'src/poudriere-sh/mkfifo.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mkfifo.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Tpo src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mkfifo.c' object='src/poudriere-sh/sh-mkfifo.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mkfifo.obj `if test -f 'src/poudriere-sh/mkfifo.c'; then $(CYGPATH_W) 'src/poudriere-sh/mkfifo.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mkfifo.c'; fi`

src/poudriere-sh/sh-mktemp.o: src/poudriere-sh/mktemp.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mktemp.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mktemp.Tpo -c -o src/poudriere-sh/sh-mktemp.o `test -f 'src/poudriere-sh/mktemp.c' || echo '$(srcdir)/'`src/poudriere-sh/mktemp.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mktemp.Tpo src/poudriere-sh/$(DEPDIR)/sh-mktemp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mktemp.c' object='src/poudriere-sh/sh-mktemp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mktemp.o `test -f 'src/poudriere-sh/mktemp.c' || echo '$(srcdir)/'`src/poudriere-sh/mktemp.c

src/poudriere-sh/sh-mktemp.obj: src/poudriere-sh/mktemp.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-mktemp.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-mktemp.Tpo -c -o src/poudriere-sh/sh-mktemp.obj `if test -f 'src/poudriere-sh/mktemp.c'; then $(CYGPATH_W) 'src/poudriere-sh/mktemp.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mktemp.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-mktemp.Tpo src/poudriere-sh/$(DEPDIR)/sh-mktemp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/mktemp.c' object='src/poudriere-sh/sh-mktemp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-mktemp.obj `if test -f 'src/poudriere-sh/mktemp.c'; then $(CYGPATH_W) 'src/poudriere-sh/mktemp.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/mktemp.c'; fi`

src/poudriere-sh/sh-realpath.o: src/poudriere-sh/realpath.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-realpath.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-realpath.Tpo -c -o src/poudriere-sh/sh-realpath.o `test -f 'src/poudriere-sh/realpath.c' || echo '$(srcdir)/'`src/poudriere-sh/realpath.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-realpath.Tpo src/poudriere-sh/$(DEPDIR)/sh-realpath.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/realpath.c' object='src/poudriere-sh/sh-realpath.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-realpath.o `test -f 'src/poudriere-sh/realpath.c' || echo '$(srcdir)/'`src/poudriere-sh/realpath.c

src/poudriere-sh/sh-realpath.obj: src/poudriere-sh/realpath.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-realpath.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-realpath.Tpo -c -o src/poudriere-sh/sh-realpath.obj `if test -f 'src/poudriere-sh/realpath.c'; then $(CYGPATH_W) 'src/poudriere-sh/realpath.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/realpath.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-realpath.Tpo src/poudriere-sh/$(DEPDIR)/sh-realpath.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/realpath.c' object='src/poudriere-sh/sh-realpath.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-realpath.obj `if test -f 'src/poudriere-sh/realpath.c'; then $(CYGPATH_W) 'src/poudriere-sh/realpath.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/realpath.c'; fi`

src/poudriere-sh/sh-rmdir.o: src/poudriere-sh/rmdir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-rmdir.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-rmdir.Tpo -c -o src/poudriere-sh/sh-rmdir.o `test -f 'src/poudriere-sh/rmdir.c' || echo '$(srcdir)/'`src/poudriere-sh/rmdir.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-rmdir.Tpo src/poudriere-sh/$(DEPDIR)/sh-rmdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/rmdir.c' object='src/poudriere-sh/sh-rmdir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-rmdir.o `test -f 'src/poudriere-sh/rmdir.c' || echo '$(srcdir)/'`src/poudriere-sh/rmdir.c

src/poudriere-sh/sh-rmdir.obj: src/poudriere-sh/rmdir.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-rmdir.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-rmdir.Tpo -c -o src/poudriere-sh/sh-rmdir.obj `if test -f 'src/poudriere-sh/rmdir.c'; then $(CYGPATH_W) 'src/poudriere-sh/rmdir.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/rmdir.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-rmdir.Tpo src/poudriere-sh/$(DEPDIR)/sh-rmdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/rmdir.c' object='src/poudriere-sh/sh-rmdir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-rmdir.obj `if test -f 'src/poudriere-sh/rmdir.c'; then $(CYGPATH_W) 'src/poudriere-sh/rmdir.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/rmdir.c'; fi`

src/poudriere-sh/sh-setproctitle.o: src/poudriere-sh/setproctitle.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-setproctitle.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Tpo -c -o src/poudriere-sh/sh-setproctitle.o `test -f 'src/poudriere-sh/setproctitle.c' || echo '$(srcdir)/'`src/poudriere-sh/setproctitle.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Tpo src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/setproctitle.c' object='src/poudriere-sh/sh-setproctitle.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-setproctitle.o `test -f 'src/poudriere-sh/setproctitle.c' || echo '$(srcdir)/'`src/poudriere-sh/setproctitle.c

src/poudriere-sh/sh-setproctitle.obj: src/poudriere-sh/setproctitle.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-setproctitle.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Tpo -c -o src/poudriere-sh/sh-setproctitle.obj `if test -f 'src/poudriere-sh/setproctitle.c'; then $(CYGPATH_W) 'src/poudriere-sh/setproctitle.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/setproctitle.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Tpo src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/setproctitle.c' object='src/poudriere-sh/sh-setproctitle.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-setproctitle.obj `if test -f 'src/poudriere-sh/setproctitle.c'; then $(CYGPATH_W) 'src/poudriere-sh/setproctitle.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/setproctitle.c'; fi`

src/poudriere-sh/sh-sleep.o: src/poudriere-sh/sleep.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-sleep.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-sleep.Tpo -c -o src/poudriere-sh/sh-sleep.o `test -f 'src/poudriere-sh/sleep.c' || echo '$(srcdir)/'`src/poudriere-sh/sleep.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-sleep.Tpo src/poudriere-sh/$(DEPDIR)/sh-sleep.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/sleep.c' object='src/poudriere-sh/sh-sleep.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-sleep.o `test -f 'src/poudriere-sh/sleep.c' || echo '$(srcdir)/'`src/poudriere-sh/sleep.c

src/poudriere-sh/sh-sleep.obj: src/poudriere-sh/sleep.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-sleep.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-sleep.Tpo -c -o src/poudriere-sh/sh-sleep.obj `if test -f 'src/poudriere-sh/sleep.c'; then $(CYGPATH_W) 'src/poudriere-sh/sleep.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/sleep.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-sleep.Tpo src/poudriere-sh/$(DEPDIR)/sh-sleep.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/sleep.c' object='src/poudriere-sh/sh-sleep.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-sleep.obj `if test -f 'src/poudriere-sh/sleep.c'; then $(CYGPATH_W) 'src/poudriere-sh/sleep.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/sleep.c'; fi`

src/poudriere-sh/sh-stat.o: src/poudriere-sh/stat.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-stat.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-stat.Tpo -c -o src/poudriere-sh/sh-stat.o `test -f 'src/poudriere-sh/stat.c' || echo '$(srcdir)/'`src/poudriere-sh/stat.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-stat.Tpo src/poudriere-sh/$(DEPDIR)/sh-stat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/stat.c' object='src/poudriere-sh/sh-stat.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-stat.o `test -f 'src/poudriere-sh/stat.c' || echo '$(srcdir)/'`src/poudriere-sh/stat.c

src/poudriere-sh/sh-stat.obj: src/poudriere-sh/stat.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-stat.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-stat.Tpo -c -o src/poudriere-sh/sh-stat.obj `if test -f 'src/poudriere-sh/stat.c'; then $(CYGPATH_W) 'src/poudriere-sh/stat.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/stat.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-stat.Tpo src/poudriere-sh/$(DEPDIR)/sh-stat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/stat.c' object='src/poudriere-sh/sh-stat.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-stat.obj `if test -f 'src/poudriere-sh/stat.c'; then $(CYGPATH_W) 'src/poudriere-sh/stat.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/stat.c'; fi`

src/poudriere-sh/sh-touch.o: src/poudriere-sh/touch.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-touch.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-touch.Tpo -c -o src/poudriere-sh/sh-touch.o `test -f 'src/poudriere-sh/touch.c' || echo '$(srcdir)/'`src/poudriere-sh/touch.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-touch.Tpo src/poudriere-sh/$(DEPDIR)/sh-touch.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/touch.c' object='src/poudriere-sh/sh-touch.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-touch.o `test -f 'src/poudriere-sh/touch.c' || echo '$(srcdir)/'`src/poudriere-sh/touch.c

src/poudriere-sh/sh-touch.obj: src/poudriere-sh/touch.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-touch.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-touch.Tpo -c -o src/poudriere-sh/sh-touch.obj `if test -f 'src/poudriere-sh/touch.c'; then $(CYGPATH_W) 'src/poudriere-sh/touch.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/touch.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-touch.Tpo src/poudriere-sh/$(DEPDIR)/sh-touch.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/touch.c' object='src/poudriere-sh/sh-touch.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-touch.obj `if test -f 'src/poudriere-sh/touch.c'; then $(CYGPATH_W) 'src/poudriere-sh/touch.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/touch.c'; fi`

src/poudriere-sh/sh-traps.o: src/poudriere-sh/traps.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-traps.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-traps.Tpo -c -o src/poudriere-sh/sh-traps.o `test -f 'src/poudriere-sh/traps.c' || echo '$(srcdir)/'`src/poudriere-sh/traps.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-traps.Tpo src/poudriere-sh/$(DEPDIR)/sh-traps.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/traps.c' object='src/poudriere-sh/sh-traps.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-traps.o `test -f 'src/poudriere-sh/traps.c' || echo '$(srcdir)/'`src/poudriere-sh/traps.c

src/poudriere-sh/sh-traps.obj: src/poudriere-sh/traps.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-traps.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-traps.Tpo -c -o src/poudriere-sh/sh-traps.obj `if test -f 'src/poudriere-sh/traps.c'; then $(CYGPATH_W) 'src/poudriere-sh/traps.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/traps.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-traps.Tpo src/poudriere-sh/$(DEPDIR)/sh-traps.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/traps.c' object='src/poudriere-sh/sh-traps.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-traps.obj `if test -f 'src/poudriere-sh/traps.c'; then $(CYGPATH_W) 'src/poudriere-sh/traps.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/traps.c'; fi`

src/poudriere-sh/sh-unlink.o: src/poudriere-sh/unlink.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-unlink.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-unlink.Tpo -c -o src/poudriere-sh/sh-unlink.o `test -f 'src/poudriere-sh/unlink.c' || echo '$(srcdir)/'`src/poudriere-sh/unlink.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-unlink.Tpo src/poudriere-sh/$(DEPDIR)/sh-unlink.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/unlink.c' object='src/poudriere-sh/sh-unlink.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-unlink.o `test -f 'src/poudriere-sh/unlink.c' || echo '$(srcdir)/'`src/poudriere-sh/unlink.c

src/poudriere-sh/sh-unlink.obj: src/poudriere-sh/unlink.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-unlink.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-unlink.Tpo -c -o src/poudriere-sh/sh-unlink.obj `if test -f 'src/poudriere-sh/unlink.c'; then $(CYGPATH_W) 'src/poudriere-sh/unlink.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/unlink.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-unlink.Tpo src/poudriere-sh/$(DEPDIR)/sh-unlink.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/unlink.c' object='src/poudriere-sh/sh-unlink.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-unlink.obj `if test -f 'src/poudriere-sh/unlink.c'; then $(CYGPATH_W) 'src/poudriere-sh/unlink.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/unlink.c'; fi`

src/poudriere-sh/sh-builtins.o: src/poudriere-sh/builtins.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-builtins.o -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-builtins.Tpo -c -o src/poudriere-sh/sh-builtins.o `test -f 'src/poudriere-sh/builtins.c' || echo '$(srcdir)/'`src/poudriere-sh/builtins.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-builtins.Tpo src/poudriere-sh/$(DEPDIR)/sh-builtins.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/builtins.c' object='src/poudriere-sh/sh-builtins.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-builtins.o `test -f 'src/poudriere-sh/builtins.c' || echo '$(srcdir)/'`src/poudriere-sh/builtins.c

src/poudriere-sh/sh-builtins.obj: src/poudriere-sh/builtins.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -MT src/poudriere-sh/sh-builtins.obj -MD -MP -MF src/poudriere-sh/$(DEPDIR)/sh-builtins.Tpo -c -o src/poudriere-sh/sh-builtins.obj `if test -f 'src/poudriere-sh/builtins.c'; then $(CYGPATH_W) 'src/poudriere-sh/builtins.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/builtins.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) src/poudriere-sh/$(DEPDIR)/sh-builtins.Tpo src/poudriere-sh/$(DEPDIR)/sh-builtins.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='src/poudriere-sh/builtins.c' object='src/poudriere-sh/sh-builtins.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sh_CFLAGS) $(CFLAGS) -c -o src/poudriere-sh/sh-builtins.obj `if test -f 'src/poudriere-sh/builtins.c'; then $(CYGPATH_W) 'src/poudriere-sh/builtins.c'; else $(CYGPATH_W) '$(srcdir)/src/poudriere-sh/builtins.c'; fi`

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs
	-rm -rf external/libnv/.libs external/libnv/_libs
	-rm -rf external/libnv/sys/.libs external/libnv/sys/_libs
	-rm -rf external/libucl/src/.libs external/libucl/src/_libs
	-rm -rf external/ptsort/lib/.libs external/ptsort/lib/_libs

distclean-libtool:
	-rm -f libtool config.lt
install-man8: $(dist_man_MANS)
	@$(NORMAL_INSTALL)
	@list1=''; \
	list2='$(dist_man_MANS)'; \
	test -n "$(man8dir)" \
	  && test -n "`echo $$list1$$list2`" \
	  || exit 0; \
	echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
	$(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
	{ for i in $$list1; do echo "$$i"; done;  \
	if test -n "$$list2"; then \
	  for i in $$list2; do echo "$$i"; done \
	    | sed -n '/\.8[a-z]*$$/p'; \
	fi; \
	} | while read p; do \
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; echo "$$p"; \
	done | \
	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
	sed 'N;N;s,\n, ,g' | { \
	list=; while read file base inst; do \
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \
	  fi; \
	done; \
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
	while read files; do \
	  test -z "$$files" || { \
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \
	done; }

uninstall-man8:
	@$(NORMAL_UNINSTALL)
	@list=''; test -n "$(man8dir)" || exit 0; \
	files=`{ for i in $$list; do echo "$$i"; done; \
	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.8[a-z]*$$/p'; \
	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
	dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir)
install-dist_assetsDATA: $(dist_assets_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_assets_DATA)'; test -n "$(assetsdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(assetsdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(assetsdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(assetsdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(assetsdir)" || exit $$?; \
	done

uninstall-dist_assetsDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_assets_DATA)'; test -n "$(assetsdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(assetsdir)'; $(am__uninstall_files_from_dir)
install-dist_awkDATA: $(dist_awk_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_awk_DATA)'; test -n "$(awkdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(awkdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(awkdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(awkdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(awkdir)" || exit $$?; \
	done

uninstall-dist_awkDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_awk_DATA)'; test -n "$(awkdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(awkdir)'; $(am__uninstall_files_from_dir)
install-dist_btcssDATA: $(dist_btcss_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_btcss_DATA)'; test -n "$(btcssdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(btcssdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(btcssdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(btcssdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(btcssdir)" || exit $$?; \
	done

uninstall-dist_btcssDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_btcss_DATA)'; test -n "$(btcssdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(btcssdir)'; $(am__uninstall_files_from_dir)
install-dist_btfontsDATA: $(dist_btfonts_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_btfonts_DATA)'; test -n "$(btfontsdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(btfontsdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(btfontsdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(btfontsdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(btfontsdir)" || exit $$?; \
	done

uninstall-dist_btfontsDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_btfonts_DATA)'; test -n "$(btfontsdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(btfontsdir)'; $(am__uninstall_files_from_dir)
install-dist_btjsDATA: $(dist_btjs_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_btjs_DATA)'; test -n "$(btjsdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(btjsdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(btjsdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(btjsdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(btjsdir)" || exit $$?; \
	done

uninstall-dist_btjsDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_btjs_DATA)'; test -n "$(btjsdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(btjsdir)'; $(am__uninstall_files_from_dir)
install-dist_dtcssDATA: $(dist_dtcss_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_dtcss_DATA)'; test -n "$(dtcssdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(dtcssdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(dtcssdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dtcssdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dtcssdir)" || exit $$?; \
	done

uninstall-dist_dtcssDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_dtcss_DATA)'; test -n "$(dtcssdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(dtcssdir)'; $(am__uninstall_files_from_dir)
install-dist_dtimagesDATA: $(dist_dtimages_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_dtimages_DATA)'; test -n "$(dtimagesdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(dtimagesdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(dtimagesdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dtimagesdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dtimagesdir)" || exit $$?; \
	done

uninstall-dist_dtimagesDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_dtimages_DATA)'; test -n "$(dtimagesdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(dtimagesdir)'; $(am__uninstall_files_from_dir)
install-dist_dtjsDATA: $(dist_dtjs_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_dtjs_DATA)'; test -n "$(dtjsdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(dtjsdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(dtjsdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dtjsdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dtjsdir)" || exit $$?; \
	done

uninstall-dist_dtjsDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_dtjs_DATA)'; test -n "$(dtjsdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(dtjsdir)'; $(am__uninstall_files_from_dir)
install-dist_examplesDATA: $(dist_examples_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_examples_DATA)'; test -n "$(examplesdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(examplesdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(examplesdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(examplesdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(examplesdir)" || exit $$?; \
	done

uninstall-dist_examplesDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_examples_DATA)'; test -n "$(examplesdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(examplesdir)'; $(am__uninstall_files_from_dir)
install-dist_hookDATA: $(dist_hook_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_hook_DATA)'; test -n "$(hookdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(hookdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(hookdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(hookdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(hookdir)" || exit $$?; \
	done

uninstall-dist_hookDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_hook_DATA)'; test -n "$(hookdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(hookdir)'; $(am__uninstall_files_from_dir)
install-dist_htmlDATA: $(dist_html_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_html_DATA)'; test -n "$(htmldir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
	done

uninstall-dist_htmlDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_html_DATA)'; test -n "$(htmldir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(htmldir)'; $(am__uninstall_files_from_dir)
install-dist_pkgdataDATA: $(dist_pkgdata_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(pkgdatadir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
	done

uninstall-dist_pkgdataDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(pkgdatadir)'; $(am__uninstall_files_from_dir)
install-dist_sysconfDATA: $(dist_sysconf_DATA)
	@$(NORMAL_INSTALL)
	@list='$(dist_sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(sysconfdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysconfdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \
	done

uninstall-dist_sysconfDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(sysconfdir)'; $(am__uninstall_files_from_dir)
install-dist_includeHEADERS: $(dist_include_HEADERS)
	@$(NORMAL_INSTALL)
	@list='$(dist_include_HEADERS)'; test -n "$(includedir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
	done

uninstall-dist_includeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(dist_include_HEADERS)'; test -n "$(includedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)

# This directory's subdirectories are mostly independent; you can cd
# into them and run 'make' without going through this Makefile.
# To change the values of 'make' variables: instead of editing Makefiles,
# (1) if the variable is set in 'config.status', edit 'config.status'
#     (which will cause the Makefiles to be regenerated when you run 'make');
# (2) otherwise, pass the desired values on the 'make' command line.
$(am__recursive_targets):
	@fail=; \
	if $(am__make_keepgoing); then \
	  failcom='fail=yes'; \
	else \
	  failcom='exit 1'; \
	fi; \
	dot_seen=no; \
	target=`echo $@ | sed s/-recursive//`; \
	case "$@" in \
	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
	  *) list='$(SUBDIRS)' ;; \
	esac; \
	for subdir in $$list; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    dot_seen=yes; \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done; \
	if test "$$dot_seen" = "no"; then \
	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
	fi; test -z "$$fail"

ID: $(am__tagged_files)
	$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-recursive
TAGS: tags

tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	set x; \
	here=`pwd`; \
	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
	  include_option=--etags-include; \
	  empty_fix=.; \
	else \
	  include_option=--include; \
	  empty_fix=; \
	fi; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test ! -f $$subdir/TAGS || \
	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
	  fi; \
	done; \
	$(am__define_uniq_tagged_files); \
	shift; \
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  if test $$# -gt 0; then \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      "$$@" $$unique; \
	  else \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      $$unique; \
	  fi; \
	fi
ctags: ctags-recursive

CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	$(am__define_uniq_tagged_files); \
	test -z "$(CTAGS_ARGS)$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$unique

GTAGS:
	here=`$(am__cd) $(top_builddir) && pwd` \
	  && $(am__cd) $(top_srcdir) \
	  && gtags -i $(GTAGS_ARGS) "$$here"
cscope: cscope.files
	test ! -s cscope.files \
	  || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
	-rm -f cscope.files
cscope.files: clean-cscope cscopelist
cscopelist: cscopelist-recursive

cscopelist-am: $(am__tagged_files)
	list='$(am__tagged_files)'; \
	case "$(srcdir)" in \
	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
	  *) sdir=$(subdir)/$(srcdir) ;; \
	esac; \
	for i in $$list; do \
	  if test -f "$$i"; then \
	    echo "$(subdir)/$$i"; \
	  else \
	    echo "$$sdir/$$i"; \
	  fi; \
	done >> $(top_builddir)/cscope.files

distclean-tags:
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
	-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
distdir: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) distdir-am

distdir-am: $(DISTFILES)
	$(am__remove_distdir)
	test -d "$(distdir)" || mkdir "$(distdir)"
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    $(am__make_dryrun) \
	      || test -d "$(distdir)/$$subdir" \
	      || $(MKDIR_P) "$(distdir)/$$subdir" \
	      || exit 1; \
	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
	    $(am__relativize); \
	    new_distdir=$$reldir; \
	    dir1=$$subdir; dir2="$(top_distdir)"; \
	    $(am__relativize); \
	    new_top_distdir=$$reldir; \
	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
	    ($(am__cd) $$subdir && \
	      $(MAKE) $(AM_MAKEFLAGS) \
	        top_distdir="$$new_top_distdir" \
	        distdir="$$new_distdir" \
		am__remove_distdir=: \
		am__skip_length_check=: \
		am__skip_mode_fix=: \
	        distdir) \
	      || exit 1; \
	  fi; \
	done
	-test -n "$(am__skip_mode_fix)" \
	|| find "$(distdir)" -type d ! -perm -755 \
		-exec chmod u+rwx,go+rx {} \; -o \
	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
	|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
	tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
	$(am__post_remove_distdir)

dist-bzip2: distdir
	tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
	$(am__post_remove_distdir)

dist-lzip: distdir
	tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
	$(am__post_remove_distdir)
dist-xz: distdir
	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
	$(am__post_remove_distdir)

dist-zstd: distdir
	tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
	$(am__post_remove_distdir)

dist-tarZ: distdir
	@echo WARNING: "Support for distribution archives compressed with" \
		       "legacy program 'compress' is deprecated." >&2
	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
	$(am__post_remove_distdir)

dist-shar: distdir
	@echo WARNING: "Support for shar distribution archives is" \
	               "deprecated." >&2
	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
	shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
	$(am__post_remove_distdir)

dist-zip: distdir
	-rm -f $(distdir).zip
	zip -rq $(distdir).zip $(distdir)
	$(am__post_remove_distdir)

dist dist-all:
	$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
	$(am__post_remove_distdir)

# This target untars the dist file and tries a VPATH configuration.  Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
	case '$(DIST_ARCHIVES)' in \
	*.tar.gz*) \
	  eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
	*.tar.bz2*) \
	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
	*.tar.lz*) \
	  lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
	*.tar.xz*) \
	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
	*.tar.Z*) \
	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
	*.shar.gz*) \
	  eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
	*.zip*) \
	  unzip $(distdir).zip ;;\
	*.tar.zst*) \
	  zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
	esac
	chmod -R a-w $(distdir)
	chmod u+w $(distdir)
	mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
	chmod a-w $(distdir)
	test -d $(distdir)/_build || exit 0; \
	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
	  && am__cwd=`pwd` \
	  && $(am__cd) $(distdir)/_build/sub \
	  && ../../configure \
	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
	    $(DISTCHECK_CONFIGURE_FLAGS) \
	    --srcdir=../.. --prefix="$$dc_install_base" \
	  && $(MAKE) $(AM_MAKEFLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
	  && $(MAKE) $(AM_MAKEFLAGS) check \
	  && $(MAKE) $(AM_MAKEFLAGS) install \
	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
	        distuninstallcheck \
	  && chmod -R a-w "$$dc_install_base" \
	  && ({ \
	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
	  && rm -rf "$$dc_destdir" \
	  && $(MAKE) $(AM_MAKEFLAGS) dist \
	  && rm -rf $(DIST_ARCHIVES) \
	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
	  && cd "$$am__cwd" \
	  || exit 1
	$(am__post_remove_distdir)
	@(echo "$(distdir) archives ready for distribution: "; \
	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
	@test -n '$(distuninstallcheck_dir)' || { \
	  echo 'ERROR: trying to run $@ with an empty' \
	       '$$(distuninstallcheck_dir)' >&2; \
	  exit 1; \
	}; \
	$(am__cd) '$(distuninstallcheck_dir)' || { \
	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
	  exit 1; \
	}; \
	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
	   || { echo "ERROR: files left after uninstall:" ; \
	        if test -n "$(DESTDIR)"; then \
	          echo "  (check DESTDIR support)"; \
	        fi ; \
	        $(distuninstallcheck_listfiles) ; \
	        exit 1; } >&2
distcleancheck: distclean
	@if test '$(srcdir)' = . ; then \
	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
	  exit 1 ; \
	fi
	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
	  || { echo "ERROR: files left in build directory after distclean:" ; \
	       $(distcleancheck_listfiles) ; \
	       exit 1; } >&2
check-am: all-am
check: check-recursive
all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(SCRIPTS) $(MANS) $(DATA) \
		$(HEADERS)
installdirs: installdirs-recursive
installdirs-am:
	for dir in "$(DESTDIR)$(pkglibexecdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(rcdir)" "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(assetsdir)" "$(DESTDIR)$(awkdir)" "$(DESTDIR)$(btcssdir)" "$(DESTDIR)$(btfontsdir)" "$(DESTDIR)$(btjsdir)" "$(DESTDIR)$(dtcssdir)" "$(DESTDIR)$(dtimagesdir)" "$(DESTDIR)$(dtjsdir)" "$(DESTDIR)$(examplesdir)" "$(DESTDIR)$(hookdir)" "$(DESTDIR)$(htmldir)" "$(DESTDIR)$(pkgdatadir)" "$(DESTDIR)$(sysconfdir)" "$(DESTDIR)$(includedir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-recursive
install-strip:
	if test -z '$(STRIP)'; then \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	      install; \
	else \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
	fi
mostlyclean-generic:
	-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)

clean-generic:
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
	-rm -f external/libnv/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/libnv/$(am__dirstamp)
	-rm -f external/libnv/sys/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/libnv/sys/$(am__dirstamp)
	-rm -f external/libucl/src/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/libucl/src/$(am__dirstamp)
	-rm -f external/ptsort/bin/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/ptsort/bin/$(am__dirstamp)
	-rm -f external/ptsort/lib/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/ptsort/lib/$(am__dirstamp)
	-rm -f external/sh/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/sh/$(am__dirstamp)
	-rm -f external/sh/bltin/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/sh/bltin/$(am__dirstamp)
	-rm -f external/sh_compat/$(DEPDIR)/$(am__dirstamp)
	-rm -f external/sh_compat/$(am__dirstamp)
	-rm -f src/libexec/poudriere/cachec/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/cachec/$(am__dirstamp)
	-rm -f src/libexec/poudriere/cached/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/cached/$(am__dirstamp)
	-rm -f src/libexec/poudriere/clock/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/clock/$(am__dirstamp)
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/cpdup/src/$(am__dirstamp)
	-rm -f src/libexec/poudriere/dirempty/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/dirempty/$(am__dirstamp)
	-rm -f src/libexec/poudriere/dirwatch/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/dirwatch/$(am__dirstamp)
	-rm -f src/libexec/poudriere/jexecd/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/jexecd/$(am__dirstamp)
	-rm -f src/libexec/poudriere/locked_mkdir/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/locked_mkdir/$(am__dirstamp)
	-rm -f src/libexec/poudriere/nc/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/nc/$(am__dirstamp)
	-rm -f src/libexec/poudriere/pwait/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/pwait/$(am__dirstamp)
	-rm -f src/libexec/poudriere/rename/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/rename/$(am__dirstamp)
	-rm -f src/libexec/poudriere/rexec/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/rexec/$(am__dirstamp)
	-rm -f src/libexec/poudriere/rm/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/rm/$(am__dirstamp)
	-rm -f src/libexec/poudriere/setsid/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/setsid/$(am__dirstamp)
	-rm -f src/libexec/poudriere/timeout/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/timeout/$(am__dirstamp)
	-rm -f src/libexec/poudriere/timestamp/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/libexec/poudriere/timestamp/$(am__dirstamp)
	-rm -f src/poudriere-sh/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/poudriere-sh/$(am__dirstamp)
	-rm -f src/poudriered/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/poudriered/$(am__dirstamp)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
clean: clean-recursive

clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
	clean-pkglibexecPROGRAMS mostlyclean-am

distclean: distclean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
		-rm -f external/libnv/$(DEPDIR)/libnv_la-msgio.Plo
	-rm -f external/libnv/sys/$(DEPDIR)/libnv_la-dnvlist.Plo
	-rm -f external/libnv/sys/$(DEPDIR)/libnv_la-nvlist.Plo
	-rm -f external/libnv/sys/$(DEPDIR)/libnv_la-nvpair.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_streamline.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_utils.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_hash.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_parser.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_util.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-xxhash.Plo
	-rm -f external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Po
	-rm -f external/ptsort/lib/$(DEPDIR)/libptsort_la-aa_tree.Plo
	-rm -f external/ptsort/lib/$(DEPDIR)/libptsort_la-fline.Plo
	-rm -f external/sh/$(DEPDIR)/sh-alias.Po
	-rm -f external/sh/$(DEPDIR)/sh-arith_yacc.Po
	-rm -f external/sh/$(DEPDIR)/sh-arith_yylex.Po
	-rm -f external/sh/$(DEPDIR)/sh-cd.Po
	-rm -f external/sh/$(DEPDIR)/sh-error.Po
	-rm -f external/sh/$(DEPDIR)/sh-eval.Po
	-rm -f external/sh/$(DEPDIR)/sh-exec.Po
	-rm -f external/sh/$(DEPDIR)/sh-expand.Po
	-rm -f external/sh/$(DEPDIR)/sh-histedit.Po
	-rm -f external/sh/$(DEPDIR)/sh-input.Po
	-rm -f external/sh/$(DEPDIR)/sh-jobs.Po
	-rm -f external/sh/$(DEPDIR)/sh-kill.Po
	-rm -f external/sh/$(DEPDIR)/sh-mail.Po
	-rm -f external/sh/$(DEPDIR)/sh-main.Po
	-rm -f external/sh/$(DEPDIR)/sh-memalloc.Po
	-rm -f external/sh/$(DEPDIR)/sh-miscbltin.Po
	-rm -f external/sh/$(DEPDIR)/sh-mystring.Po
	-rm -f external/sh/$(DEPDIR)/sh-nodes.Po
	-rm -f external/sh/$(DEPDIR)/sh-options.Po
	-rm -f external/sh/$(DEPDIR)/sh-output.Po
	-rm -f external/sh/$(DEPDIR)/sh-parser.Po
	-rm -f external/sh/$(DEPDIR)/sh-printf.Po
	-rm -f external/sh/$(DEPDIR)/sh-redir.Po
	-rm -f external/sh/$(DEPDIR)/sh-show.Po
	-rm -f external/sh/$(DEPDIR)/sh-syntax.Po
	-rm -f external/sh/$(DEPDIR)/sh-test.Po
	-rm -f external/sh/$(DEPDIR)/sh-trap.Po
	-rm -f external/sh/$(DEPDIR)/sh-var.Po
	-rm -f external/sh/bltin/$(DEPDIR)/sh-echo.Po
	-rm -f external/sh_compat/$(DEPDIR)/sh-strchrnul.Po
	-rm -f external/sh_compat/$(DEPDIR)/sh-utimensat.Po
	-rm -f src/libexec/poudriere/cachec/$(DEPDIR)/cachec.Po
	-rm -f src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Po
	-rm -f src/libexec/poudriere/clock/$(DEPDIR)/clock.Po
	-rm -f src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Po
	-rm -f src/libexec/poudriere/dirempty/$(DEPDIR)/dirempty.Po
	-rm -f src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Po
	-rm -f src/libexec/poudriere/dirwatch/$(DEPDIR)/dirwatch.Po
	-rm -f src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Po
	-rm -f src/libexec/poudriere/locked_mkdir/$(DEPDIR)/locked_mkdir.Po
	-rm -f src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Po
	-rm -f src/libexec/poudriere/nc/$(DEPDIR)/nc.Po
	-rm -f src/libexec/poudriere/pwait/$(DEPDIR)/pwait.Po
	-rm -f src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Po
	-rm -f src/libexec/poudriere/rename/$(DEPDIR)/rename.Po
	-rm -f src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Po
	-rm -f src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Po
	-rm -f src/libexec/poudriere/rm/$(DEPDIR)/rm.Po
	-rm -f src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Po
	-rm -f src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Po
	-rm -f src/libexec/poudriere/timeout/$(DEPDIR)/timeout.Po
	-rm -f src/libexec/poudriere/timestamp/$(DEPDIR)/timestamp.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-builtins.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-helpers.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mapfile.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mkdir.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mktemp.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-realpath.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-rmdir.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-sleep.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-stat.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-touch.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-traps.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-unlink.Po
	-rm -f src/poudriered/$(DEPDIR)/poudriered-poudriered.Po
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-hdr distclean-libtool distclean-tags

dvi: dvi-recursive

dvi-am:

html: html-recursive

html-am:

info: info-recursive

info-am:

install-data-am: install-dist_assetsDATA install-dist_awkDATA \
	install-dist_btcssDATA install-dist_btfontsDATA \
	install-dist_btjsDATA install-dist_dtcssDATA \
	install-dist_dtimagesDATA install-dist_dtjsDATA \
	install-dist_examplesDATA install-dist_hookDATA \
	install-dist_htmlDATA install-dist_includeHEADERS \
	install-dist_pkgdataDATA install-dist_rcSCRIPTS install-man

install-dvi: install-dvi-recursive

install-dvi-am:

install-exec-am: install-dist_binSCRIPTS install-dist_sysconfDATA \
	install-pkglibexecPROGRAMS

install-html: install-html-recursive

install-html-am:

install-info: install-info-recursive

install-info-am:

install-man: install-man8

install-pdf: install-pdf-recursive

install-pdf-am:

install-ps: install-ps-recursive

install-ps-am:

installcheck-am: installcheck-local

maintainer-clean: maintainer-clean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf $(top_srcdir)/autom4te.cache
		-rm -f external/libnv/$(DEPDIR)/libnv_la-msgio.Plo
	-rm -f external/libnv/sys/$(DEPDIR)/libnv_la-dnvlist.Plo
	-rm -f external/libnv/sys/$(DEPDIR)/libnv_la-nvlist.Plo
	-rm -f external/libnv/sys/$(DEPDIR)/libnv_la-nvpair.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_streamline.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_emitter_utils.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_hash.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_parser.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-ucl_util.Plo
	-rm -f external/libucl/src/$(DEPDIR)/libucl_la-xxhash.Plo
	-rm -f external/ptsort/bin/$(DEPDIR)/ptsort-ptsort.Po
	-rm -f external/ptsort/lib/$(DEPDIR)/libptsort_la-aa_tree.Plo
	-rm -f external/ptsort/lib/$(DEPDIR)/libptsort_la-fline.Plo
	-rm -f external/sh/$(DEPDIR)/sh-alias.Po
	-rm -f external/sh/$(DEPDIR)/sh-arith_yacc.Po
	-rm -f external/sh/$(DEPDIR)/sh-arith_yylex.Po
	-rm -f external/sh/$(DEPDIR)/sh-cd.Po
	-rm -f external/sh/$(DEPDIR)/sh-error.Po
	-rm -f external/sh/$(DEPDIR)/sh-eval.Po
	-rm -f external/sh/$(DEPDIR)/sh-exec.Po
	-rm -f external/sh/$(DEPDIR)/sh-expand.Po
	-rm -f external/sh/$(DEPDIR)/sh-histedit.Po
	-rm -f external/sh/$(DEPDIR)/sh-input.Po
	-rm -f external/sh/$(DEPDIR)/sh-jobs.Po
	-rm -f external/sh/$(DEPDIR)/sh-kill.Po
	-rm -f external/sh/$(DEPDIR)/sh-mail.Po
	-rm -f external/sh/$(DEPDIR)/sh-main.Po
	-rm -f external/sh/$(DEPDIR)/sh-memalloc.Po
	-rm -f external/sh/$(DEPDIR)/sh-miscbltin.Po
	-rm -f external/sh/$(DEPDIR)/sh-mystring.Po
	-rm -f external/sh/$(DEPDIR)/sh-nodes.Po
	-rm -f external/sh/$(DEPDIR)/sh-options.Po
	-rm -f external/sh/$(DEPDIR)/sh-output.Po
	-rm -f external/sh/$(DEPDIR)/sh-parser.Po
	-rm -f external/sh/$(DEPDIR)/sh-printf.Po
	-rm -f external/sh/$(DEPDIR)/sh-redir.Po
	-rm -f external/sh/$(DEPDIR)/sh-show.Po
	-rm -f external/sh/$(DEPDIR)/sh-syntax.Po
	-rm -f external/sh/$(DEPDIR)/sh-test.Po
	-rm -f external/sh/$(DEPDIR)/sh-trap.Po
	-rm -f external/sh/$(DEPDIR)/sh-var.Po
	-rm -f external/sh/bltin/$(DEPDIR)/sh-echo.Po
	-rm -f external/sh_compat/$(DEPDIR)/sh-strchrnul.Po
	-rm -f external/sh_compat/$(DEPDIR)/sh-utimensat.Po
	-rm -f src/libexec/poudriere/cachec/$(DEPDIR)/cachec.Po
	-rm -f src/libexec/poudriere/cached/$(DEPDIR)/cached-cached.Po
	-rm -f src/libexec/poudriere/clock/$(DEPDIR)/clock.Po
	-rm -f src/libexec/poudriere/clock/$(DEPDIR)/sh-clock.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-cpdup.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hclink.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-hcproto.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-md5.Po
	-rm -f src/libexec/poudriere/cpdup/src/$(DEPDIR)/cpdup-misc.Po
	-rm -f src/libexec/poudriere/dirempty/$(DEPDIR)/dirempty.Po
	-rm -f src/libexec/poudriere/dirempty/$(DEPDIR)/sh-dirempty.Po
	-rm -f src/libexec/poudriere/dirwatch/$(DEPDIR)/dirwatch.Po
	-rm -f src/libexec/poudriere/jexecd/$(DEPDIR)/jexecd-jexecd.Po
	-rm -f src/libexec/poudriere/locked_mkdir/$(DEPDIR)/locked_mkdir.Po
	-rm -f src/libexec/poudriere/locked_mkdir/$(DEPDIR)/sh-locked_mkdir.Po
	-rm -f src/libexec/poudriere/nc/$(DEPDIR)/nc.Po
	-rm -f src/libexec/poudriere/pwait/$(DEPDIR)/pwait.Po
	-rm -f src/libexec/poudriere/pwait/$(DEPDIR)/sh-pwait.Po
	-rm -f src/libexec/poudriere/rename/$(DEPDIR)/rename.Po
	-rm -f src/libexec/poudriere/rename/$(DEPDIR)/sh-rename.Po
	-rm -f src/libexec/poudriere/rexec/$(DEPDIR)/rexec-rexec.Po
	-rm -f src/libexec/poudriere/rm/$(DEPDIR)/rm.Po
	-rm -f src/libexec/poudriere/rm/$(DEPDIR)/sh-rm.Po
	-rm -f src/libexec/poudriere/setsid/$(DEPDIR)/setsid-setsid.Po
	-rm -f src/libexec/poudriere/timeout/$(DEPDIR)/timeout.Po
	-rm -f src/libexec/poudriere/timestamp/$(DEPDIR)/timestamp.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-builtins.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-helpers.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mapfile.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mkdir.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mkfifo.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-mktemp.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-realpath.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-rmdir.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-setproctitle.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-sleep.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-stat.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-touch.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-traps.Po
	-rm -f src/poudriere-sh/$(DEPDIR)/sh-unlink.Po
	-rm -f src/poudriered/$(DEPDIR)/poudriered-poudriered.Po
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-recursive

mostlyclean-am: mostlyclean-compile mostlyclean-generic \
	mostlyclean-libtool

pdf: pdf-recursive

pdf-am:

ps: ps-recursive

ps-am:

uninstall-am: uninstall-dist_assetsDATA uninstall-dist_awkDATA \
	uninstall-dist_binSCRIPTS uninstall-dist_btcssDATA \
	uninstall-dist_btfontsDATA uninstall-dist_btjsDATA \
	uninstall-dist_dtcssDATA uninstall-dist_dtimagesDATA \
	uninstall-dist_dtjsDATA uninstall-dist_examplesDATA \
	uninstall-dist_hookDATA uninstall-dist_htmlDATA \
	uninstall-dist_includeHEADERS uninstall-dist_pkgdataDATA \
	uninstall-dist_rcSCRIPTS uninstall-dist_sysconfDATA \
	uninstall-man uninstall-pkglibexecPROGRAMS

uninstall-man: uninstall-man8

.MAKE: $(am__recursive_targets) install-am install-strip

.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
	am--depfiles am--refresh check check-am clean clean-cscope \
	clean-generic clean-libtool clean-noinstLTLIBRARIES \
	clean-pkglibexecPROGRAMS cscope cscopelist-am ctags ctags-am \
	dist dist-all dist-bzip2 dist-gzip dist-lzip dist-shar \
	dist-tarZ dist-xz dist-zip dist-zstd distcheck distclean \
	distclean-compile distclean-generic distclean-hdr \
	distclean-libtool distclean-tags distcleancheck distdir \
	distuninstallcheck dvi dvi-am html html-am info info-am \
	install install-am install-data install-data-am \
	install-dist_assetsDATA install-dist_awkDATA \
	install-dist_binSCRIPTS install-dist_btcssDATA \
	install-dist_btfontsDATA install-dist_btjsDATA \
	install-dist_dtcssDATA install-dist_dtimagesDATA \
	install-dist_dtjsDATA install-dist_examplesDATA \
	install-dist_hookDATA install-dist_htmlDATA \
	install-dist_includeHEADERS install-dist_pkgdataDATA \
	install-dist_rcSCRIPTS install-dist_sysconfDATA install-dvi \
	install-dvi-am install-exec install-exec-am install-html \
	install-html-am install-info install-info-am install-man \
	install-man8 install-pdf install-pdf-am \
	install-pkglibexecPROGRAMS install-ps install-ps-am \
	install-strip installcheck installcheck-am installcheck-local \
	installdirs installdirs-am maintainer-clean \
	maintainer-clean-generic mostlyclean mostlyclean-compile \
	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
	tags tags-am uninstall uninstall-am uninstall-dist_assetsDATA \
	uninstall-dist_awkDATA uninstall-dist_binSCRIPTS \
	uninstall-dist_btcssDATA uninstall-dist_btfontsDATA \
	uninstall-dist_btjsDATA uninstall-dist_dtcssDATA \
	uninstall-dist_dtimagesDATA uninstall-dist_dtjsDATA \
	uninstall-dist_examplesDATA uninstall-dist_hookDATA \
	uninstall-dist_htmlDATA uninstall-dist_includeHEADERS \
	uninstall-dist_pkgdataDATA uninstall-dist_rcSCRIPTS \
	uninstall-dist_sysconfDATA uninstall-man uninstall-man8 \
	uninstall-pkglibexecPROGRAMS

.PRECIOUS: Makefile

# cachec
#sh_SOURCES+=		src/libexec/poudriere/cachec/cachec.c
#sh_LDADD+=		-lrt
src/poudriere-sh/builtins.def: external/sh/builtins.def \
    src/poudriere-sh/builtins-poudriere.def
	cat $^${.ALLSRC} > $@
src/poudriere-sh/shell.h:
	@ln -fs $(abs_top_srcdir)/external/sh/shell.h $@
src/poudriere-sh/builtins.h: src/poudriere-sh/builtins.def \
      src/poudriere-sh/shell.h external/sh/mkbuiltins
	cd src/poudriere-sh && \
	    sh $(abs_top_srcdir)/external/sh/mkbuiltins .
src/poudriere-sh/builtins.c: src/poudriere-sh/builtins.h
${sh_OBJECTS}:		src/poudriere-sh/builtins.h

.PHONY:	gen-make-wiki
gen-man-wiki:
	@if [ ! -e wiki/poudriere.8.md ]; then \
	  echo "You must clone https://github.com/freebsd/poudriere.wiki.git to wiki/"; \
	  exit 1; \
	fi
	@if ! which mandoc 2>&1 >/dev/null; then \
	  echo "Mandoc required, install textproc/mdocml"; \
	  exit 1; \
	fi
	@for man in $(dist_man_MANS); do \
	  echo "MANDOC wiki/$${man##*/}${DEVEL_SFX}.md"; \
	  ( \
	    echo "### This page is auto-generated from $${man}"; \
	    (mandoc -Thtml -O man=%N.%S${DEVEL_SFX} $${man} | awk \
	    '$$1 == "<body>" { seenbody=1; next; }; \
	     $$1 == "</body>" { seenbody=0; }; \
	     seenbody == 1 { print };'\
	    ); \
	  ) > wiki/$${man##*/}${DEVEL_SFX}.md; \
	done
.PHONY: poudriere
poudriere: src/bin/poudriere.in
	$(AM_V_GEN)if test -e $(top_srcdir)/.git && \
	    which git >/dev/null 2>&1 && \
	    [ -d "$$(git -C "$(top_srcdir)" rev-parse --git-dir)" ]; then \
	    gitver=$$(git -C "$(top_srcdir)" describe --tags HEAD); \
	    sed -e "s,^\(POUDRIERE_VERSION\)=.*,\1='$${gitver}'," \
	      $^${.ALLSRC} > $@; \
	else \
	    cp -f $^${.ALLSRC} $@; \
	fi; \
	chmod +x $@

installcheck-local:
	$(MAKE) $(AM_MAKEFLAGS) check am_installcheck=1

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: