summaryrefslogtreecommitdiff
path: root/dist/Mesa/src/glsl/builtin_compiler/Makefile.in
blob: 0ceba20ee8952c188856f251033b1db932c622c9 (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
# Makefile.in generated by automake 1.14 from Makefile.am.
# @configure_input@

# Copyright (C) 1994-2013 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@

# Copyright © 2012 Jon TURNEY
# Copyright © 2012 Thierry Reding
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

# shared source lists for Makefile, SConscript, and Android.mk


VPATH = @srcdir@
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
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@
target_triplet = @target@
@CROSS_COMPILING_TRUE@am__append_1 = $(DEFINES_FOR_BUILD)
@CROSS_COMPILING_FALSE@am__append_2 = $(DEFINES)
DIST_COMMON = $(srcdir)/../Makefile.sources $(srcdir)/Makefile.in \
	$(srcdir)/Makefile.am $(top_srcdir)/bin/depcomp
noinst_PROGRAMS = builtin_compiler$(EXEEXT)
@CROSS_COMPILING_TRUE@am__append_3 = \
@CROSS_COMPILING_TRUE@	$(LIBGLCPP_GENERATED_FILES) \
@CROSS_COMPILING_TRUE@	$(LIBGLCPP_FILES) \
@CROSS_COMPILING_TRUE@	$(BUILTIN_COMPILER_GENERATED_CXX_FILES) \
@CROSS_COMPILING_TRUE@	$(LIBGLSL_FILES)

subdir = src/glsl/builtin_compiler
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_prog_bison.m4 \
	$(top_srcdir)/m4/ax_prog_cc_for_build.m4 \
	$(top_srcdir)/m4/ax_prog_cxx_for_build.m4 \
	$(top_srcdir)/m4/ax_prog_flex.m4 \
	$(top_srcdir)/m4/ax_pthread.m4 \
	$(top_srcdir)/m4/ax_python_module.m4 \
	$(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)
mkinstalldirs = $(install_sh) -d
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libglcpp_la_LIBADD =
am__libglcpp_la_SOURCES_DIST = $(GLSL_BUILDDIR)/glcpp/glcpp-lex.c \
	$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c $(GLSL_SRCDIR)/ralloc.c \
	$(GLSL_SRCDIR)/glcpp/pp.c
am__objects_1 = glcpp-lex.lo glcpp-parse.lo
am__objects_2 = ralloc.lo pp.lo
@CROSS_COMPILING_FALSE@am_libglcpp_la_OBJECTS = $(am__objects_1) \
@CROSS_COMPILING_FALSE@	$(am__objects_2)
libglcpp_la_OBJECTS = $(am_libglcpp_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 = 
@CROSS_COMPILING_FALSE@am_libglcpp_la_rpath =
libglslcore_la_LIBADD =
am__libglslcore_la_SOURCES_DIST = $(GLSL_BUILDDIR)/glsl_lexer.cpp \
	$(GLSL_BUILDDIR)/glsl_parser.cpp \
	$(GLSL_SRCDIR)/ast_array_index.cpp $(GLSL_SRCDIR)/ast_expr.cpp \
	$(GLSL_SRCDIR)/ast_function.cpp $(GLSL_SRCDIR)/ast_to_hir.cpp \
	$(GLSL_SRCDIR)/ast_type.cpp $(GLSL_SRCDIR)/builtin_types.cpp \
	$(GLSL_SRCDIR)/builtin_variables.cpp \
	$(GLSL_SRCDIR)/glsl_parser_extras.cpp \
	$(GLSL_SRCDIR)/glsl_types.cpp \
	$(GLSL_SRCDIR)/glsl_symbol_table.cpp \
	$(GLSL_SRCDIR)/hir_field_selection.cpp \
	$(GLSL_SRCDIR)/ir_basic_block.cpp \
	$(GLSL_SRCDIR)/ir_builder.cpp $(GLSL_SRCDIR)/ir_clone.cpp \
	$(GLSL_SRCDIR)/ir_constant_expression.cpp \
	$(GLSL_SRCDIR)/ir.cpp \
	$(GLSL_SRCDIR)/ir_expression_flattening.cpp \
	$(GLSL_SRCDIR)/ir_function_can_inline.cpp \
	$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp \
	$(GLSL_SRCDIR)/ir_function.cpp \
	$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp \
	$(GLSL_SRCDIR)/ir_hv_accept.cpp \
	$(GLSL_SRCDIR)/ir_import_prototypes.cpp \
	$(GLSL_SRCDIR)/ir_print_visitor.cpp \
	$(GLSL_SRCDIR)/ir_reader.cpp \
	$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp \
	$(GLSL_SRCDIR)/ir_set_program_inouts.cpp \
	$(GLSL_SRCDIR)/ir_validate.cpp \
	$(GLSL_SRCDIR)/ir_variable_refcount.cpp \
	$(GLSL_SRCDIR)/linker.cpp $(GLSL_SRCDIR)/link_functions.cpp \
	$(GLSL_SRCDIR)/link_interface_blocks.cpp \
	$(GLSL_SRCDIR)/link_uniforms.cpp \
	$(GLSL_SRCDIR)/link_uniform_initializers.cpp \
	$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp \
	$(GLSL_SRCDIR)/link_uniform_blocks.cpp \
	$(GLSL_SRCDIR)/link_varyings.cpp \
	$(GLSL_SRCDIR)/loop_analysis.cpp \
	$(GLSL_SRCDIR)/loop_controls.cpp \
	$(GLSL_SRCDIR)/loop_unroll.cpp \
	$(GLSL_SRCDIR)/lower_clip_distance.cpp \
	$(GLSL_SRCDIR)/lower_discard.cpp \
	$(GLSL_SRCDIR)/lower_discard_flow.cpp \
	$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_instructions.cpp \
	$(GLSL_SRCDIR)/lower_jumps.cpp \
	$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp \
	$(GLSL_SRCDIR)/lower_noise.cpp \
	$(GLSL_SRCDIR)/lower_packed_varyings.cpp \
	$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp \
	$(GLSL_SRCDIR)/lower_packing_builtins.cpp \
	$(GLSL_SRCDIR)/lower_texture_projection.cpp \
	$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp \
	$(GLSL_SRCDIR)/lower_vector.cpp \
	$(GLSL_SRCDIR)/lower_vector_insert.cpp \
	$(GLSL_SRCDIR)/lower_output_reads.cpp \
	$(GLSL_SRCDIR)/lower_ubo_reference.cpp \
	$(GLSL_SRCDIR)/opt_algebraic.cpp \
	$(GLSL_SRCDIR)/opt_array_splitting.cpp \
	$(GLSL_SRCDIR)/opt_constant_folding.cpp \
	$(GLSL_SRCDIR)/opt_constant_propagation.cpp \
	$(GLSL_SRCDIR)/opt_constant_variable.cpp \
	$(GLSL_SRCDIR)/opt_copy_propagation.cpp \
	$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp \
	$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp \
	$(GLSL_SRCDIR)/opt_dead_code.cpp \
	$(GLSL_SRCDIR)/opt_dead_code_local.cpp \
	$(GLSL_SRCDIR)/opt_dead_functions.cpp \
	$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp \
	$(GLSL_SRCDIR)/opt_flip_matrices.cpp \
	$(GLSL_SRCDIR)/opt_function_inlining.cpp \
	$(GLSL_SRCDIR)/opt_if_simplification.cpp \
	$(GLSL_SRCDIR)/opt_noop_swizzle.cpp \
	$(GLSL_SRCDIR)/opt_redundant_jumps.cpp \
	$(GLSL_SRCDIR)/opt_structure_splitting.cpp \
	$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp \
	$(GLSL_SRCDIR)/opt_tree_grafting.cpp \
	$(GLSL_SRCDIR)/s_expression.cpp $(GLSL_SRCDIR)/strtod.c
am__objects_3 = glsl_lexer.lo glsl_parser.lo
am__objects_4 = ast_array_index.lo ast_expr.lo ast_function.lo \
	ast_to_hir.lo ast_type.lo builtin_types.lo \
	builtin_variables.lo glsl_parser_extras.lo glsl_types.lo \
	glsl_symbol_table.lo hir_field_selection.lo ir_basic_block.lo \
	ir_builder.lo ir_clone.lo ir_constant_expression.lo ir.lo \
	ir_expression_flattening.lo ir_function_can_inline.lo \
	ir_function_detect_recursion.lo ir_function.lo \
	ir_hierarchical_visitor.lo ir_hv_accept.lo \
	ir_import_prototypes.lo ir_print_visitor.lo ir_reader.lo \
	ir_rvalue_visitor.lo ir_set_program_inouts.lo ir_validate.lo \
	ir_variable_refcount.lo linker.lo link_functions.lo \
	link_interface_blocks.lo link_uniforms.lo \
	link_uniform_initializers.lo \
	link_uniform_block_active_visitor.lo link_uniform_blocks.lo \
	link_varyings.lo loop_analysis.lo loop_controls.lo \
	loop_unroll.lo lower_clip_distance.lo lower_discard.lo \
	lower_discard_flow.lo lower_if_to_cond_assign.lo \
	lower_instructions.lo lower_jumps.lo lower_mat_op_to_vec.lo \
	lower_noise.lo lower_packed_varyings.lo \
	lower_named_interface_blocks.lo lower_packing_builtins.lo \
	lower_texture_projection.lo \
	lower_variable_index_to_cond_assign.lo \
	lower_vec_index_to_cond_assign.lo \
	lower_vec_index_to_swizzle.lo lower_vector.lo \
	lower_vector_insert.lo lower_output_reads.lo \
	lower_ubo_reference.lo opt_algebraic.lo opt_array_splitting.lo \
	opt_constant_folding.lo opt_constant_propagation.lo \
	opt_constant_variable.lo opt_copy_propagation.lo \
	opt_copy_propagation_elements.lo opt_dead_builtin_varyings.lo \
	opt_dead_code.lo opt_dead_code_local.lo opt_dead_functions.lo \
	opt_flatten_nested_if_blocks.lo opt_flip_matrices.lo \
	opt_function_inlining.lo opt_if_simplification.lo \
	opt_noop_swizzle.lo opt_redundant_jumps.lo \
	opt_structure_splitting.lo opt_swizzle_swizzle.lo \
	opt_tree_grafting.lo s_expression.lo strtod.lo
@CROSS_COMPILING_FALSE@am_libglslcore_la_OBJECTS = $(am__objects_3) \
@CROSS_COMPILING_FALSE@	$(am__objects_4)
libglslcore_la_OBJECTS = $(am_libglslcore_la_OBJECTS)
@CROSS_COMPILING_FALSE@am_libglslcore_la_rpath =
PROGRAMS = $(noinst_PROGRAMS)
am__builtin_compiler_SOURCES_DIST =  \
	$(top_srcdir)/src/mesa/main/hash_table.c \
	$(top_srcdir)/src/mesa/main/imports.c \
	$(top_srcdir)/src/mesa/program/prog_hash_table.c \
	$(top_srcdir)/src/mesa/program/symbol_table.c \
	$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp \
	$(GLSL_SRCDIR)/standalone_scaffolding.cpp \
	$(GLSL_SRCDIR)/main.cpp $(GLSL_BUILDDIR)/glcpp/glcpp-lex.c \
	$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c $(GLSL_SRCDIR)/ralloc.c \
	$(GLSL_SRCDIR)/glcpp/pp.c $(GLSL_BUILDDIR)/glsl_lexer.cpp \
	$(GLSL_BUILDDIR)/glsl_parser.cpp \
	$(GLSL_SRCDIR)/ast_array_index.cpp $(GLSL_SRCDIR)/ast_expr.cpp \
	$(GLSL_SRCDIR)/ast_function.cpp $(GLSL_SRCDIR)/ast_to_hir.cpp \
	$(GLSL_SRCDIR)/ast_type.cpp $(GLSL_SRCDIR)/builtin_types.cpp \
	$(GLSL_SRCDIR)/builtin_variables.cpp \
	$(GLSL_SRCDIR)/glsl_parser_extras.cpp \
	$(GLSL_SRCDIR)/glsl_types.cpp \
	$(GLSL_SRCDIR)/glsl_symbol_table.cpp \
	$(GLSL_SRCDIR)/hir_field_selection.cpp \
	$(GLSL_SRCDIR)/ir_basic_block.cpp \
	$(GLSL_SRCDIR)/ir_builder.cpp $(GLSL_SRCDIR)/ir_clone.cpp \
	$(GLSL_SRCDIR)/ir_constant_expression.cpp \
	$(GLSL_SRCDIR)/ir.cpp \
	$(GLSL_SRCDIR)/ir_expression_flattening.cpp \
	$(GLSL_SRCDIR)/ir_function_can_inline.cpp \
	$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp \
	$(GLSL_SRCDIR)/ir_function.cpp \
	$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp \
	$(GLSL_SRCDIR)/ir_hv_accept.cpp \
	$(GLSL_SRCDIR)/ir_import_prototypes.cpp \
	$(GLSL_SRCDIR)/ir_print_visitor.cpp \
	$(GLSL_SRCDIR)/ir_reader.cpp \
	$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp \
	$(GLSL_SRCDIR)/ir_set_program_inouts.cpp \
	$(GLSL_SRCDIR)/ir_validate.cpp \
	$(GLSL_SRCDIR)/ir_variable_refcount.cpp \
	$(GLSL_SRCDIR)/linker.cpp $(GLSL_SRCDIR)/link_functions.cpp \
	$(GLSL_SRCDIR)/link_interface_blocks.cpp \
	$(GLSL_SRCDIR)/link_uniforms.cpp \
	$(GLSL_SRCDIR)/link_uniform_initializers.cpp \
	$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp \
	$(GLSL_SRCDIR)/link_uniform_blocks.cpp \
	$(GLSL_SRCDIR)/link_varyings.cpp \
	$(GLSL_SRCDIR)/loop_analysis.cpp \
	$(GLSL_SRCDIR)/loop_controls.cpp \
	$(GLSL_SRCDIR)/loop_unroll.cpp \
	$(GLSL_SRCDIR)/lower_clip_distance.cpp \
	$(GLSL_SRCDIR)/lower_discard.cpp \
	$(GLSL_SRCDIR)/lower_discard_flow.cpp \
	$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_instructions.cpp \
	$(GLSL_SRCDIR)/lower_jumps.cpp \
	$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp \
	$(GLSL_SRCDIR)/lower_noise.cpp \
	$(GLSL_SRCDIR)/lower_packed_varyings.cpp \
	$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp \
	$(GLSL_SRCDIR)/lower_packing_builtins.cpp \
	$(GLSL_SRCDIR)/lower_texture_projection.cpp \
	$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp \
	$(GLSL_SRCDIR)/lower_vector.cpp \
	$(GLSL_SRCDIR)/lower_vector_insert.cpp \
	$(GLSL_SRCDIR)/lower_output_reads.cpp \
	$(GLSL_SRCDIR)/lower_ubo_reference.cpp \
	$(GLSL_SRCDIR)/opt_algebraic.cpp \
	$(GLSL_SRCDIR)/opt_array_splitting.cpp \
	$(GLSL_SRCDIR)/opt_constant_folding.cpp \
	$(GLSL_SRCDIR)/opt_constant_propagation.cpp \
	$(GLSL_SRCDIR)/opt_constant_variable.cpp \
	$(GLSL_SRCDIR)/opt_copy_propagation.cpp \
	$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp \
	$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp \
	$(GLSL_SRCDIR)/opt_dead_code.cpp \
	$(GLSL_SRCDIR)/opt_dead_code_local.cpp \
	$(GLSL_SRCDIR)/opt_dead_functions.cpp \
	$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp \
	$(GLSL_SRCDIR)/opt_flip_matrices.cpp \
	$(GLSL_SRCDIR)/opt_function_inlining.cpp \
	$(GLSL_SRCDIR)/opt_if_simplification.cpp \
	$(GLSL_SRCDIR)/opt_noop_swizzle.cpp \
	$(GLSL_SRCDIR)/opt_redundant_jumps.cpp \
	$(GLSL_SRCDIR)/opt_structure_splitting.cpp \
	$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp \
	$(GLSL_SRCDIR)/opt_tree_grafting.cpp \
	$(GLSL_SRCDIR)/s_expression.cpp $(GLSL_SRCDIR)/strtod.c
am__objects_5 = builtin_compiler-builtin_stubs.$(OBJEXT)
am__objects_6 = builtin_compiler-standalone_scaffolding.$(OBJEXT) \
	builtin_compiler-main.$(OBJEXT)
am__objects_7 = builtin_compiler-glcpp-lex.$(OBJEXT) \
	builtin_compiler-glcpp-parse.$(OBJEXT)
am__objects_8 = builtin_compiler-ralloc.$(OBJEXT) \
	builtin_compiler-pp.$(OBJEXT)
am__objects_9 = builtin_compiler-glsl_lexer.$(OBJEXT) \
	builtin_compiler-glsl_parser.$(OBJEXT)
am__objects_10 = builtin_compiler-ast_array_index.$(OBJEXT) \
	builtin_compiler-ast_expr.$(OBJEXT) \
	builtin_compiler-ast_function.$(OBJEXT) \
	builtin_compiler-ast_to_hir.$(OBJEXT) \
	builtin_compiler-ast_type.$(OBJEXT) \
	builtin_compiler-builtin_types.$(OBJEXT) \
	builtin_compiler-builtin_variables.$(OBJEXT) \
	builtin_compiler-glsl_parser_extras.$(OBJEXT) \
	builtin_compiler-glsl_types.$(OBJEXT) \
	builtin_compiler-glsl_symbol_table.$(OBJEXT) \
	builtin_compiler-hir_field_selection.$(OBJEXT) \
	builtin_compiler-ir_basic_block.$(OBJEXT) \
	builtin_compiler-ir_builder.$(OBJEXT) \
	builtin_compiler-ir_clone.$(OBJEXT) \
	builtin_compiler-ir_constant_expression.$(OBJEXT) \
	builtin_compiler-ir.$(OBJEXT) \
	builtin_compiler-ir_expression_flattening.$(OBJEXT) \
	builtin_compiler-ir_function_can_inline.$(OBJEXT) \
	builtin_compiler-ir_function_detect_recursion.$(OBJEXT) \
	builtin_compiler-ir_function.$(OBJEXT) \
	builtin_compiler-ir_hierarchical_visitor.$(OBJEXT) \
	builtin_compiler-ir_hv_accept.$(OBJEXT) \
	builtin_compiler-ir_import_prototypes.$(OBJEXT) \
	builtin_compiler-ir_print_visitor.$(OBJEXT) \
	builtin_compiler-ir_reader.$(OBJEXT) \
	builtin_compiler-ir_rvalue_visitor.$(OBJEXT) \
	builtin_compiler-ir_set_program_inouts.$(OBJEXT) \
	builtin_compiler-ir_validate.$(OBJEXT) \
	builtin_compiler-ir_variable_refcount.$(OBJEXT) \
	builtin_compiler-linker.$(OBJEXT) \
	builtin_compiler-link_functions.$(OBJEXT) \
	builtin_compiler-link_interface_blocks.$(OBJEXT) \
	builtin_compiler-link_uniforms.$(OBJEXT) \
	builtin_compiler-link_uniform_initializers.$(OBJEXT) \
	builtin_compiler-link_uniform_block_active_visitor.$(OBJEXT) \
	builtin_compiler-link_uniform_blocks.$(OBJEXT) \
	builtin_compiler-link_varyings.$(OBJEXT) \
	builtin_compiler-loop_analysis.$(OBJEXT) \
	builtin_compiler-loop_controls.$(OBJEXT) \
	builtin_compiler-loop_unroll.$(OBJEXT) \
	builtin_compiler-lower_clip_distance.$(OBJEXT) \
	builtin_compiler-lower_discard.$(OBJEXT) \
	builtin_compiler-lower_discard_flow.$(OBJEXT) \
	builtin_compiler-lower_if_to_cond_assign.$(OBJEXT) \
	builtin_compiler-lower_instructions.$(OBJEXT) \
	builtin_compiler-lower_jumps.$(OBJEXT) \
	builtin_compiler-lower_mat_op_to_vec.$(OBJEXT) \
	builtin_compiler-lower_noise.$(OBJEXT) \
	builtin_compiler-lower_packed_varyings.$(OBJEXT) \
	builtin_compiler-lower_named_interface_blocks.$(OBJEXT) \
	builtin_compiler-lower_packing_builtins.$(OBJEXT) \
	builtin_compiler-lower_texture_projection.$(OBJEXT) \
	builtin_compiler-lower_variable_index_to_cond_assign.$(OBJEXT) \
	builtin_compiler-lower_vec_index_to_cond_assign.$(OBJEXT) \
	builtin_compiler-lower_vec_index_to_swizzle.$(OBJEXT) \
	builtin_compiler-lower_vector.$(OBJEXT) \
	builtin_compiler-lower_vector_insert.$(OBJEXT) \
	builtin_compiler-lower_output_reads.$(OBJEXT) \
	builtin_compiler-lower_ubo_reference.$(OBJEXT) \
	builtin_compiler-opt_algebraic.$(OBJEXT) \
	builtin_compiler-opt_array_splitting.$(OBJEXT) \
	builtin_compiler-opt_constant_folding.$(OBJEXT) \
	builtin_compiler-opt_constant_propagation.$(OBJEXT) \
	builtin_compiler-opt_constant_variable.$(OBJEXT) \
	builtin_compiler-opt_copy_propagation.$(OBJEXT) \
	builtin_compiler-opt_copy_propagation_elements.$(OBJEXT) \
	builtin_compiler-opt_dead_builtin_varyings.$(OBJEXT) \
	builtin_compiler-opt_dead_code.$(OBJEXT) \
	builtin_compiler-opt_dead_code_local.$(OBJEXT) \
	builtin_compiler-opt_dead_functions.$(OBJEXT) \
	builtin_compiler-opt_flatten_nested_if_blocks.$(OBJEXT) \
	builtin_compiler-opt_flip_matrices.$(OBJEXT) \
	builtin_compiler-opt_function_inlining.$(OBJEXT) \
	builtin_compiler-opt_if_simplification.$(OBJEXT) \
	builtin_compiler-opt_noop_swizzle.$(OBJEXT) \
	builtin_compiler-opt_redundant_jumps.$(OBJEXT) \
	builtin_compiler-opt_structure_splitting.$(OBJEXT) \
	builtin_compiler-opt_swizzle_swizzle.$(OBJEXT) \
	builtin_compiler-opt_tree_grafting.$(OBJEXT) \
	builtin_compiler-s_expression.$(OBJEXT) \
	builtin_compiler-strtod.$(OBJEXT)
@CROSS_COMPILING_TRUE@am__objects_11 = $(am__objects_7) \
@CROSS_COMPILING_TRUE@	$(am__objects_8) $(am__objects_9) \
@CROSS_COMPILING_TRUE@	$(am__objects_10)
am_builtin_compiler_OBJECTS = builtin_compiler-hash_table.$(OBJEXT) \
	builtin_compiler-imports.$(OBJEXT) \
	builtin_compiler-prog_hash_table.$(OBJEXT) \
	builtin_compiler-symbol_table.$(OBJEXT) $(am__objects_5) \
	$(am__objects_6) $(am__objects_11)
builtin_compiler_OBJECTS = $(am_builtin_compiler_OBJECTS)
@CROSS_COMPILING_FALSE@builtin_compiler_DEPENDENCIES = libglslcore.la \
@CROSS_COMPILING_FALSE@	libglcpp.la
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@
depcomp = $(SHELL) $(top_srcdir)/bin/depcomp
am__depfiles_maybe = depfiles
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 = 
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
	$(AM_CXXFLAGS) $(CXXFLAGS)
AM_V_CXX = $(am__v_CXX_@AM_V@)
am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
am__v_CXX_0 = @echo "  CXX     " $@;
am__v_CXX_1 = 
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
	$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
am__v_CXXLD_0 = @echo "  CXXLD   " $@;
am__v_CXXLD_1 = 
SOURCES = $(libglcpp_la_SOURCES) $(libglslcore_la_SOURCES) \
	$(builtin_compiler_SOURCES)
DIST_SOURCES = $(am__libglcpp_la_SOURCES_DIST) \
	$(am__libglslcore_la_SOURCES_DIST) \
	$(am__builtin_compiler_SOURCES_DIST)
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
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)`
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BUILD_EXEEXT = @BUILD_EXEEXT@
BUILD_OBJEXT = @BUILD_OBJEXT@
CC = $(proxyCC)
CCAS = @CCAS@
CCASDEPMODE = @CCASDEPMODE@
CCASFLAGS = @CCASFLAGS@
CCDEPMODE = @CCDEPMODE@
CC_FOR_BUILD = @CC_FOR_BUILD@
CFLAGS = $(proxyCFLAGS)
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
CLANG_RESOURCE_DIR = @CLANG_RESOURCE_DIR@
CLOCK_LIB = @CLOCK_LIB@
CPP = $(proxyCPP)
CPPFLAGS = $(proxyCPPFLAGS)
CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
CPP_FOR_BUILD = @CPP_FOR_BUILD@
CXX = $(proxyCXX)
CXXCPP = @CXXCPP@
CXXCPPFLAGS_FOR_BUILD = @CXXCPPFLAGS_FOR_BUILD@
CXXCPP_FOR_BUILD = @CXXCPP_FOR_BUILD@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = $(proxyCXXFLAGS)
CXXFLAGS_FOR_BUILD = @CXXFLAGS_FOR_BUILD@
CXX_FOR_BUILD = @CXX_FOR_BUILD@
CYGPATH_W = @CYGPATH_W@
DEFINES = @DEFINES@
DEFINES_FOR_BUILD = @DEFINES_FOR_BUILD@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DLOPEN_LIBS = @DLOPEN_LIBS@
DRI2PROTO_CFLAGS = @DRI2PROTO_CFLAGS@
DRI2PROTO_LIBS = @DRI2PROTO_LIBS@
DRIGL_CFLAGS = @DRIGL_CFLAGS@
DRIGL_LIBS = @DRIGL_LIBS@
DRI_DRIVER_INSTALL_DIR = @DRI_DRIVER_INSTALL_DIR@
DRI_DRIVER_SEARCH_DIR = @DRI_DRIVER_SEARCH_DIR@
DRI_LIB_DEPS = @DRI_LIB_DEPS@
DRI_PC_REQ_PRIV = @DRI_PC_REQ_PRIV@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGL_CFLAGS = @EGL_CFLAGS@
EGL_CLIENT_APIS = @EGL_CLIENT_APIS@
EGL_DRIVER_INSTALL_DIR = @EGL_DRIVER_INSTALL_DIR@
EGL_LIB_DEPS = @EGL_LIB_DEPS@
EGL_LIB_GLOB = @EGL_LIB_GLOB@
EGL_LIB_NAME = @EGL_LIB_NAME@
EGL_NATIVE_PLATFORM = @EGL_NATIVE_PLATFORM@
EGL_PLATFORMS = @EGL_PLATFORMS@
EGREP = @EGREP@
ELF_LIB = @ELF_LIB@
EXEEXT = @EXEEXT@
EXPAT_INCLUDES = @EXPAT_INCLUDES@
FGREP = @FGREP@
FREEDRENO_CFLAGS = @FREEDRENO_CFLAGS@
FREEDRENO_LIBS = @FREEDRENO_LIBS@
GALLIUM_DRI_LIB_DEPS = @GALLIUM_DRI_LIB_DEPS@
GALLIUM_PIPE_LOADER_DEFINES = @GALLIUM_PIPE_LOADER_DEFINES@
GALLIUM_PIPE_LOADER_LIBS = @GALLIUM_PIPE_LOADER_LIBS@
GALLIUM_PIPE_LOADER_XCB_CFLAGS = @GALLIUM_PIPE_LOADER_XCB_CFLAGS@
GALLIUM_PIPE_LOADER_XCB_LIBS = @GALLIUM_PIPE_LOADER_XCB_LIBS@
GBM_PC_LIB_PRIV = @GBM_PC_LIB_PRIV@
GBM_PC_REQ_PRIV = @GBM_PC_REQ_PRIV@
GLAPI_LIB_GLOB = @GLAPI_LIB_GLOB@
GLAPI_LIB_NAME = @GLAPI_LIB_NAME@
GLESv1_CM_LIB_DEPS = @GLESv1_CM_LIB_DEPS@
GLESv1_CM_LIB_GLOB = @GLESv1_CM_LIB_GLOB@
GLESv1_CM_LIB_NAME = @GLESv1_CM_LIB_NAME@
GLESv1_CM_PC_LIB_PRIV = @GLESv1_CM_PC_LIB_PRIV@
GLESv2_LIB_DEPS = @GLESv2_LIB_DEPS@
GLESv2_LIB_GLOB = @GLESv2_LIB_GLOB@
GLESv2_LIB_NAME = @GLESv2_LIB_NAME@
GLESv2_PC_LIB_PRIV = @GLESv2_PC_LIB_PRIV@
GLPROTO_CFLAGS = @GLPROTO_CFLAGS@
GLPROTO_LIBS = @GLPROTO_LIBS@
GLX_TLS = @GLX_TLS@
GL_LIB = @GL_LIB@
GL_LIB_DEPS = @GL_LIB_DEPS@
GL_LIB_GLOB = @GL_LIB_GLOB@
GL_LIB_NAME = @GL_LIB_NAME@
GL_PC_CFLAGS = @GL_PC_CFLAGS@
GL_PC_LIB_PRIV = @GL_PC_LIB_PRIV@
GL_PC_REQ_PRIV = @GL_PC_REQ_PRIV@
GREP = @GREP@
HAVE_XF86VIDMODE = @HAVE_XF86VIDMODE@
INDENT = @INDENT@
INDENT_FLAGS = @INDENT_FLAGS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTEL_CFLAGS = @INTEL_CFLAGS@
INTEL_LIBS = @INTEL_LIBS@
LD = $(proxyLD)
LDFLAGS = $(proxyLDFLAGS)
LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
LIBCLC_INCLUDEDIR = @LIBCLC_INCLUDEDIR@
LIBCLC_LIBEXECDIR = @LIBCLC_LIBEXECDIR@
LIBDRM_CFLAGS = @LIBDRM_CFLAGS@
LIBDRM_LIBS = @LIBDRM_LIBS@
LIBDRM_XORG_CFLAGS = @LIBDRM_XORG_CFLAGS@
LIBDRM_XORG_LIBS = @LIBDRM_XORG_LIBS@
LIBKMS_XORG_CFLAGS = @LIBKMS_XORG_CFLAGS@
LIBKMS_XORG_LIBS = @LIBKMS_XORG_LIBS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBUDEV_CFLAGS = @LIBUDEV_CFLAGS@
LIBUDEV_LIBS = @LIBUDEV_LIBS@
LIB_DIR = @LIB_DIR@
LIPO = @LIPO@
LLVM_BINDIR = @LLVM_BINDIR@
LLVM_CFLAGS = @LLVM_CFLAGS@
LLVM_CONFIG = @LLVM_CONFIG@
LLVM_CPPFLAGS = @LLVM_CPPFLAGS@
LLVM_CXXFLAGS = @LLVM_CXXFLAGS@
LLVM_INCLUDEDIR = @LLVM_INCLUDEDIR@
LLVM_LDFLAGS = @LLVM_LDFLAGS@
LLVM_LIBDIR = @LLVM_LIBDIR@
LLVM_LIBS = @LLVM_LIBS@
LLVM_VERSION = @LLVM_VERSION@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKE = @MAKE@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MESA_LLVM = @MESA_LLVM@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
NOUVEAU_CFLAGS = @NOUVEAU_CFLAGS@
NOUVEAU_LIBS = @NOUVEAU_LIBS@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OPENCL_LIB_INSTALL_DIR = @OPENCL_LIB_INSTALL_DIR@
OSMESA_LIB = @OSMESA_LIB@
OSMESA_LIB_DEPS = @OSMESA_LIB_DEPS@
OSMESA_LIB_NAME = @OSMESA_LIB_NAME@
OSMESA_MESA_DEPS = @OSMESA_MESA_DEPS@
OSMESA_PC_LIB_PRIV = @OSMESA_PC_LIB_PRIV@
OSMESA_PC_REQ = @OSMESA_PC_REQ@
OSMESA_VERSION = @OSMESA_VERSION@
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@
PERL = @PERL@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
POSIX_SHELL = @POSIX_SHELL@
PTHREAD_CC = @PTHREAD_CC@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_LIBS = @PTHREAD_LIBS@
PYTHON2 = @PYTHON2@
RADEON_CFLAGS = @RADEON_CFLAGS@
RADEON_LIBS = @RADEON_LIBS@
RANLIB = @RANLIB@
SED = @SED@
SELINUX_LIBS = @SELINUX_LIBS@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VDPAU_CFLAGS = @VDPAU_CFLAGS@
VDPAU_LIBS = @VDPAU_LIBS@
VDPAU_LIB_INSTALL_DIR = @VDPAU_LIB_INSTALL_DIR@
VDPAU_MAJOR = @VDPAU_MAJOR@
VDPAU_MINOR = @VDPAU_MINOR@
VERSION = @VERSION@
VG_LIB_DEPS = @VG_LIB_DEPS@
VG_LIB_GLOB = @VG_LIB_GLOB@
VG_LIB_NAME = @VG_LIB_NAME@
VG_PC_LIB_PRIV = @VG_PC_LIB_PRIV@
VISIBILITY_CFLAGS = @VISIBILITY_CFLAGS@
VISIBILITY_CXXFLAGS = @VISIBILITY_CXXFLAGS@
WAYLAND_CFLAGS = @WAYLAND_CFLAGS@
WAYLAND_LIBS = @WAYLAND_LIBS@
WAYLAND_SCANNER = @WAYLAND_SCANNER@
X11_INCLUDES = @X11_INCLUDES@
XA_MAJOR = @XA_MAJOR@
XA_MINOR = @XA_MINOR@
XA_TINY = @XA_TINY@
XA_VERSION = @XA_VERSION@
XCB_DRI2_CFLAGS = @XCB_DRI2_CFLAGS@
XCB_DRI2_LIBS = @XCB_DRI2_LIBS@
XEXT_CFLAGS = @XEXT_CFLAGS@
XEXT_LIBS = @XEXT_LIBS@
XF86VIDMODE_CFLAGS = @XF86VIDMODE_CFLAGS@
XF86VIDMODE_LIBS = @XF86VIDMODE_LIBS@
XLIBGL_CFLAGS = @XLIBGL_CFLAGS@
XLIBGL_LIBS = @XLIBGL_LIBS@
XORG_CFLAGS = @XORG_CFLAGS@
XORG_DRIVER_INSTALL_DIR = @XORG_DRIVER_INSTALL_DIR@
XORG_LIBS = @XORG_LIBS@
XVMC_CFLAGS = @XVMC_CFLAGS@
XVMC_LIBS = @XVMC_LIBS@
XVMC_LIB_INSTALL_DIR = @XVMC_LIB_INSTALL_DIR@
XVMC_MAJOR = @XVMC_MAJOR@
XVMC_MINOR = @XVMC_MINOR@
YACC = @YACC@
YFLAGS = @YFLAGS@
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_CC_FOR_BUILD = @ac_ct_CC_FOR_BUILD@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_CXX_FOR_BUILD = @ac_ct_CXX_FOR_BUILD@
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@
ax_pthread_config = @ax_pthread_config@
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 = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AM_CFLAGS = -I $(top_srcdir)/include -I $(top_srcdir)/src/mapi -I \
	$(top_srcdir)/src/mesa -I $(GLSL_SRCDIR) -I \
	$(GLSL_SRCDIR)/glcpp -I $(GLSL_BUILDDIR) $(VISIBILITY_CFLAGS) \
	$(am__append_1) $(am__append_2)
@CROSS_COMPILING_FALSE@proxyCC = @CC@
@CROSS_COMPILING_TRUE@proxyCC = @CC_FOR_BUILD@
@CROSS_COMPILING_FALSE@proxyCFLAGS = @CFLAGS@
@CROSS_COMPILING_TRUE@proxyCFLAGS = @CFLAGS_FOR_BUILD@
@CROSS_COMPILING_FALSE@proxyCPP = @CPP@
@CROSS_COMPILING_TRUE@proxyCPP = @CPP_FOR_BUILD@
@CROSS_COMPILING_FALSE@proxyCPPFLAGS = @CPPFLAGS@
@CROSS_COMPILING_TRUE@proxyCPPFLAGS = @CPPFLAGS_FOR_BUILD@
@CROSS_COMPILING_FALSE@proxyCXX = @CXX@
@CROSS_COMPILING_TRUE@proxyCXX = @CXX_FOR_BUILD@
@CROSS_COMPILING_FALSE@proxyCXXFLAGS = @CXXFLAGS@
@CROSS_COMPILING_TRUE@proxyCXXFLAGS = @CXXFLAGS_FOR_BUILD@
@CROSS_COMPILING_FALSE@proxyLD = @LD@
@CROSS_COMPILING_TRUE@proxyLD = @LD_FOR_BUILD@
@CROSS_COMPILING_FALSE@proxyLDFLAGS = @LDFLAGS@
@CROSS_COMPILING_TRUE@proxyLDFLAGS = @LDFLAGS_FOR_BUILD@
AM_CXXFLAGS = $(AM_CFLAGS)
GLSL_SRCDIR = $(top_srcdir)/src/glsl
GLSL_BUILDDIR = $(top_builddir)/src/glsl

# libglcpp
LIBGLCPP_FILES = \
	$(GLSL_SRCDIR)/ralloc.c \
	$(GLSL_SRCDIR)/glcpp/pp.c

LIBGLCPP_GENERATED_FILES = \
	$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c \
	$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c


# libglsl
LIBGLSL_FILES = \
	$(GLSL_SRCDIR)/ast_array_index.cpp \
	$(GLSL_SRCDIR)/ast_expr.cpp \
	$(GLSL_SRCDIR)/ast_function.cpp \
	$(GLSL_SRCDIR)/ast_to_hir.cpp \
	$(GLSL_SRCDIR)/ast_type.cpp \
	$(GLSL_SRCDIR)/builtin_types.cpp \
	$(GLSL_SRCDIR)/builtin_variables.cpp \
	$(GLSL_SRCDIR)/glsl_parser_extras.cpp \
	$(GLSL_SRCDIR)/glsl_types.cpp \
	$(GLSL_SRCDIR)/glsl_symbol_table.cpp \
	$(GLSL_SRCDIR)/hir_field_selection.cpp \
	$(GLSL_SRCDIR)/ir_basic_block.cpp \
	$(GLSL_SRCDIR)/ir_builder.cpp \
	$(GLSL_SRCDIR)/ir_clone.cpp \
	$(GLSL_SRCDIR)/ir_constant_expression.cpp \
	$(GLSL_SRCDIR)/ir.cpp \
	$(GLSL_SRCDIR)/ir_expression_flattening.cpp \
	$(GLSL_SRCDIR)/ir_function_can_inline.cpp \
	$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp \
	$(GLSL_SRCDIR)/ir_function.cpp \
	$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp \
	$(GLSL_SRCDIR)/ir_hv_accept.cpp \
	$(GLSL_SRCDIR)/ir_import_prototypes.cpp \
	$(GLSL_SRCDIR)/ir_print_visitor.cpp \
	$(GLSL_SRCDIR)/ir_reader.cpp \
	$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp \
	$(GLSL_SRCDIR)/ir_set_program_inouts.cpp \
	$(GLSL_SRCDIR)/ir_validate.cpp \
	$(GLSL_SRCDIR)/ir_variable_refcount.cpp \
	$(GLSL_SRCDIR)/linker.cpp \
	$(GLSL_SRCDIR)/link_functions.cpp \
	$(GLSL_SRCDIR)/link_interface_blocks.cpp \
	$(GLSL_SRCDIR)/link_uniforms.cpp \
	$(GLSL_SRCDIR)/link_uniform_initializers.cpp \
	$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp \
	$(GLSL_SRCDIR)/link_uniform_blocks.cpp \
	$(GLSL_SRCDIR)/link_varyings.cpp \
	$(GLSL_SRCDIR)/loop_analysis.cpp \
	$(GLSL_SRCDIR)/loop_controls.cpp \
	$(GLSL_SRCDIR)/loop_unroll.cpp \
	$(GLSL_SRCDIR)/lower_clip_distance.cpp \
	$(GLSL_SRCDIR)/lower_discard.cpp \
	$(GLSL_SRCDIR)/lower_discard_flow.cpp \
	$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_instructions.cpp \
	$(GLSL_SRCDIR)/lower_jumps.cpp \
	$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp \
	$(GLSL_SRCDIR)/lower_noise.cpp \
	$(GLSL_SRCDIR)/lower_packed_varyings.cpp \
	$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp \
	$(GLSL_SRCDIR)/lower_packing_builtins.cpp \
	$(GLSL_SRCDIR)/lower_texture_projection.cpp \
	$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp \
	$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp \
	$(GLSL_SRCDIR)/lower_vector.cpp \
	$(GLSL_SRCDIR)/lower_vector_insert.cpp \
	$(GLSL_SRCDIR)/lower_output_reads.cpp \
	$(GLSL_SRCDIR)/lower_ubo_reference.cpp \
	$(GLSL_SRCDIR)/opt_algebraic.cpp \
	$(GLSL_SRCDIR)/opt_array_splitting.cpp \
	$(GLSL_SRCDIR)/opt_constant_folding.cpp \
	$(GLSL_SRCDIR)/opt_constant_propagation.cpp \
	$(GLSL_SRCDIR)/opt_constant_variable.cpp \
	$(GLSL_SRCDIR)/opt_copy_propagation.cpp \
	$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp \
	$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp \
	$(GLSL_SRCDIR)/opt_dead_code.cpp \
	$(GLSL_SRCDIR)/opt_dead_code_local.cpp \
	$(GLSL_SRCDIR)/opt_dead_functions.cpp \
	$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp \
	$(GLSL_SRCDIR)/opt_flip_matrices.cpp \
	$(GLSL_SRCDIR)/opt_function_inlining.cpp \
	$(GLSL_SRCDIR)/opt_if_simplification.cpp \
	$(GLSL_SRCDIR)/opt_noop_swizzle.cpp \
	$(GLSL_SRCDIR)/opt_redundant_jumps.cpp \
	$(GLSL_SRCDIR)/opt_structure_splitting.cpp \
	$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp \
	$(GLSL_SRCDIR)/opt_tree_grafting.cpp \
	$(GLSL_SRCDIR)/s_expression.cpp \
	$(GLSL_SRCDIR)/strtod.c


# glsl_compiler
GLSL_COMPILER_CXX_FILES = \
	$(GLSL_SRCDIR)/standalone_scaffolding.cpp \
	$(GLSL_SRCDIR)/main.cpp


# builtin_compiler
#
# This is built before libglsl to generate builtin_function.cpp for libglsl.
# For this to work, a dummy version of builtin_function.cpp,
# builtin_stubs.cpp, is used.
BUILTIN_COMPILER_CXX_FILES = \
	$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp

BUILTIN_COMPILER_GENERATED_CXX_FILES = \
	$(GLSL_BUILDDIR)/glsl_lexer.cpp \
	$(GLSL_BUILDDIR)/glsl_parser.cpp


# libglsl generated sources
LIBGLSL_GENERATED_CXX_FILES = \
	$(BUILTIN_COMPILER_GENERATED_CXX_FILES) \
	$(GLSL_BUILDDIR)/builtin_function.cpp

@CROSS_COMPILING_FALSE@noinst_LTLIBRARIES = libglslcore.la libglcpp.la
@CROSS_COMPILING_FALSE@libglcpp_la_SOURCES = \
@CROSS_COMPILING_FALSE@	$(LIBGLCPP_GENERATED_FILES)			\
@CROSS_COMPILING_FALSE@	$(LIBGLCPP_FILES)

@CROSS_COMPILING_FALSE@libglslcore_la_SOURCES = \
@CROSS_COMPILING_FALSE@	$(BUILTIN_COMPILER_GENERATED_CXX_FILES)		\
@CROSS_COMPILING_FALSE@	$(LIBGLSL_FILES)

builtin_compiler_SOURCES = $(top_srcdir)/src/mesa/main/hash_table.c \
	$(top_srcdir)/src/mesa/main/imports.c \
	$(top_srcdir)/src/mesa/program/prog_hash_table.c \
	$(top_srcdir)/src/mesa/program/symbol_table.c \
	$(BUILTIN_COMPILER_CXX_FILES) $(GLSL_COMPILER_CXX_FILES) \
	$(am__append_3)
@CROSS_COMPILING_TRUE@builtin_compiler_CPPFLAGS = $(AM_CPPFLAGS)
@CROSS_COMPILING_FALSE@builtin_compiler_LDADD = libglslcore.la libglcpp.la
all: all-am

.SUFFIXES:
.SUFFIXES: .c .cpp .lo .o .obj
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(srcdir)/../Makefile.sources $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
	        && { if test -f $@; then exit 0; else break; fi; }; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/glsl/builtin_compiler/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign src/glsl/builtin_compiler/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
	esac;
$(srcdir)/../Makefile.sources:

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh

$(top_srcdir)/configure:  $(am__configure_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):

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}; \
	}

libglcpp.la: $(libglcpp_la_OBJECTS) $(libglcpp_la_DEPENDENCIES) $(EXTRA_libglcpp_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK) $(am_libglcpp_la_rpath) $(libglcpp_la_OBJECTS) $(libglcpp_la_LIBADD) $(LIBS)

libglslcore.la: $(libglslcore_la_OBJECTS) $(libglslcore_la_DEPENDENCIES) $(EXTRA_libglslcore_la_DEPENDENCIES) 
	$(AM_V_CXXLD)$(CXXLINK) $(am_libglslcore_la_rpath) $(libglslcore_la_OBJECTS) $(libglslcore_la_LIBADD) $(LIBS)

clean-noinstPROGRAMS:
	@list='$(noinst_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

builtin_compiler$(EXEEXT): $(builtin_compiler_OBJECTS) $(builtin_compiler_DEPENDENCIES) $(EXTRA_builtin_compiler_DEPENDENCIES) 
	@rm -f builtin_compiler$(EXEEXT)
	$(AM_V_CXXLD)$(CXXLINK) $(builtin_compiler_OBJECTS) $(builtin_compiler_LDADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)

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

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ast_array_index.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ast_expr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ast_function.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ast_to_hir.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ast_type.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ast_array_index.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ast_expr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ast_function.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ast_to_hir.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ast_type.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-builtin_stubs.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-builtin_types.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-builtin_variables.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-glcpp-lex.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-glcpp-parse.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-glsl_lexer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-glsl_parser.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-glsl_parser_extras.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-glsl_symbol_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-glsl_types.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-hash_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-hir_field_selection.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-imports.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_basic_block.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_builder.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_clone.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_constant_expression.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_expression_flattening.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_function.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_function_can_inline.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_function_detect_recursion.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_hierarchical_visitor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_hv_accept.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_import_prototypes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_print_visitor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_reader.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_rvalue_visitor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_set_program_inouts.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_validate.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ir_variable_refcount.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-link_functions.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-link_interface_blocks.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-link_uniform_block_active_visitor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-link_uniform_blocks.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-link_uniform_initializers.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-link_uniforms.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-link_varyings.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-linker.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-loop_analysis.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-loop_controls.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-loop_unroll.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_clip_distance.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_discard.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_discard_flow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_if_to_cond_assign.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_instructions.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_jumps.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_mat_op_to_vec.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_named_interface_blocks.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_noise.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_output_reads.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_packed_varyings.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_packing_builtins.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_texture_projection.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_ubo_reference.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_variable_index_to_cond_assign.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_vec_index_to_cond_assign.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_vec_index_to_swizzle.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_vector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-lower_vector_insert.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_algebraic.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_array_splitting.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_constant_folding.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_constant_propagation.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_constant_variable.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_copy_propagation.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_copy_propagation_elements.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_dead_builtin_varyings.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_dead_code.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_dead_code_local.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_dead_functions.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_flatten_nested_if_blocks.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_flip_matrices.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_function_inlining.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_if_simplification.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_noop_swizzle.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_redundant_jumps.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_structure_splitting.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_swizzle_swizzle.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-opt_tree_grafting.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-pp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-prog_hash_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-ralloc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-s_expression.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-standalone_scaffolding.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-strtod.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_compiler-symbol_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_types.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/builtin_variables.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glcpp-lex.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glcpp-parse.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glsl_lexer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glsl_parser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glsl_parser_extras.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glsl_symbol_table.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glsl_types.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hir_field_selection.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_basic_block.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_builder.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_clone.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_constant_expression.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_expression_flattening.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_function.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_function_can_inline.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_function_detect_recursion.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_hierarchical_visitor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_hv_accept.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_import_prototypes.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_print_visitor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_reader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_rvalue_visitor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_set_program_inouts.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_validate.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ir_variable_refcount.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_functions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_interface_blocks.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_uniform_block_active_visitor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_uniform_blocks.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_uniform_initializers.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_uniforms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_varyings.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linker.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loop_analysis.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loop_controls.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loop_unroll.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_clip_distance.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_discard.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_discard_flow.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_if_to_cond_assign.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_instructions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_jumps.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_mat_op_to_vec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_named_interface_blocks.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_noise.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_output_reads.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_packed_varyings.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_packing_builtins.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_texture_projection.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_ubo_reference.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_variable_index_to_cond_assign.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_vec_index_to_cond_assign.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_vec_index_to_swizzle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_vector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lower_vector_insert.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_algebraic.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_array_splitting.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_constant_folding.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_constant_propagation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_constant_variable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_copy_propagation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_copy_propagation_elements.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_dead_builtin_varyings.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_dead_code.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_dead_code_local.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_dead_functions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_flatten_nested_if_blocks.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_flip_matrices.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_function_inlining.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_if_simplification.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_noop_swizzle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_redundant_jumps.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_structure_splitting.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_swizzle_swizzle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_tree_grafting.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ralloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_expression.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtod.Plo@am__quote@

.c.o:
@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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 $@ $<

glcpp-lex.lo: $(GLSL_BUILDDIR)/glcpp/glcpp-lex.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) $(AM_CFLAGS) $(CFLAGS) -MT glcpp-lex.lo -MD -MP -MF $(DEPDIR)/glcpp-lex.Tpo -c -o glcpp-lex.lo `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/glcpp-lex.Tpo $(DEPDIR)/glcpp-lex.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c' object='glcpp-lex.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) $(AM_CFLAGS) $(CFLAGS) -c -o glcpp-lex.lo `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c

glcpp-parse.lo: $(GLSL_BUILDDIR)/glcpp/glcpp-parse.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) $(AM_CFLAGS) $(CFLAGS) -MT glcpp-parse.lo -MD -MP -MF $(DEPDIR)/glcpp-parse.Tpo -c -o glcpp-parse.lo `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/glcpp-parse.Tpo $(DEPDIR)/glcpp-parse.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c' object='glcpp-parse.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) $(AM_CFLAGS) $(CFLAGS) -c -o glcpp-parse.lo `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c

ralloc.lo: $(GLSL_SRCDIR)/ralloc.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) $(AM_CFLAGS) $(CFLAGS) -MT ralloc.lo -MD -MP -MF $(DEPDIR)/ralloc.Tpo -c -o ralloc.lo `test -f '$(GLSL_SRCDIR)/ralloc.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ralloc.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ralloc.Tpo $(DEPDIR)/ralloc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/ralloc.c' object='ralloc.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) $(AM_CFLAGS) $(CFLAGS) -c -o ralloc.lo `test -f '$(GLSL_SRCDIR)/ralloc.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ralloc.c

pp.lo: $(GLSL_SRCDIR)/glcpp/pp.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) $(AM_CFLAGS) $(CFLAGS) -MT pp.lo -MD -MP -MF $(DEPDIR)/pp.Tpo -c -o pp.lo `test -f '$(GLSL_SRCDIR)/glcpp/pp.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glcpp/pp.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/pp.Tpo $(DEPDIR)/pp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/glcpp/pp.c' object='pp.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) $(AM_CFLAGS) $(CFLAGS) -c -o pp.lo `test -f '$(GLSL_SRCDIR)/glcpp/pp.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glcpp/pp.c

strtod.lo: $(GLSL_SRCDIR)/strtod.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) $(AM_CFLAGS) $(CFLAGS) -MT strtod.lo -MD -MP -MF $(DEPDIR)/strtod.Tpo -c -o strtod.lo `test -f '$(GLSL_SRCDIR)/strtod.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/strtod.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/strtod.Tpo $(DEPDIR)/strtod.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/strtod.c' object='strtod.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) $(AM_CFLAGS) $(CFLAGS) -c -o strtod.lo `test -f '$(GLSL_SRCDIR)/strtod.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/strtod.c

builtin_compiler-hash_table.o: $(top_srcdir)/src/mesa/main/hash_table.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-hash_table.o -MD -MP -MF $(DEPDIR)/builtin_compiler-hash_table.Tpo -c -o builtin_compiler-hash_table.o `test -f '$(top_srcdir)/src/mesa/main/hash_table.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/main/hash_table.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-hash_table.Tpo $(DEPDIR)/builtin_compiler-hash_table.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/main/hash_table.c' object='builtin_compiler-hash_table.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-hash_table.o `test -f '$(top_srcdir)/src/mesa/main/hash_table.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/main/hash_table.c

builtin_compiler-hash_table.obj: $(top_srcdir)/src/mesa/main/hash_table.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-hash_table.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-hash_table.Tpo -c -o builtin_compiler-hash_table.obj `if test -f '$(top_srcdir)/src/mesa/main/hash_table.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/main/hash_table.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/main/hash_table.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-hash_table.Tpo $(DEPDIR)/builtin_compiler-hash_table.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/main/hash_table.c' object='builtin_compiler-hash_table.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-hash_table.obj `if test -f '$(top_srcdir)/src/mesa/main/hash_table.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/main/hash_table.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/main/hash_table.c'; fi`

builtin_compiler-imports.o: $(top_srcdir)/src/mesa/main/imports.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-imports.o -MD -MP -MF $(DEPDIR)/builtin_compiler-imports.Tpo -c -o builtin_compiler-imports.o `test -f '$(top_srcdir)/src/mesa/main/imports.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/main/imports.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-imports.Tpo $(DEPDIR)/builtin_compiler-imports.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/main/imports.c' object='builtin_compiler-imports.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-imports.o `test -f '$(top_srcdir)/src/mesa/main/imports.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/main/imports.c

builtin_compiler-imports.obj: $(top_srcdir)/src/mesa/main/imports.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-imports.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-imports.Tpo -c -o builtin_compiler-imports.obj `if test -f '$(top_srcdir)/src/mesa/main/imports.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/main/imports.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/main/imports.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-imports.Tpo $(DEPDIR)/builtin_compiler-imports.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/main/imports.c' object='builtin_compiler-imports.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-imports.obj `if test -f '$(top_srcdir)/src/mesa/main/imports.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/main/imports.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/main/imports.c'; fi`

builtin_compiler-prog_hash_table.o: $(top_srcdir)/src/mesa/program/prog_hash_table.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-prog_hash_table.o -MD -MP -MF $(DEPDIR)/builtin_compiler-prog_hash_table.Tpo -c -o builtin_compiler-prog_hash_table.o `test -f '$(top_srcdir)/src/mesa/program/prog_hash_table.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/program/prog_hash_table.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-prog_hash_table.Tpo $(DEPDIR)/builtin_compiler-prog_hash_table.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/program/prog_hash_table.c' object='builtin_compiler-prog_hash_table.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-prog_hash_table.o `test -f '$(top_srcdir)/src/mesa/program/prog_hash_table.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/program/prog_hash_table.c

builtin_compiler-prog_hash_table.obj: $(top_srcdir)/src/mesa/program/prog_hash_table.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-prog_hash_table.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-prog_hash_table.Tpo -c -o builtin_compiler-prog_hash_table.obj `if test -f '$(top_srcdir)/src/mesa/program/prog_hash_table.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/program/prog_hash_table.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/program/prog_hash_table.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-prog_hash_table.Tpo $(DEPDIR)/builtin_compiler-prog_hash_table.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/program/prog_hash_table.c' object='builtin_compiler-prog_hash_table.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-prog_hash_table.obj `if test -f '$(top_srcdir)/src/mesa/program/prog_hash_table.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/program/prog_hash_table.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/program/prog_hash_table.c'; fi`

builtin_compiler-symbol_table.o: $(top_srcdir)/src/mesa/program/symbol_table.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-symbol_table.o -MD -MP -MF $(DEPDIR)/builtin_compiler-symbol_table.Tpo -c -o builtin_compiler-symbol_table.o `test -f '$(top_srcdir)/src/mesa/program/symbol_table.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/program/symbol_table.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-symbol_table.Tpo $(DEPDIR)/builtin_compiler-symbol_table.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/program/symbol_table.c' object='builtin_compiler-symbol_table.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-symbol_table.o `test -f '$(top_srcdir)/src/mesa/program/symbol_table.c' || echo '$(srcdir)/'`$(top_srcdir)/src/mesa/program/symbol_table.c

builtin_compiler-symbol_table.obj: $(top_srcdir)/src/mesa/program/symbol_table.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-symbol_table.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-symbol_table.Tpo -c -o builtin_compiler-symbol_table.obj `if test -f '$(top_srcdir)/src/mesa/program/symbol_table.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/program/symbol_table.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/program/symbol_table.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-symbol_table.Tpo $(DEPDIR)/builtin_compiler-symbol_table.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(top_srcdir)/src/mesa/program/symbol_table.c' object='builtin_compiler-symbol_table.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-symbol_table.obj `if test -f '$(top_srcdir)/src/mesa/program/symbol_table.c'; then $(CYGPATH_W) '$(top_srcdir)/src/mesa/program/symbol_table.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/mesa/program/symbol_table.c'; fi`

builtin_compiler-glcpp-lex.o: $(GLSL_BUILDDIR)/glcpp/glcpp-lex.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-glcpp-lex.o -MD -MP -MF $(DEPDIR)/builtin_compiler-glcpp-lex.Tpo -c -o builtin_compiler-glcpp-lex.o `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glcpp-lex.Tpo $(DEPDIR)/builtin_compiler-glcpp-lex.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c' object='builtin_compiler-glcpp-lex.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-glcpp-lex.o `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c

builtin_compiler-glcpp-lex.obj: $(GLSL_BUILDDIR)/glcpp/glcpp-lex.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-glcpp-lex.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-glcpp-lex.Tpo -c -o builtin_compiler-glcpp-lex.obj `if test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glcpp-lex.Tpo $(DEPDIR)/builtin_compiler-glcpp-lex.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c' object='builtin_compiler-glcpp-lex.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-glcpp-lex.obj `if test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glcpp/glcpp-lex.c'; fi`

builtin_compiler-glcpp-parse.o: $(GLSL_BUILDDIR)/glcpp/glcpp-parse.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-glcpp-parse.o -MD -MP -MF $(DEPDIR)/builtin_compiler-glcpp-parse.Tpo -c -o builtin_compiler-glcpp-parse.o `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glcpp-parse.Tpo $(DEPDIR)/builtin_compiler-glcpp-parse.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c' object='builtin_compiler-glcpp-parse.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-glcpp-parse.o `test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c

builtin_compiler-glcpp-parse.obj: $(GLSL_BUILDDIR)/glcpp/glcpp-parse.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-glcpp-parse.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-glcpp-parse.Tpo -c -o builtin_compiler-glcpp-parse.obj `if test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glcpp-parse.Tpo $(DEPDIR)/builtin_compiler-glcpp-parse.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c' object='builtin_compiler-glcpp-parse.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-glcpp-parse.obj `if test -f '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glcpp/glcpp-parse.c'; fi`

builtin_compiler-ralloc.o: $(GLSL_SRCDIR)/ralloc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-ralloc.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ralloc.Tpo -c -o builtin_compiler-ralloc.o `test -f '$(GLSL_SRCDIR)/ralloc.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ralloc.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ralloc.Tpo $(DEPDIR)/builtin_compiler-ralloc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/ralloc.c' object='builtin_compiler-ralloc.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-ralloc.o `test -f '$(GLSL_SRCDIR)/ralloc.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ralloc.c

builtin_compiler-ralloc.obj: $(GLSL_SRCDIR)/ralloc.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-ralloc.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ralloc.Tpo -c -o builtin_compiler-ralloc.obj `if test -f '$(GLSL_SRCDIR)/ralloc.c'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ralloc.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ralloc.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ralloc.Tpo $(DEPDIR)/builtin_compiler-ralloc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/ralloc.c' object='builtin_compiler-ralloc.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-ralloc.obj `if test -f '$(GLSL_SRCDIR)/ralloc.c'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ralloc.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ralloc.c'; fi`

builtin_compiler-pp.o: $(GLSL_SRCDIR)/glcpp/pp.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-pp.o -MD -MP -MF $(DEPDIR)/builtin_compiler-pp.Tpo -c -o builtin_compiler-pp.o `test -f '$(GLSL_SRCDIR)/glcpp/pp.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glcpp/pp.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-pp.Tpo $(DEPDIR)/builtin_compiler-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/glcpp/pp.c' object='builtin_compiler-pp.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-pp.o `test -f '$(GLSL_SRCDIR)/glcpp/pp.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glcpp/pp.c

builtin_compiler-pp.obj: $(GLSL_SRCDIR)/glcpp/pp.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-pp.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-pp.Tpo -c -o builtin_compiler-pp.obj `if test -f '$(GLSL_SRCDIR)/glcpp/pp.c'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glcpp/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glcpp/pp.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-pp.Tpo $(DEPDIR)/builtin_compiler-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/glcpp/pp.c' object='builtin_compiler-pp.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-pp.obj `if test -f '$(GLSL_SRCDIR)/glcpp/pp.c'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glcpp/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glcpp/pp.c'; fi`

builtin_compiler-strtod.o: $(GLSL_SRCDIR)/strtod.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-strtod.o -MD -MP -MF $(DEPDIR)/builtin_compiler-strtod.Tpo -c -o builtin_compiler-strtod.o `test -f '$(GLSL_SRCDIR)/strtod.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/strtod.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-strtod.Tpo $(DEPDIR)/builtin_compiler-strtod.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/strtod.c' object='builtin_compiler-strtod.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-strtod.o `test -f '$(GLSL_SRCDIR)/strtod.c' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/strtod.c

builtin_compiler-strtod.obj: $(GLSL_SRCDIR)/strtod.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT builtin_compiler-strtod.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-strtod.Tpo -c -o builtin_compiler-strtod.obj `if test -f '$(GLSL_SRCDIR)/strtod.c'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/strtod.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/strtod.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-strtod.Tpo $(DEPDIR)/builtin_compiler-strtod.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$(GLSL_SRCDIR)/strtod.c' object='builtin_compiler-strtod.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) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o builtin_compiler-strtod.obj `if test -f '$(GLSL_SRCDIR)/strtod.c'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/strtod.c'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/strtod.c'; fi`

.cpp.o:
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<

.cpp.obj:
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`

.cpp.lo:
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<

glsl_lexer.lo: $(GLSL_BUILDDIR)/glsl_lexer.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT glsl_lexer.lo -MD -MP -MF $(DEPDIR)/glsl_lexer.Tpo -c -o glsl_lexer.lo `test -f '$(GLSL_BUILDDIR)/glsl_lexer.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_lexer.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/glsl_lexer.Tpo $(DEPDIR)/glsl_lexer.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_BUILDDIR)/glsl_lexer.cpp' object='glsl_lexer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o glsl_lexer.lo `test -f '$(GLSL_BUILDDIR)/glsl_lexer.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_lexer.cpp

glsl_parser.lo: $(GLSL_BUILDDIR)/glsl_parser.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT glsl_parser.lo -MD -MP -MF $(DEPDIR)/glsl_parser.Tpo -c -o glsl_parser.lo `test -f '$(GLSL_BUILDDIR)/glsl_parser.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_parser.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/glsl_parser.Tpo $(DEPDIR)/glsl_parser.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_BUILDDIR)/glsl_parser.cpp' object='glsl_parser.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o glsl_parser.lo `test -f '$(GLSL_BUILDDIR)/glsl_parser.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_parser.cpp

ast_array_index.lo: $(GLSL_SRCDIR)/ast_array_index.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ast_array_index.lo -MD -MP -MF $(DEPDIR)/ast_array_index.Tpo -c -o ast_array_index.lo `test -f '$(GLSL_SRCDIR)/ast_array_index.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_array_index.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ast_array_index.Tpo $(DEPDIR)/ast_array_index.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_array_index.cpp' object='ast_array_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ast_array_index.lo `test -f '$(GLSL_SRCDIR)/ast_array_index.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_array_index.cpp

ast_expr.lo: $(GLSL_SRCDIR)/ast_expr.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ast_expr.lo -MD -MP -MF $(DEPDIR)/ast_expr.Tpo -c -o ast_expr.lo `test -f '$(GLSL_SRCDIR)/ast_expr.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_expr.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ast_expr.Tpo $(DEPDIR)/ast_expr.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_expr.cpp' object='ast_expr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ast_expr.lo `test -f '$(GLSL_SRCDIR)/ast_expr.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_expr.cpp

ast_function.lo: $(GLSL_SRCDIR)/ast_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ast_function.lo -MD -MP -MF $(DEPDIR)/ast_function.Tpo -c -o ast_function.lo `test -f '$(GLSL_SRCDIR)/ast_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ast_function.Tpo $(DEPDIR)/ast_function.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_function.cpp' object='ast_function.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ast_function.lo `test -f '$(GLSL_SRCDIR)/ast_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_function.cpp

ast_to_hir.lo: $(GLSL_SRCDIR)/ast_to_hir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ast_to_hir.lo -MD -MP -MF $(DEPDIR)/ast_to_hir.Tpo -c -o ast_to_hir.lo `test -f '$(GLSL_SRCDIR)/ast_to_hir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_to_hir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ast_to_hir.Tpo $(DEPDIR)/ast_to_hir.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_to_hir.cpp' object='ast_to_hir.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ast_to_hir.lo `test -f '$(GLSL_SRCDIR)/ast_to_hir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_to_hir.cpp

ast_type.lo: $(GLSL_SRCDIR)/ast_type.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ast_type.lo -MD -MP -MF $(DEPDIR)/ast_type.Tpo -c -o ast_type.lo `test -f '$(GLSL_SRCDIR)/ast_type.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_type.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ast_type.Tpo $(DEPDIR)/ast_type.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_type.cpp' object='ast_type.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ast_type.lo `test -f '$(GLSL_SRCDIR)/ast_type.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_type.cpp

builtin_types.lo: $(GLSL_SRCDIR)/builtin_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_types.lo -MD -MP -MF $(DEPDIR)/builtin_types.Tpo -c -o builtin_types.lo `test -f '$(GLSL_SRCDIR)/builtin_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_types.Tpo $(DEPDIR)/builtin_types.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_types.cpp' object='builtin_types.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_types.lo `test -f '$(GLSL_SRCDIR)/builtin_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_types.cpp

builtin_variables.lo: $(GLSL_SRCDIR)/builtin_variables.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_variables.lo -MD -MP -MF $(DEPDIR)/builtin_variables.Tpo -c -o builtin_variables.lo `test -f '$(GLSL_SRCDIR)/builtin_variables.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_variables.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_variables.Tpo $(DEPDIR)/builtin_variables.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_variables.cpp' object='builtin_variables.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_variables.lo `test -f '$(GLSL_SRCDIR)/builtin_variables.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_variables.cpp

glsl_parser_extras.lo: $(GLSL_SRCDIR)/glsl_parser_extras.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT glsl_parser_extras.lo -MD -MP -MF $(DEPDIR)/glsl_parser_extras.Tpo -c -o glsl_parser_extras.lo `test -f '$(GLSL_SRCDIR)/glsl_parser_extras.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_parser_extras.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/glsl_parser_extras.Tpo $(DEPDIR)/glsl_parser_extras.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_parser_extras.cpp' object='glsl_parser_extras.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o glsl_parser_extras.lo `test -f '$(GLSL_SRCDIR)/glsl_parser_extras.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_parser_extras.cpp

glsl_types.lo: $(GLSL_SRCDIR)/glsl_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT glsl_types.lo -MD -MP -MF $(DEPDIR)/glsl_types.Tpo -c -o glsl_types.lo `test -f '$(GLSL_SRCDIR)/glsl_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/glsl_types.Tpo $(DEPDIR)/glsl_types.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_types.cpp' object='glsl_types.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o glsl_types.lo `test -f '$(GLSL_SRCDIR)/glsl_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_types.cpp

glsl_symbol_table.lo: $(GLSL_SRCDIR)/glsl_symbol_table.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT glsl_symbol_table.lo -MD -MP -MF $(DEPDIR)/glsl_symbol_table.Tpo -c -o glsl_symbol_table.lo `test -f '$(GLSL_SRCDIR)/glsl_symbol_table.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_symbol_table.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/glsl_symbol_table.Tpo $(DEPDIR)/glsl_symbol_table.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_symbol_table.cpp' object='glsl_symbol_table.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o glsl_symbol_table.lo `test -f '$(GLSL_SRCDIR)/glsl_symbol_table.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_symbol_table.cpp

hir_field_selection.lo: $(GLSL_SRCDIR)/hir_field_selection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT hir_field_selection.lo -MD -MP -MF $(DEPDIR)/hir_field_selection.Tpo -c -o hir_field_selection.lo `test -f '$(GLSL_SRCDIR)/hir_field_selection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/hir_field_selection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/hir_field_selection.Tpo $(DEPDIR)/hir_field_selection.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/hir_field_selection.cpp' object='hir_field_selection.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o hir_field_selection.lo `test -f '$(GLSL_SRCDIR)/hir_field_selection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/hir_field_selection.cpp

ir_basic_block.lo: $(GLSL_SRCDIR)/ir_basic_block.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_basic_block.lo -MD -MP -MF $(DEPDIR)/ir_basic_block.Tpo -c -o ir_basic_block.lo `test -f '$(GLSL_SRCDIR)/ir_basic_block.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_basic_block.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_basic_block.Tpo $(DEPDIR)/ir_basic_block.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_basic_block.cpp' object='ir_basic_block.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_basic_block.lo `test -f '$(GLSL_SRCDIR)/ir_basic_block.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_basic_block.cpp

ir_builder.lo: $(GLSL_SRCDIR)/ir_builder.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_builder.lo -MD -MP -MF $(DEPDIR)/ir_builder.Tpo -c -o ir_builder.lo `test -f '$(GLSL_SRCDIR)/ir_builder.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_builder.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_builder.Tpo $(DEPDIR)/ir_builder.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_builder.cpp' object='ir_builder.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_builder.lo `test -f '$(GLSL_SRCDIR)/ir_builder.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_builder.cpp

ir_clone.lo: $(GLSL_SRCDIR)/ir_clone.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_clone.lo -MD -MP -MF $(DEPDIR)/ir_clone.Tpo -c -o ir_clone.lo `test -f '$(GLSL_SRCDIR)/ir_clone.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_clone.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_clone.Tpo $(DEPDIR)/ir_clone.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_clone.cpp' object='ir_clone.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_clone.lo `test -f '$(GLSL_SRCDIR)/ir_clone.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_clone.cpp

ir_constant_expression.lo: $(GLSL_SRCDIR)/ir_constant_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_constant_expression.lo -MD -MP -MF $(DEPDIR)/ir_constant_expression.Tpo -c -o ir_constant_expression.lo `test -f '$(GLSL_SRCDIR)/ir_constant_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_constant_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_constant_expression.Tpo $(DEPDIR)/ir_constant_expression.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_constant_expression.cpp' object='ir_constant_expression.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_constant_expression.lo `test -f '$(GLSL_SRCDIR)/ir_constant_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_constant_expression.cpp

ir.lo: $(GLSL_SRCDIR)/ir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir.lo -MD -MP -MF $(DEPDIR)/ir.Tpo -c -o ir.lo `test -f '$(GLSL_SRCDIR)/ir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir.Tpo $(DEPDIR)/ir.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir.cpp' object='ir.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir.lo `test -f '$(GLSL_SRCDIR)/ir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir.cpp

ir_expression_flattening.lo: $(GLSL_SRCDIR)/ir_expression_flattening.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_expression_flattening.lo -MD -MP -MF $(DEPDIR)/ir_expression_flattening.Tpo -c -o ir_expression_flattening.lo `test -f '$(GLSL_SRCDIR)/ir_expression_flattening.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_expression_flattening.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_expression_flattening.Tpo $(DEPDIR)/ir_expression_flattening.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_expression_flattening.cpp' object='ir_expression_flattening.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_expression_flattening.lo `test -f '$(GLSL_SRCDIR)/ir_expression_flattening.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_expression_flattening.cpp

ir_function_can_inline.lo: $(GLSL_SRCDIR)/ir_function_can_inline.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_function_can_inline.lo -MD -MP -MF $(DEPDIR)/ir_function_can_inline.Tpo -c -o ir_function_can_inline.lo `test -f '$(GLSL_SRCDIR)/ir_function_can_inline.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_can_inline.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_function_can_inline.Tpo $(DEPDIR)/ir_function_can_inline.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function_can_inline.cpp' object='ir_function_can_inline.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_function_can_inline.lo `test -f '$(GLSL_SRCDIR)/ir_function_can_inline.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_can_inline.cpp

ir_function_detect_recursion.lo: $(GLSL_SRCDIR)/ir_function_detect_recursion.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_function_detect_recursion.lo -MD -MP -MF $(DEPDIR)/ir_function_detect_recursion.Tpo -c -o ir_function_detect_recursion.lo `test -f '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_function_detect_recursion.Tpo $(DEPDIR)/ir_function_detect_recursion.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp' object='ir_function_detect_recursion.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_function_detect_recursion.lo `test -f '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp

ir_function.lo: $(GLSL_SRCDIR)/ir_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_function.lo -MD -MP -MF $(DEPDIR)/ir_function.Tpo -c -o ir_function.lo `test -f '$(GLSL_SRCDIR)/ir_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_function.Tpo $(DEPDIR)/ir_function.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function.cpp' object='ir_function.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_function.lo `test -f '$(GLSL_SRCDIR)/ir_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function.cpp

ir_hierarchical_visitor.lo: $(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_hierarchical_visitor.lo -MD -MP -MF $(DEPDIR)/ir_hierarchical_visitor.Tpo -c -o ir_hierarchical_visitor.lo `test -f '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_hierarchical_visitor.Tpo $(DEPDIR)/ir_hierarchical_visitor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp' object='ir_hierarchical_visitor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_hierarchical_visitor.lo `test -f '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp

ir_hv_accept.lo: $(GLSL_SRCDIR)/ir_hv_accept.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_hv_accept.lo -MD -MP -MF $(DEPDIR)/ir_hv_accept.Tpo -c -o ir_hv_accept.lo `test -f '$(GLSL_SRCDIR)/ir_hv_accept.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hv_accept.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_hv_accept.Tpo $(DEPDIR)/ir_hv_accept.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_hv_accept.cpp' object='ir_hv_accept.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_hv_accept.lo `test -f '$(GLSL_SRCDIR)/ir_hv_accept.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hv_accept.cpp

ir_import_prototypes.lo: $(GLSL_SRCDIR)/ir_import_prototypes.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_import_prototypes.lo -MD -MP -MF $(DEPDIR)/ir_import_prototypes.Tpo -c -o ir_import_prototypes.lo `test -f '$(GLSL_SRCDIR)/ir_import_prototypes.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_import_prototypes.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_import_prototypes.Tpo $(DEPDIR)/ir_import_prototypes.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_import_prototypes.cpp' object='ir_import_prototypes.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_import_prototypes.lo `test -f '$(GLSL_SRCDIR)/ir_import_prototypes.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_import_prototypes.cpp

ir_print_visitor.lo: $(GLSL_SRCDIR)/ir_print_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_print_visitor.lo -MD -MP -MF $(DEPDIR)/ir_print_visitor.Tpo -c -o ir_print_visitor.lo `test -f '$(GLSL_SRCDIR)/ir_print_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_print_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_print_visitor.Tpo $(DEPDIR)/ir_print_visitor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_print_visitor.cpp' object='ir_print_visitor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_print_visitor.lo `test -f '$(GLSL_SRCDIR)/ir_print_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_print_visitor.cpp

ir_reader.lo: $(GLSL_SRCDIR)/ir_reader.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_reader.lo -MD -MP -MF $(DEPDIR)/ir_reader.Tpo -c -o ir_reader.lo `test -f '$(GLSL_SRCDIR)/ir_reader.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_reader.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_reader.Tpo $(DEPDIR)/ir_reader.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_reader.cpp' object='ir_reader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_reader.lo `test -f '$(GLSL_SRCDIR)/ir_reader.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_reader.cpp

ir_rvalue_visitor.lo: $(GLSL_SRCDIR)/ir_rvalue_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_rvalue_visitor.lo -MD -MP -MF $(DEPDIR)/ir_rvalue_visitor.Tpo -c -o ir_rvalue_visitor.lo `test -f '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_rvalue_visitor.Tpo $(DEPDIR)/ir_rvalue_visitor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp' object='ir_rvalue_visitor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_rvalue_visitor.lo `test -f '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp

ir_set_program_inouts.lo: $(GLSL_SRCDIR)/ir_set_program_inouts.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_set_program_inouts.lo -MD -MP -MF $(DEPDIR)/ir_set_program_inouts.Tpo -c -o ir_set_program_inouts.lo `test -f '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_set_program_inouts.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_set_program_inouts.Tpo $(DEPDIR)/ir_set_program_inouts.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_set_program_inouts.cpp' object='ir_set_program_inouts.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_set_program_inouts.lo `test -f '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_set_program_inouts.cpp

ir_validate.lo: $(GLSL_SRCDIR)/ir_validate.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_validate.lo -MD -MP -MF $(DEPDIR)/ir_validate.Tpo -c -o ir_validate.lo `test -f '$(GLSL_SRCDIR)/ir_validate.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_validate.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_validate.Tpo $(DEPDIR)/ir_validate.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_validate.cpp' object='ir_validate.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_validate.lo `test -f '$(GLSL_SRCDIR)/ir_validate.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_validate.cpp

ir_variable_refcount.lo: $(GLSL_SRCDIR)/ir_variable_refcount.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ir_variable_refcount.lo -MD -MP -MF $(DEPDIR)/ir_variable_refcount.Tpo -c -o ir_variable_refcount.lo `test -f '$(GLSL_SRCDIR)/ir_variable_refcount.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_variable_refcount.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ir_variable_refcount.Tpo $(DEPDIR)/ir_variable_refcount.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_variable_refcount.cpp' object='ir_variable_refcount.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ir_variable_refcount.lo `test -f '$(GLSL_SRCDIR)/ir_variable_refcount.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_variable_refcount.cpp

linker.lo: $(GLSL_SRCDIR)/linker.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT linker.lo -MD -MP -MF $(DEPDIR)/linker.Tpo -c -o linker.lo `test -f '$(GLSL_SRCDIR)/linker.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/linker.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/linker.Tpo $(DEPDIR)/linker.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/linker.cpp' object='linker.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o linker.lo `test -f '$(GLSL_SRCDIR)/linker.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/linker.cpp

link_functions.lo: $(GLSL_SRCDIR)/link_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT link_functions.lo -MD -MP -MF $(DEPDIR)/link_functions.Tpo -c -o link_functions.lo `test -f '$(GLSL_SRCDIR)/link_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/link_functions.Tpo $(DEPDIR)/link_functions.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_functions.cpp' object='link_functions.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o link_functions.lo `test -f '$(GLSL_SRCDIR)/link_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_functions.cpp

link_interface_blocks.lo: $(GLSL_SRCDIR)/link_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT link_interface_blocks.lo -MD -MP -MF $(DEPDIR)/link_interface_blocks.Tpo -c -o link_interface_blocks.lo `test -f '$(GLSL_SRCDIR)/link_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/link_interface_blocks.Tpo $(DEPDIR)/link_interface_blocks.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_interface_blocks.cpp' object='link_interface_blocks.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o link_interface_blocks.lo `test -f '$(GLSL_SRCDIR)/link_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_interface_blocks.cpp

link_uniforms.lo: $(GLSL_SRCDIR)/link_uniforms.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT link_uniforms.lo -MD -MP -MF $(DEPDIR)/link_uniforms.Tpo -c -o link_uniforms.lo `test -f '$(GLSL_SRCDIR)/link_uniforms.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniforms.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/link_uniforms.Tpo $(DEPDIR)/link_uniforms.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniforms.cpp' object='link_uniforms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o link_uniforms.lo `test -f '$(GLSL_SRCDIR)/link_uniforms.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniforms.cpp

link_uniform_initializers.lo: $(GLSL_SRCDIR)/link_uniform_initializers.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT link_uniform_initializers.lo -MD -MP -MF $(DEPDIR)/link_uniform_initializers.Tpo -c -o link_uniform_initializers.lo `test -f '$(GLSL_SRCDIR)/link_uniform_initializers.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_initializers.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/link_uniform_initializers.Tpo $(DEPDIR)/link_uniform_initializers.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_initializers.cpp' object='link_uniform_initializers.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o link_uniform_initializers.lo `test -f '$(GLSL_SRCDIR)/link_uniform_initializers.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_initializers.cpp

link_uniform_block_active_visitor.lo: $(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT link_uniform_block_active_visitor.lo -MD -MP -MF $(DEPDIR)/link_uniform_block_active_visitor.Tpo -c -o link_uniform_block_active_visitor.lo `test -f '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/link_uniform_block_active_visitor.Tpo $(DEPDIR)/link_uniform_block_active_visitor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp' object='link_uniform_block_active_visitor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o link_uniform_block_active_visitor.lo `test -f '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp

link_uniform_blocks.lo: $(GLSL_SRCDIR)/link_uniform_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT link_uniform_blocks.lo -MD -MP -MF $(DEPDIR)/link_uniform_blocks.Tpo -c -o link_uniform_blocks.lo `test -f '$(GLSL_SRCDIR)/link_uniform_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/link_uniform_blocks.Tpo $(DEPDIR)/link_uniform_blocks.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_blocks.cpp' object='link_uniform_blocks.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o link_uniform_blocks.lo `test -f '$(GLSL_SRCDIR)/link_uniform_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_blocks.cpp

link_varyings.lo: $(GLSL_SRCDIR)/link_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT link_varyings.lo -MD -MP -MF $(DEPDIR)/link_varyings.Tpo -c -o link_varyings.lo `test -f '$(GLSL_SRCDIR)/link_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/link_varyings.Tpo $(DEPDIR)/link_varyings.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_varyings.cpp' object='link_varyings.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o link_varyings.lo `test -f '$(GLSL_SRCDIR)/link_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_varyings.cpp

loop_analysis.lo: $(GLSL_SRCDIR)/loop_analysis.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT loop_analysis.lo -MD -MP -MF $(DEPDIR)/loop_analysis.Tpo -c -o loop_analysis.lo `test -f '$(GLSL_SRCDIR)/loop_analysis.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_analysis.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/loop_analysis.Tpo $(DEPDIR)/loop_analysis.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_analysis.cpp' object='loop_analysis.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o loop_analysis.lo `test -f '$(GLSL_SRCDIR)/loop_analysis.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_analysis.cpp

loop_controls.lo: $(GLSL_SRCDIR)/loop_controls.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT loop_controls.lo -MD -MP -MF $(DEPDIR)/loop_controls.Tpo -c -o loop_controls.lo `test -f '$(GLSL_SRCDIR)/loop_controls.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_controls.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/loop_controls.Tpo $(DEPDIR)/loop_controls.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_controls.cpp' object='loop_controls.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o loop_controls.lo `test -f '$(GLSL_SRCDIR)/loop_controls.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_controls.cpp

loop_unroll.lo: $(GLSL_SRCDIR)/loop_unroll.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT loop_unroll.lo -MD -MP -MF $(DEPDIR)/loop_unroll.Tpo -c -o loop_unroll.lo `test -f '$(GLSL_SRCDIR)/loop_unroll.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_unroll.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/loop_unroll.Tpo $(DEPDIR)/loop_unroll.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_unroll.cpp' object='loop_unroll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o loop_unroll.lo `test -f '$(GLSL_SRCDIR)/loop_unroll.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_unroll.cpp

lower_clip_distance.lo: $(GLSL_SRCDIR)/lower_clip_distance.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_clip_distance.lo -MD -MP -MF $(DEPDIR)/lower_clip_distance.Tpo -c -o lower_clip_distance.lo `test -f '$(GLSL_SRCDIR)/lower_clip_distance.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_clip_distance.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_clip_distance.Tpo $(DEPDIR)/lower_clip_distance.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_clip_distance.cpp' object='lower_clip_distance.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_clip_distance.lo `test -f '$(GLSL_SRCDIR)/lower_clip_distance.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_clip_distance.cpp

lower_discard.lo: $(GLSL_SRCDIR)/lower_discard.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_discard.lo -MD -MP -MF $(DEPDIR)/lower_discard.Tpo -c -o lower_discard.lo `test -f '$(GLSL_SRCDIR)/lower_discard.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_discard.Tpo $(DEPDIR)/lower_discard.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_discard.cpp' object='lower_discard.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_discard.lo `test -f '$(GLSL_SRCDIR)/lower_discard.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard.cpp

lower_discard_flow.lo: $(GLSL_SRCDIR)/lower_discard_flow.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_discard_flow.lo -MD -MP -MF $(DEPDIR)/lower_discard_flow.Tpo -c -o lower_discard_flow.lo `test -f '$(GLSL_SRCDIR)/lower_discard_flow.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard_flow.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_discard_flow.Tpo $(DEPDIR)/lower_discard_flow.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_discard_flow.cpp' object='lower_discard_flow.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_discard_flow.lo `test -f '$(GLSL_SRCDIR)/lower_discard_flow.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard_flow.cpp

lower_if_to_cond_assign.lo: $(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_if_to_cond_assign.lo -MD -MP -MF $(DEPDIR)/lower_if_to_cond_assign.Tpo -c -o lower_if_to_cond_assign.lo `test -f '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_if_to_cond_assign.Tpo $(DEPDIR)/lower_if_to_cond_assign.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp' object='lower_if_to_cond_assign.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_if_to_cond_assign.lo `test -f '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp

lower_instructions.lo: $(GLSL_SRCDIR)/lower_instructions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_instructions.lo -MD -MP -MF $(DEPDIR)/lower_instructions.Tpo -c -o lower_instructions.lo `test -f '$(GLSL_SRCDIR)/lower_instructions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_instructions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_instructions.Tpo $(DEPDIR)/lower_instructions.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_instructions.cpp' object='lower_instructions.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_instructions.lo `test -f '$(GLSL_SRCDIR)/lower_instructions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_instructions.cpp

lower_jumps.lo: $(GLSL_SRCDIR)/lower_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_jumps.lo -MD -MP -MF $(DEPDIR)/lower_jumps.Tpo -c -o lower_jumps.lo `test -f '$(GLSL_SRCDIR)/lower_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_jumps.Tpo $(DEPDIR)/lower_jumps.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_jumps.cpp' object='lower_jumps.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_jumps.lo `test -f '$(GLSL_SRCDIR)/lower_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_jumps.cpp

lower_mat_op_to_vec.lo: $(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_mat_op_to_vec.lo -MD -MP -MF $(DEPDIR)/lower_mat_op_to_vec.Tpo -c -o lower_mat_op_to_vec.lo `test -f '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_mat_op_to_vec.Tpo $(DEPDIR)/lower_mat_op_to_vec.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp' object='lower_mat_op_to_vec.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_mat_op_to_vec.lo `test -f '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp

lower_noise.lo: $(GLSL_SRCDIR)/lower_noise.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_noise.lo -MD -MP -MF $(DEPDIR)/lower_noise.Tpo -c -o lower_noise.lo `test -f '$(GLSL_SRCDIR)/lower_noise.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_noise.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_noise.Tpo $(DEPDIR)/lower_noise.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_noise.cpp' object='lower_noise.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_noise.lo `test -f '$(GLSL_SRCDIR)/lower_noise.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_noise.cpp

lower_packed_varyings.lo: $(GLSL_SRCDIR)/lower_packed_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_packed_varyings.lo -MD -MP -MF $(DEPDIR)/lower_packed_varyings.Tpo -c -o lower_packed_varyings.lo `test -f '$(GLSL_SRCDIR)/lower_packed_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packed_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_packed_varyings.Tpo $(DEPDIR)/lower_packed_varyings.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_packed_varyings.cpp' object='lower_packed_varyings.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_packed_varyings.lo `test -f '$(GLSL_SRCDIR)/lower_packed_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packed_varyings.cpp

lower_named_interface_blocks.lo: $(GLSL_SRCDIR)/lower_named_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_named_interface_blocks.lo -MD -MP -MF $(DEPDIR)/lower_named_interface_blocks.Tpo -c -o lower_named_interface_blocks.lo `test -f '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_named_interface_blocks.Tpo $(DEPDIR)/lower_named_interface_blocks.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp' object='lower_named_interface_blocks.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_named_interface_blocks.lo `test -f '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp

lower_packing_builtins.lo: $(GLSL_SRCDIR)/lower_packing_builtins.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_packing_builtins.lo -MD -MP -MF $(DEPDIR)/lower_packing_builtins.Tpo -c -o lower_packing_builtins.lo `test -f '$(GLSL_SRCDIR)/lower_packing_builtins.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packing_builtins.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_packing_builtins.Tpo $(DEPDIR)/lower_packing_builtins.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_packing_builtins.cpp' object='lower_packing_builtins.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_packing_builtins.lo `test -f '$(GLSL_SRCDIR)/lower_packing_builtins.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packing_builtins.cpp

lower_texture_projection.lo: $(GLSL_SRCDIR)/lower_texture_projection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_texture_projection.lo -MD -MP -MF $(DEPDIR)/lower_texture_projection.Tpo -c -o lower_texture_projection.lo `test -f '$(GLSL_SRCDIR)/lower_texture_projection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_texture_projection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_texture_projection.Tpo $(DEPDIR)/lower_texture_projection.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_texture_projection.cpp' object='lower_texture_projection.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_texture_projection.lo `test -f '$(GLSL_SRCDIR)/lower_texture_projection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_texture_projection.cpp

lower_variable_index_to_cond_assign.lo: $(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_variable_index_to_cond_assign.lo -MD -MP -MF $(DEPDIR)/lower_variable_index_to_cond_assign.Tpo -c -o lower_variable_index_to_cond_assign.lo `test -f '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_variable_index_to_cond_assign.Tpo $(DEPDIR)/lower_variable_index_to_cond_assign.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp' object='lower_variable_index_to_cond_assign.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_variable_index_to_cond_assign.lo `test -f '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp

lower_vec_index_to_cond_assign.lo: $(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_vec_index_to_cond_assign.lo -MD -MP -MF $(DEPDIR)/lower_vec_index_to_cond_assign.Tpo -c -o lower_vec_index_to_cond_assign.lo `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_vec_index_to_cond_assign.Tpo $(DEPDIR)/lower_vec_index_to_cond_assign.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp' object='lower_vec_index_to_cond_assign.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_vec_index_to_cond_assign.lo `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp

lower_vec_index_to_swizzle.lo: $(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_vec_index_to_swizzle.lo -MD -MP -MF $(DEPDIR)/lower_vec_index_to_swizzle.Tpo -c -o lower_vec_index_to_swizzle.lo `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_vec_index_to_swizzle.Tpo $(DEPDIR)/lower_vec_index_to_swizzle.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp' object='lower_vec_index_to_swizzle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_vec_index_to_swizzle.lo `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp

lower_vector.lo: $(GLSL_SRCDIR)/lower_vector.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_vector.lo -MD -MP -MF $(DEPDIR)/lower_vector.Tpo -c -o lower_vector.lo `test -f '$(GLSL_SRCDIR)/lower_vector.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_vector.Tpo $(DEPDIR)/lower_vector.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vector.cpp' object='lower_vector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_vector.lo `test -f '$(GLSL_SRCDIR)/lower_vector.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector.cpp

lower_vector_insert.lo: $(GLSL_SRCDIR)/lower_vector_insert.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_vector_insert.lo -MD -MP -MF $(DEPDIR)/lower_vector_insert.Tpo -c -o lower_vector_insert.lo `test -f '$(GLSL_SRCDIR)/lower_vector_insert.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector_insert.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_vector_insert.Tpo $(DEPDIR)/lower_vector_insert.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vector_insert.cpp' object='lower_vector_insert.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_vector_insert.lo `test -f '$(GLSL_SRCDIR)/lower_vector_insert.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector_insert.cpp

lower_output_reads.lo: $(GLSL_SRCDIR)/lower_output_reads.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_output_reads.lo -MD -MP -MF $(DEPDIR)/lower_output_reads.Tpo -c -o lower_output_reads.lo `test -f '$(GLSL_SRCDIR)/lower_output_reads.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_output_reads.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_output_reads.Tpo $(DEPDIR)/lower_output_reads.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_output_reads.cpp' object='lower_output_reads.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_output_reads.lo `test -f '$(GLSL_SRCDIR)/lower_output_reads.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_output_reads.cpp

lower_ubo_reference.lo: $(GLSL_SRCDIR)/lower_ubo_reference.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lower_ubo_reference.lo -MD -MP -MF $(DEPDIR)/lower_ubo_reference.Tpo -c -o lower_ubo_reference.lo `test -f '$(GLSL_SRCDIR)/lower_ubo_reference.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_ubo_reference.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lower_ubo_reference.Tpo $(DEPDIR)/lower_ubo_reference.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_ubo_reference.cpp' object='lower_ubo_reference.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lower_ubo_reference.lo `test -f '$(GLSL_SRCDIR)/lower_ubo_reference.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_ubo_reference.cpp

opt_algebraic.lo: $(GLSL_SRCDIR)/opt_algebraic.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_algebraic.lo -MD -MP -MF $(DEPDIR)/opt_algebraic.Tpo -c -o opt_algebraic.lo `test -f '$(GLSL_SRCDIR)/opt_algebraic.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_algebraic.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_algebraic.Tpo $(DEPDIR)/opt_algebraic.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_algebraic.cpp' object='opt_algebraic.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_algebraic.lo `test -f '$(GLSL_SRCDIR)/opt_algebraic.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_algebraic.cpp

opt_array_splitting.lo: $(GLSL_SRCDIR)/opt_array_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_array_splitting.lo -MD -MP -MF $(DEPDIR)/opt_array_splitting.Tpo -c -o opt_array_splitting.lo `test -f '$(GLSL_SRCDIR)/opt_array_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_array_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_array_splitting.Tpo $(DEPDIR)/opt_array_splitting.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_array_splitting.cpp' object='opt_array_splitting.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_array_splitting.lo `test -f '$(GLSL_SRCDIR)/opt_array_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_array_splitting.cpp

opt_constant_folding.lo: $(GLSL_SRCDIR)/opt_constant_folding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_constant_folding.lo -MD -MP -MF $(DEPDIR)/opt_constant_folding.Tpo -c -o opt_constant_folding.lo `test -f '$(GLSL_SRCDIR)/opt_constant_folding.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_folding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_constant_folding.Tpo $(DEPDIR)/opt_constant_folding.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_folding.cpp' object='opt_constant_folding.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_constant_folding.lo `test -f '$(GLSL_SRCDIR)/opt_constant_folding.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_folding.cpp

opt_constant_propagation.lo: $(GLSL_SRCDIR)/opt_constant_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_constant_propagation.lo -MD -MP -MF $(DEPDIR)/opt_constant_propagation.Tpo -c -o opt_constant_propagation.lo `test -f '$(GLSL_SRCDIR)/opt_constant_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_constant_propagation.Tpo $(DEPDIR)/opt_constant_propagation.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_propagation.cpp' object='opt_constant_propagation.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_constant_propagation.lo `test -f '$(GLSL_SRCDIR)/opt_constant_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_propagation.cpp

opt_constant_variable.lo: $(GLSL_SRCDIR)/opt_constant_variable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_constant_variable.lo -MD -MP -MF $(DEPDIR)/opt_constant_variable.Tpo -c -o opt_constant_variable.lo `test -f '$(GLSL_SRCDIR)/opt_constant_variable.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_variable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_constant_variable.Tpo $(DEPDIR)/opt_constant_variable.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_variable.cpp' object='opt_constant_variable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_constant_variable.lo `test -f '$(GLSL_SRCDIR)/opt_constant_variable.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_variable.cpp

opt_copy_propagation.lo: $(GLSL_SRCDIR)/opt_copy_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_copy_propagation.lo -MD -MP -MF $(DEPDIR)/opt_copy_propagation.Tpo -c -o opt_copy_propagation.lo `test -f '$(GLSL_SRCDIR)/opt_copy_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_copy_propagation.Tpo $(DEPDIR)/opt_copy_propagation.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_copy_propagation.cpp' object='opt_copy_propagation.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_copy_propagation.lo `test -f '$(GLSL_SRCDIR)/opt_copy_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation.cpp

opt_copy_propagation_elements.lo: $(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_copy_propagation_elements.lo -MD -MP -MF $(DEPDIR)/opt_copy_propagation_elements.Tpo -c -o opt_copy_propagation_elements.lo `test -f '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_copy_propagation_elements.Tpo $(DEPDIR)/opt_copy_propagation_elements.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp' object='opt_copy_propagation_elements.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_copy_propagation_elements.lo `test -f '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp

opt_dead_builtin_varyings.lo: $(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_dead_builtin_varyings.lo -MD -MP -MF $(DEPDIR)/opt_dead_builtin_varyings.Tpo -c -o opt_dead_builtin_varyings.lo `test -f '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_dead_builtin_varyings.Tpo $(DEPDIR)/opt_dead_builtin_varyings.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp' object='opt_dead_builtin_varyings.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_dead_builtin_varyings.lo `test -f '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp

opt_dead_code.lo: $(GLSL_SRCDIR)/opt_dead_code.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_dead_code.lo -MD -MP -MF $(DEPDIR)/opt_dead_code.Tpo -c -o opt_dead_code.lo `test -f '$(GLSL_SRCDIR)/opt_dead_code.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_dead_code.Tpo $(DEPDIR)/opt_dead_code.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_code.cpp' object='opt_dead_code.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_dead_code.lo `test -f '$(GLSL_SRCDIR)/opt_dead_code.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code.cpp

opt_dead_code_local.lo: $(GLSL_SRCDIR)/opt_dead_code_local.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_dead_code_local.lo -MD -MP -MF $(DEPDIR)/opt_dead_code_local.Tpo -c -o opt_dead_code_local.lo `test -f '$(GLSL_SRCDIR)/opt_dead_code_local.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code_local.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_dead_code_local.Tpo $(DEPDIR)/opt_dead_code_local.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_code_local.cpp' object='opt_dead_code_local.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_dead_code_local.lo `test -f '$(GLSL_SRCDIR)/opt_dead_code_local.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code_local.cpp

opt_dead_functions.lo: $(GLSL_SRCDIR)/opt_dead_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_dead_functions.lo -MD -MP -MF $(DEPDIR)/opt_dead_functions.Tpo -c -o opt_dead_functions.lo `test -f '$(GLSL_SRCDIR)/opt_dead_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_dead_functions.Tpo $(DEPDIR)/opt_dead_functions.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_functions.cpp' object='opt_dead_functions.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_dead_functions.lo `test -f '$(GLSL_SRCDIR)/opt_dead_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_functions.cpp

opt_flatten_nested_if_blocks.lo: $(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_flatten_nested_if_blocks.lo -MD -MP -MF $(DEPDIR)/opt_flatten_nested_if_blocks.Tpo -c -o opt_flatten_nested_if_blocks.lo `test -f '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_flatten_nested_if_blocks.Tpo $(DEPDIR)/opt_flatten_nested_if_blocks.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp' object='opt_flatten_nested_if_blocks.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_flatten_nested_if_blocks.lo `test -f '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp

opt_flip_matrices.lo: $(GLSL_SRCDIR)/opt_flip_matrices.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_flip_matrices.lo -MD -MP -MF $(DEPDIR)/opt_flip_matrices.Tpo -c -o opt_flip_matrices.lo `test -f '$(GLSL_SRCDIR)/opt_flip_matrices.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flip_matrices.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_flip_matrices.Tpo $(DEPDIR)/opt_flip_matrices.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_flip_matrices.cpp' object='opt_flip_matrices.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_flip_matrices.lo `test -f '$(GLSL_SRCDIR)/opt_flip_matrices.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flip_matrices.cpp

opt_function_inlining.lo: $(GLSL_SRCDIR)/opt_function_inlining.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_function_inlining.lo -MD -MP -MF $(DEPDIR)/opt_function_inlining.Tpo -c -o opt_function_inlining.lo `test -f '$(GLSL_SRCDIR)/opt_function_inlining.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_function_inlining.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_function_inlining.Tpo $(DEPDIR)/opt_function_inlining.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_function_inlining.cpp' object='opt_function_inlining.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_function_inlining.lo `test -f '$(GLSL_SRCDIR)/opt_function_inlining.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_function_inlining.cpp

opt_if_simplification.lo: $(GLSL_SRCDIR)/opt_if_simplification.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_if_simplification.lo -MD -MP -MF $(DEPDIR)/opt_if_simplification.Tpo -c -o opt_if_simplification.lo `test -f '$(GLSL_SRCDIR)/opt_if_simplification.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_if_simplification.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_if_simplification.Tpo $(DEPDIR)/opt_if_simplification.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_if_simplification.cpp' object='opt_if_simplification.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_if_simplification.lo `test -f '$(GLSL_SRCDIR)/opt_if_simplification.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_if_simplification.cpp

opt_noop_swizzle.lo: $(GLSL_SRCDIR)/opt_noop_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_noop_swizzle.lo -MD -MP -MF $(DEPDIR)/opt_noop_swizzle.Tpo -c -o opt_noop_swizzle.lo `test -f '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_noop_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_noop_swizzle.Tpo $(DEPDIR)/opt_noop_swizzle.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_noop_swizzle.cpp' object='opt_noop_swizzle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_noop_swizzle.lo `test -f '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_noop_swizzle.cpp

opt_redundant_jumps.lo: $(GLSL_SRCDIR)/opt_redundant_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_redundant_jumps.lo -MD -MP -MF $(DEPDIR)/opt_redundant_jumps.Tpo -c -o opt_redundant_jumps.lo `test -f '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_redundant_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_redundant_jumps.Tpo $(DEPDIR)/opt_redundant_jumps.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_redundant_jumps.cpp' object='opt_redundant_jumps.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_redundant_jumps.lo `test -f '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_redundant_jumps.cpp

opt_structure_splitting.lo: $(GLSL_SRCDIR)/opt_structure_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_structure_splitting.lo -MD -MP -MF $(DEPDIR)/opt_structure_splitting.Tpo -c -o opt_structure_splitting.lo `test -f '$(GLSL_SRCDIR)/opt_structure_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_structure_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_structure_splitting.Tpo $(DEPDIR)/opt_structure_splitting.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_structure_splitting.cpp' object='opt_structure_splitting.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_structure_splitting.lo `test -f '$(GLSL_SRCDIR)/opt_structure_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_structure_splitting.cpp

opt_swizzle_swizzle.lo: $(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_swizzle_swizzle.lo -MD -MP -MF $(DEPDIR)/opt_swizzle_swizzle.Tpo -c -o opt_swizzle_swizzle.lo `test -f '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_swizzle_swizzle.Tpo $(DEPDIR)/opt_swizzle_swizzle.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp' object='opt_swizzle_swizzle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_swizzle_swizzle.lo `test -f '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp

opt_tree_grafting.lo: $(GLSL_SRCDIR)/opt_tree_grafting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opt_tree_grafting.lo -MD -MP -MF $(DEPDIR)/opt_tree_grafting.Tpo -c -o opt_tree_grafting.lo `test -f '$(GLSL_SRCDIR)/opt_tree_grafting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_tree_grafting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/opt_tree_grafting.Tpo $(DEPDIR)/opt_tree_grafting.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_tree_grafting.cpp' object='opt_tree_grafting.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opt_tree_grafting.lo `test -f '$(GLSL_SRCDIR)/opt_tree_grafting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_tree_grafting.cpp

s_expression.lo: $(GLSL_SRCDIR)/s_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT s_expression.lo -MD -MP -MF $(DEPDIR)/s_expression.Tpo -c -o s_expression.lo `test -f '$(GLSL_SRCDIR)/s_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/s_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/s_expression.Tpo $(DEPDIR)/s_expression.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/s_expression.cpp' object='s_expression.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o s_expression.lo `test -f '$(GLSL_SRCDIR)/s_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/s_expression.cpp

builtin_compiler-builtin_stubs.o: $(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-builtin_stubs.o -MD -MP -MF $(DEPDIR)/builtin_compiler-builtin_stubs.Tpo -c -o builtin_compiler-builtin_stubs.o `test -f '$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-builtin_stubs.Tpo $(DEPDIR)/builtin_compiler-builtin_stubs.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp' object='builtin_compiler-builtin_stubs.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-builtin_stubs.o `test -f '$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp

builtin_compiler-builtin_stubs.obj: $(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-builtin_stubs.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-builtin_stubs.Tpo -c -o builtin_compiler-builtin_stubs.obj `if test -f '$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-builtin_stubs.Tpo $(DEPDIR)/builtin_compiler-builtin_stubs.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp' object='builtin_compiler-builtin_stubs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-builtin_stubs.obj `if test -f '$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/builtin_compiler/builtin_stubs.cpp'; fi`

builtin_compiler-standalone_scaffolding.o: $(GLSL_SRCDIR)/standalone_scaffolding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-standalone_scaffolding.o -MD -MP -MF $(DEPDIR)/builtin_compiler-standalone_scaffolding.Tpo -c -o builtin_compiler-standalone_scaffolding.o `test -f '$(GLSL_SRCDIR)/standalone_scaffolding.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/standalone_scaffolding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-standalone_scaffolding.Tpo $(DEPDIR)/builtin_compiler-standalone_scaffolding.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/standalone_scaffolding.cpp' object='builtin_compiler-standalone_scaffolding.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-standalone_scaffolding.o `test -f '$(GLSL_SRCDIR)/standalone_scaffolding.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/standalone_scaffolding.cpp

builtin_compiler-standalone_scaffolding.obj: $(GLSL_SRCDIR)/standalone_scaffolding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-standalone_scaffolding.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-standalone_scaffolding.Tpo -c -o builtin_compiler-standalone_scaffolding.obj `if test -f '$(GLSL_SRCDIR)/standalone_scaffolding.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/standalone_scaffolding.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/standalone_scaffolding.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-standalone_scaffolding.Tpo $(DEPDIR)/builtin_compiler-standalone_scaffolding.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/standalone_scaffolding.cpp' object='builtin_compiler-standalone_scaffolding.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-standalone_scaffolding.obj `if test -f '$(GLSL_SRCDIR)/standalone_scaffolding.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/standalone_scaffolding.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/standalone_scaffolding.cpp'; fi`

builtin_compiler-main.o: $(GLSL_SRCDIR)/main.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-main.o -MD -MP -MF $(DEPDIR)/builtin_compiler-main.Tpo -c -o builtin_compiler-main.o `test -f '$(GLSL_SRCDIR)/main.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/main.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-main.Tpo $(DEPDIR)/builtin_compiler-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/main.cpp' object='builtin_compiler-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-main.o `test -f '$(GLSL_SRCDIR)/main.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/main.cpp

builtin_compiler-main.obj: $(GLSL_SRCDIR)/main.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-main.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-main.Tpo -c -o builtin_compiler-main.obj `if test -f '$(GLSL_SRCDIR)/main.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/main.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/main.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-main.Tpo $(DEPDIR)/builtin_compiler-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/main.cpp' object='builtin_compiler-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-main.obj `if test -f '$(GLSL_SRCDIR)/main.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/main.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/main.cpp'; fi`

builtin_compiler-glsl_lexer.o: $(GLSL_BUILDDIR)/glsl_lexer.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_lexer.o -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_lexer.Tpo -c -o builtin_compiler-glsl_lexer.o `test -f '$(GLSL_BUILDDIR)/glsl_lexer.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_lexer.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_lexer.Tpo $(DEPDIR)/builtin_compiler-glsl_lexer.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_BUILDDIR)/glsl_lexer.cpp' object='builtin_compiler-glsl_lexer.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_lexer.o `test -f '$(GLSL_BUILDDIR)/glsl_lexer.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_lexer.cpp

builtin_compiler-glsl_lexer.obj: $(GLSL_BUILDDIR)/glsl_lexer.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_lexer.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_lexer.Tpo -c -o builtin_compiler-glsl_lexer.obj `if test -f '$(GLSL_BUILDDIR)/glsl_lexer.cpp'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glsl_lexer.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glsl_lexer.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_lexer.Tpo $(DEPDIR)/builtin_compiler-glsl_lexer.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_BUILDDIR)/glsl_lexer.cpp' object='builtin_compiler-glsl_lexer.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_lexer.obj `if test -f '$(GLSL_BUILDDIR)/glsl_lexer.cpp'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glsl_lexer.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glsl_lexer.cpp'; fi`

builtin_compiler-glsl_parser.o: $(GLSL_BUILDDIR)/glsl_parser.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_parser.o -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_parser.Tpo -c -o builtin_compiler-glsl_parser.o `test -f '$(GLSL_BUILDDIR)/glsl_parser.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_parser.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_parser.Tpo $(DEPDIR)/builtin_compiler-glsl_parser.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_BUILDDIR)/glsl_parser.cpp' object='builtin_compiler-glsl_parser.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_parser.o `test -f '$(GLSL_BUILDDIR)/glsl_parser.cpp' || echo '$(srcdir)/'`$(GLSL_BUILDDIR)/glsl_parser.cpp

builtin_compiler-glsl_parser.obj: $(GLSL_BUILDDIR)/glsl_parser.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_parser.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_parser.Tpo -c -o builtin_compiler-glsl_parser.obj `if test -f '$(GLSL_BUILDDIR)/glsl_parser.cpp'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glsl_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glsl_parser.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_parser.Tpo $(DEPDIR)/builtin_compiler-glsl_parser.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_BUILDDIR)/glsl_parser.cpp' object='builtin_compiler-glsl_parser.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_parser.obj `if test -f '$(GLSL_BUILDDIR)/glsl_parser.cpp'; then $(CYGPATH_W) '$(GLSL_BUILDDIR)/glsl_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_BUILDDIR)/glsl_parser.cpp'; fi`

builtin_compiler-ast_array_index.o: $(GLSL_SRCDIR)/ast_array_index.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_array_index.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_array_index.Tpo -c -o builtin_compiler-ast_array_index.o `test -f '$(GLSL_SRCDIR)/ast_array_index.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_array_index.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_array_index.Tpo $(DEPDIR)/builtin_compiler-ast_array_index.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_array_index.cpp' object='builtin_compiler-ast_array_index.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_array_index.o `test -f '$(GLSL_SRCDIR)/ast_array_index.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_array_index.cpp

builtin_compiler-ast_array_index.obj: $(GLSL_SRCDIR)/ast_array_index.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_array_index.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_array_index.Tpo -c -o builtin_compiler-ast_array_index.obj `if test -f '$(GLSL_SRCDIR)/ast_array_index.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_array_index.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_array_index.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_array_index.Tpo $(DEPDIR)/builtin_compiler-ast_array_index.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_array_index.cpp' object='builtin_compiler-ast_array_index.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_array_index.obj `if test -f '$(GLSL_SRCDIR)/ast_array_index.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_array_index.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_array_index.cpp'; fi`

builtin_compiler-ast_expr.o: $(GLSL_SRCDIR)/ast_expr.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_expr.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_expr.Tpo -c -o builtin_compiler-ast_expr.o `test -f '$(GLSL_SRCDIR)/ast_expr.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_expr.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_expr.Tpo $(DEPDIR)/builtin_compiler-ast_expr.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_expr.cpp' object='builtin_compiler-ast_expr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_expr.o `test -f '$(GLSL_SRCDIR)/ast_expr.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_expr.cpp

builtin_compiler-ast_expr.obj: $(GLSL_SRCDIR)/ast_expr.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_expr.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_expr.Tpo -c -o builtin_compiler-ast_expr.obj `if test -f '$(GLSL_SRCDIR)/ast_expr.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_expr.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_expr.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_expr.Tpo $(DEPDIR)/builtin_compiler-ast_expr.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_expr.cpp' object='builtin_compiler-ast_expr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_expr.obj `if test -f '$(GLSL_SRCDIR)/ast_expr.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_expr.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_expr.cpp'; fi`

builtin_compiler-ast_function.o: $(GLSL_SRCDIR)/ast_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_function.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_function.Tpo -c -o builtin_compiler-ast_function.o `test -f '$(GLSL_SRCDIR)/ast_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_function.Tpo $(DEPDIR)/builtin_compiler-ast_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_function.cpp' object='builtin_compiler-ast_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_function.o `test -f '$(GLSL_SRCDIR)/ast_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_function.cpp

builtin_compiler-ast_function.obj: $(GLSL_SRCDIR)/ast_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_function.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_function.Tpo -c -o builtin_compiler-ast_function.obj `if test -f '$(GLSL_SRCDIR)/ast_function.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_function.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_function.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_function.Tpo $(DEPDIR)/builtin_compiler-ast_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_function.cpp' object='builtin_compiler-ast_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_function.obj `if test -f '$(GLSL_SRCDIR)/ast_function.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_function.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_function.cpp'; fi`

builtin_compiler-ast_to_hir.o: $(GLSL_SRCDIR)/ast_to_hir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_to_hir.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_to_hir.Tpo -c -o builtin_compiler-ast_to_hir.o `test -f '$(GLSL_SRCDIR)/ast_to_hir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_to_hir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_to_hir.Tpo $(DEPDIR)/builtin_compiler-ast_to_hir.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_to_hir.cpp' object='builtin_compiler-ast_to_hir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_to_hir.o `test -f '$(GLSL_SRCDIR)/ast_to_hir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_to_hir.cpp

builtin_compiler-ast_to_hir.obj: $(GLSL_SRCDIR)/ast_to_hir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_to_hir.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_to_hir.Tpo -c -o builtin_compiler-ast_to_hir.obj `if test -f '$(GLSL_SRCDIR)/ast_to_hir.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_to_hir.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_to_hir.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_to_hir.Tpo $(DEPDIR)/builtin_compiler-ast_to_hir.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_to_hir.cpp' object='builtin_compiler-ast_to_hir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_to_hir.obj `if test -f '$(GLSL_SRCDIR)/ast_to_hir.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_to_hir.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_to_hir.cpp'; fi`

builtin_compiler-ast_type.o: $(GLSL_SRCDIR)/ast_type.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_type.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_type.Tpo -c -o builtin_compiler-ast_type.o `test -f '$(GLSL_SRCDIR)/ast_type.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_type.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_type.Tpo $(DEPDIR)/builtin_compiler-ast_type.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_type.cpp' object='builtin_compiler-ast_type.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_type.o `test -f '$(GLSL_SRCDIR)/ast_type.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ast_type.cpp

builtin_compiler-ast_type.obj: $(GLSL_SRCDIR)/ast_type.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ast_type.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ast_type.Tpo -c -o builtin_compiler-ast_type.obj `if test -f '$(GLSL_SRCDIR)/ast_type.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_type.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_type.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ast_type.Tpo $(DEPDIR)/builtin_compiler-ast_type.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ast_type.cpp' object='builtin_compiler-ast_type.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ast_type.obj `if test -f '$(GLSL_SRCDIR)/ast_type.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ast_type.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ast_type.cpp'; fi`

builtin_compiler-builtin_types.o: $(GLSL_SRCDIR)/builtin_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-builtin_types.o -MD -MP -MF $(DEPDIR)/builtin_compiler-builtin_types.Tpo -c -o builtin_compiler-builtin_types.o `test -f '$(GLSL_SRCDIR)/builtin_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-builtin_types.Tpo $(DEPDIR)/builtin_compiler-builtin_types.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_types.cpp' object='builtin_compiler-builtin_types.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-builtin_types.o `test -f '$(GLSL_SRCDIR)/builtin_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_types.cpp

builtin_compiler-builtin_types.obj: $(GLSL_SRCDIR)/builtin_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-builtin_types.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-builtin_types.Tpo -c -o builtin_compiler-builtin_types.obj `if test -f '$(GLSL_SRCDIR)/builtin_types.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/builtin_types.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/builtin_types.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-builtin_types.Tpo $(DEPDIR)/builtin_compiler-builtin_types.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_types.cpp' object='builtin_compiler-builtin_types.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-builtin_types.obj `if test -f '$(GLSL_SRCDIR)/builtin_types.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/builtin_types.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/builtin_types.cpp'; fi`

builtin_compiler-builtin_variables.o: $(GLSL_SRCDIR)/builtin_variables.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-builtin_variables.o -MD -MP -MF $(DEPDIR)/builtin_compiler-builtin_variables.Tpo -c -o builtin_compiler-builtin_variables.o `test -f '$(GLSL_SRCDIR)/builtin_variables.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_variables.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-builtin_variables.Tpo $(DEPDIR)/builtin_compiler-builtin_variables.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_variables.cpp' object='builtin_compiler-builtin_variables.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-builtin_variables.o `test -f '$(GLSL_SRCDIR)/builtin_variables.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/builtin_variables.cpp

builtin_compiler-builtin_variables.obj: $(GLSL_SRCDIR)/builtin_variables.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-builtin_variables.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-builtin_variables.Tpo -c -o builtin_compiler-builtin_variables.obj `if test -f '$(GLSL_SRCDIR)/builtin_variables.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/builtin_variables.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/builtin_variables.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-builtin_variables.Tpo $(DEPDIR)/builtin_compiler-builtin_variables.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/builtin_variables.cpp' object='builtin_compiler-builtin_variables.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-builtin_variables.obj `if test -f '$(GLSL_SRCDIR)/builtin_variables.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/builtin_variables.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/builtin_variables.cpp'; fi`

builtin_compiler-glsl_parser_extras.o: $(GLSL_SRCDIR)/glsl_parser_extras.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_parser_extras.o -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_parser_extras.Tpo -c -o builtin_compiler-glsl_parser_extras.o `test -f '$(GLSL_SRCDIR)/glsl_parser_extras.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_parser_extras.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_parser_extras.Tpo $(DEPDIR)/builtin_compiler-glsl_parser_extras.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_parser_extras.cpp' object='builtin_compiler-glsl_parser_extras.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_parser_extras.o `test -f '$(GLSL_SRCDIR)/glsl_parser_extras.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_parser_extras.cpp

builtin_compiler-glsl_parser_extras.obj: $(GLSL_SRCDIR)/glsl_parser_extras.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_parser_extras.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_parser_extras.Tpo -c -o builtin_compiler-glsl_parser_extras.obj `if test -f '$(GLSL_SRCDIR)/glsl_parser_extras.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glsl_parser_extras.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glsl_parser_extras.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_parser_extras.Tpo $(DEPDIR)/builtin_compiler-glsl_parser_extras.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_parser_extras.cpp' object='builtin_compiler-glsl_parser_extras.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_parser_extras.obj `if test -f '$(GLSL_SRCDIR)/glsl_parser_extras.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glsl_parser_extras.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glsl_parser_extras.cpp'; fi`

builtin_compiler-glsl_types.o: $(GLSL_SRCDIR)/glsl_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_types.o -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_types.Tpo -c -o builtin_compiler-glsl_types.o `test -f '$(GLSL_SRCDIR)/glsl_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_types.Tpo $(DEPDIR)/builtin_compiler-glsl_types.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_types.cpp' object='builtin_compiler-glsl_types.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_types.o `test -f '$(GLSL_SRCDIR)/glsl_types.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_types.cpp

builtin_compiler-glsl_types.obj: $(GLSL_SRCDIR)/glsl_types.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_types.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_types.Tpo -c -o builtin_compiler-glsl_types.obj `if test -f '$(GLSL_SRCDIR)/glsl_types.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glsl_types.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glsl_types.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_types.Tpo $(DEPDIR)/builtin_compiler-glsl_types.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_types.cpp' object='builtin_compiler-glsl_types.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_types.obj `if test -f '$(GLSL_SRCDIR)/glsl_types.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glsl_types.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glsl_types.cpp'; fi`

builtin_compiler-glsl_symbol_table.o: $(GLSL_SRCDIR)/glsl_symbol_table.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_symbol_table.o -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_symbol_table.Tpo -c -o builtin_compiler-glsl_symbol_table.o `test -f '$(GLSL_SRCDIR)/glsl_symbol_table.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_symbol_table.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_symbol_table.Tpo $(DEPDIR)/builtin_compiler-glsl_symbol_table.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_symbol_table.cpp' object='builtin_compiler-glsl_symbol_table.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_symbol_table.o `test -f '$(GLSL_SRCDIR)/glsl_symbol_table.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/glsl_symbol_table.cpp

builtin_compiler-glsl_symbol_table.obj: $(GLSL_SRCDIR)/glsl_symbol_table.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-glsl_symbol_table.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-glsl_symbol_table.Tpo -c -o builtin_compiler-glsl_symbol_table.obj `if test -f '$(GLSL_SRCDIR)/glsl_symbol_table.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glsl_symbol_table.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glsl_symbol_table.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-glsl_symbol_table.Tpo $(DEPDIR)/builtin_compiler-glsl_symbol_table.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/glsl_symbol_table.cpp' object='builtin_compiler-glsl_symbol_table.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-glsl_symbol_table.obj `if test -f '$(GLSL_SRCDIR)/glsl_symbol_table.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/glsl_symbol_table.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/glsl_symbol_table.cpp'; fi`

builtin_compiler-hir_field_selection.o: $(GLSL_SRCDIR)/hir_field_selection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-hir_field_selection.o -MD -MP -MF $(DEPDIR)/builtin_compiler-hir_field_selection.Tpo -c -o builtin_compiler-hir_field_selection.o `test -f '$(GLSL_SRCDIR)/hir_field_selection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/hir_field_selection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-hir_field_selection.Tpo $(DEPDIR)/builtin_compiler-hir_field_selection.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/hir_field_selection.cpp' object='builtin_compiler-hir_field_selection.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-hir_field_selection.o `test -f '$(GLSL_SRCDIR)/hir_field_selection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/hir_field_selection.cpp

builtin_compiler-hir_field_selection.obj: $(GLSL_SRCDIR)/hir_field_selection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-hir_field_selection.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-hir_field_selection.Tpo -c -o builtin_compiler-hir_field_selection.obj `if test -f '$(GLSL_SRCDIR)/hir_field_selection.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/hir_field_selection.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/hir_field_selection.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-hir_field_selection.Tpo $(DEPDIR)/builtin_compiler-hir_field_selection.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/hir_field_selection.cpp' object='builtin_compiler-hir_field_selection.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-hir_field_selection.obj `if test -f '$(GLSL_SRCDIR)/hir_field_selection.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/hir_field_selection.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/hir_field_selection.cpp'; fi`

builtin_compiler-ir_basic_block.o: $(GLSL_SRCDIR)/ir_basic_block.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_basic_block.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_basic_block.Tpo -c -o builtin_compiler-ir_basic_block.o `test -f '$(GLSL_SRCDIR)/ir_basic_block.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_basic_block.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_basic_block.Tpo $(DEPDIR)/builtin_compiler-ir_basic_block.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_basic_block.cpp' object='builtin_compiler-ir_basic_block.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_basic_block.o `test -f '$(GLSL_SRCDIR)/ir_basic_block.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_basic_block.cpp

builtin_compiler-ir_basic_block.obj: $(GLSL_SRCDIR)/ir_basic_block.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_basic_block.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_basic_block.Tpo -c -o builtin_compiler-ir_basic_block.obj `if test -f '$(GLSL_SRCDIR)/ir_basic_block.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_basic_block.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_basic_block.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_basic_block.Tpo $(DEPDIR)/builtin_compiler-ir_basic_block.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_basic_block.cpp' object='builtin_compiler-ir_basic_block.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_basic_block.obj `if test -f '$(GLSL_SRCDIR)/ir_basic_block.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_basic_block.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_basic_block.cpp'; fi`

builtin_compiler-ir_builder.o: $(GLSL_SRCDIR)/ir_builder.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_builder.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_builder.Tpo -c -o builtin_compiler-ir_builder.o `test -f '$(GLSL_SRCDIR)/ir_builder.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_builder.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_builder.Tpo $(DEPDIR)/builtin_compiler-ir_builder.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_builder.cpp' object='builtin_compiler-ir_builder.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_builder.o `test -f '$(GLSL_SRCDIR)/ir_builder.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_builder.cpp

builtin_compiler-ir_builder.obj: $(GLSL_SRCDIR)/ir_builder.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_builder.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_builder.Tpo -c -o builtin_compiler-ir_builder.obj `if test -f '$(GLSL_SRCDIR)/ir_builder.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_builder.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_builder.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_builder.Tpo $(DEPDIR)/builtin_compiler-ir_builder.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_builder.cpp' object='builtin_compiler-ir_builder.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_builder.obj `if test -f '$(GLSL_SRCDIR)/ir_builder.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_builder.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_builder.cpp'; fi`

builtin_compiler-ir_clone.o: $(GLSL_SRCDIR)/ir_clone.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_clone.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_clone.Tpo -c -o builtin_compiler-ir_clone.o `test -f '$(GLSL_SRCDIR)/ir_clone.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_clone.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_clone.Tpo $(DEPDIR)/builtin_compiler-ir_clone.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_clone.cpp' object='builtin_compiler-ir_clone.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_clone.o `test -f '$(GLSL_SRCDIR)/ir_clone.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_clone.cpp

builtin_compiler-ir_clone.obj: $(GLSL_SRCDIR)/ir_clone.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_clone.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_clone.Tpo -c -o builtin_compiler-ir_clone.obj `if test -f '$(GLSL_SRCDIR)/ir_clone.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_clone.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_clone.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_clone.Tpo $(DEPDIR)/builtin_compiler-ir_clone.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_clone.cpp' object='builtin_compiler-ir_clone.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_clone.obj `if test -f '$(GLSL_SRCDIR)/ir_clone.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_clone.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_clone.cpp'; fi`

builtin_compiler-ir_constant_expression.o: $(GLSL_SRCDIR)/ir_constant_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_constant_expression.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_constant_expression.Tpo -c -o builtin_compiler-ir_constant_expression.o `test -f '$(GLSL_SRCDIR)/ir_constant_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_constant_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_constant_expression.Tpo $(DEPDIR)/builtin_compiler-ir_constant_expression.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_constant_expression.cpp' object='builtin_compiler-ir_constant_expression.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_constant_expression.o `test -f '$(GLSL_SRCDIR)/ir_constant_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_constant_expression.cpp

builtin_compiler-ir_constant_expression.obj: $(GLSL_SRCDIR)/ir_constant_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_constant_expression.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_constant_expression.Tpo -c -o builtin_compiler-ir_constant_expression.obj `if test -f '$(GLSL_SRCDIR)/ir_constant_expression.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_constant_expression.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_constant_expression.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_constant_expression.Tpo $(DEPDIR)/builtin_compiler-ir_constant_expression.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_constant_expression.cpp' object='builtin_compiler-ir_constant_expression.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_constant_expression.obj `if test -f '$(GLSL_SRCDIR)/ir_constant_expression.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_constant_expression.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_constant_expression.cpp'; fi`

builtin_compiler-ir.o: $(GLSL_SRCDIR)/ir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir.Tpo -c -o builtin_compiler-ir.o `test -f '$(GLSL_SRCDIR)/ir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir.Tpo $(DEPDIR)/builtin_compiler-ir.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir.cpp' object='builtin_compiler-ir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir.o `test -f '$(GLSL_SRCDIR)/ir.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir.cpp

builtin_compiler-ir.obj: $(GLSL_SRCDIR)/ir.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir.Tpo -c -o builtin_compiler-ir.obj `if test -f '$(GLSL_SRCDIR)/ir.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir.Tpo $(DEPDIR)/builtin_compiler-ir.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir.cpp' object='builtin_compiler-ir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir.obj `if test -f '$(GLSL_SRCDIR)/ir.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir.cpp'; fi`

builtin_compiler-ir_expression_flattening.o: $(GLSL_SRCDIR)/ir_expression_flattening.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_expression_flattening.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_expression_flattening.Tpo -c -o builtin_compiler-ir_expression_flattening.o `test -f '$(GLSL_SRCDIR)/ir_expression_flattening.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_expression_flattening.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_expression_flattening.Tpo $(DEPDIR)/builtin_compiler-ir_expression_flattening.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_expression_flattening.cpp' object='builtin_compiler-ir_expression_flattening.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_expression_flattening.o `test -f '$(GLSL_SRCDIR)/ir_expression_flattening.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_expression_flattening.cpp

builtin_compiler-ir_expression_flattening.obj: $(GLSL_SRCDIR)/ir_expression_flattening.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_expression_flattening.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_expression_flattening.Tpo -c -o builtin_compiler-ir_expression_flattening.obj `if test -f '$(GLSL_SRCDIR)/ir_expression_flattening.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_expression_flattening.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_expression_flattening.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_expression_flattening.Tpo $(DEPDIR)/builtin_compiler-ir_expression_flattening.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_expression_flattening.cpp' object='builtin_compiler-ir_expression_flattening.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_expression_flattening.obj `if test -f '$(GLSL_SRCDIR)/ir_expression_flattening.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_expression_flattening.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_expression_flattening.cpp'; fi`

builtin_compiler-ir_function_can_inline.o: $(GLSL_SRCDIR)/ir_function_can_inline.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_function_can_inline.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_function_can_inline.Tpo -c -o builtin_compiler-ir_function_can_inline.o `test -f '$(GLSL_SRCDIR)/ir_function_can_inline.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_can_inline.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_function_can_inline.Tpo $(DEPDIR)/builtin_compiler-ir_function_can_inline.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function_can_inline.cpp' object='builtin_compiler-ir_function_can_inline.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_function_can_inline.o `test -f '$(GLSL_SRCDIR)/ir_function_can_inline.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_can_inline.cpp

builtin_compiler-ir_function_can_inline.obj: $(GLSL_SRCDIR)/ir_function_can_inline.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_function_can_inline.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_function_can_inline.Tpo -c -o builtin_compiler-ir_function_can_inline.obj `if test -f '$(GLSL_SRCDIR)/ir_function_can_inline.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_function_can_inline.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_function_can_inline.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_function_can_inline.Tpo $(DEPDIR)/builtin_compiler-ir_function_can_inline.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function_can_inline.cpp' object='builtin_compiler-ir_function_can_inline.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_function_can_inline.obj `if test -f '$(GLSL_SRCDIR)/ir_function_can_inline.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_function_can_inline.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_function_can_inline.cpp'; fi`

builtin_compiler-ir_function_detect_recursion.o: $(GLSL_SRCDIR)/ir_function_detect_recursion.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_function_detect_recursion.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_function_detect_recursion.Tpo -c -o builtin_compiler-ir_function_detect_recursion.o `test -f '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_function_detect_recursion.Tpo $(DEPDIR)/builtin_compiler-ir_function_detect_recursion.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp' object='builtin_compiler-ir_function_detect_recursion.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_function_detect_recursion.o `test -f '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp

builtin_compiler-ir_function_detect_recursion.obj: $(GLSL_SRCDIR)/ir_function_detect_recursion.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_function_detect_recursion.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_function_detect_recursion.Tpo -c -o builtin_compiler-ir_function_detect_recursion.obj `if test -f '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_function_detect_recursion.Tpo $(DEPDIR)/builtin_compiler-ir_function_detect_recursion.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp' object='builtin_compiler-ir_function_detect_recursion.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_function_detect_recursion.obj `if test -f '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_function_detect_recursion.cpp'; fi`

builtin_compiler-ir_function.o: $(GLSL_SRCDIR)/ir_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_function.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_function.Tpo -c -o builtin_compiler-ir_function.o `test -f '$(GLSL_SRCDIR)/ir_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_function.Tpo $(DEPDIR)/builtin_compiler-ir_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function.cpp' object='builtin_compiler-ir_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_function.o `test -f '$(GLSL_SRCDIR)/ir_function.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_function.cpp

builtin_compiler-ir_function.obj: $(GLSL_SRCDIR)/ir_function.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_function.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_function.Tpo -c -o builtin_compiler-ir_function.obj `if test -f '$(GLSL_SRCDIR)/ir_function.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_function.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_function.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_function.Tpo $(DEPDIR)/builtin_compiler-ir_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_function.cpp' object='builtin_compiler-ir_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_function.obj `if test -f '$(GLSL_SRCDIR)/ir_function.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_function.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_function.cpp'; fi`

builtin_compiler-ir_hierarchical_visitor.o: $(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_hierarchical_visitor.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_hierarchical_visitor.Tpo -c -o builtin_compiler-ir_hierarchical_visitor.o `test -f '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_hierarchical_visitor.Tpo $(DEPDIR)/builtin_compiler-ir_hierarchical_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp' object='builtin_compiler-ir_hierarchical_visitor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_hierarchical_visitor.o `test -f '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp

builtin_compiler-ir_hierarchical_visitor.obj: $(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_hierarchical_visitor.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_hierarchical_visitor.Tpo -c -o builtin_compiler-ir_hierarchical_visitor.obj `if test -f '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_hierarchical_visitor.Tpo $(DEPDIR)/builtin_compiler-ir_hierarchical_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp' object='builtin_compiler-ir_hierarchical_visitor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_hierarchical_visitor.obj `if test -f '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_hierarchical_visitor.cpp'; fi`

builtin_compiler-ir_hv_accept.o: $(GLSL_SRCDIR)/ir_hv_accept.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_hv_accept.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_hv_accept.Tpo -c -o builtin_compiler-ir_hv_accept.o `test -f '$(GLSL_SRCDIR)/ir_hv_accept.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hv_accept.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_hv_accept.Tpo $(DEPDIR)/builtin_compiler-ir_hv_accept.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_hv_accept.cpp' object='builtin_compiler-ir_hv_accept.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_hv_accept.o `test -f '$(GLSL_SRCDIR)/ir_hv_accept.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_hv_accept.cpp

builtin_compiler-ir_hv_accept.obj: $(GLSL_SRCDIR)/ir_hv_accept.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_hv_accept.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_hv_accept.Tpo -c -o builtin_compiler-ir_hv_accept.obj `if test -f '$(GLSL_SRCDIR)/ir_hv_accept.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_hv_accept.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_hv_accept.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_hv_accept.Tpo $(DEPDIR)/builtin_compiler-ir_hv_accept.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_hv_accept.cpp' object='builtin_compiler-ir_hv_accept.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_hv_accept.obj `if test -f '$(GLSL_SRCDIR)/ir_hv_accept.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_hv_accept.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_hv_accept.cpp'; fi`

builtin_compiler-ir_import_prototypes.o: $(GLSL_SRCDIR)/ir_import_prototypes.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_import_prototypes.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_import_prototypes.Tpo -c -o builtin_compiler-ir_import_prototypes.o `test -f '$(GLSL_SRCDIR)/ir_import_prototypes.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_import_prototypes.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_import_prototypes.Tpo $(DEPDIR)/builtin_compiler-ir_import_prototypes.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_import_prototypes.cpp' object='builtin_compiler-ir_import_prototypes.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_import_prototypes.o `test -f '$(GLSL_SRCDIR)/ir_import_prototypes.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_import_prototypes.cpp

builtin_compiler-ir_import_prototypes.obj: $(GLSL_SRCDIR)/ir_import_prototypes.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_import_prototypes.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_import_prototypes.Tpo -c -o builtin_compiler-ir_import_prototypes.obj `if test -f '$(GLSL_SRCDIR)/ir_import_prototypes.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_import_prototypes.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_import_prototypes.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_import_prototypes.Tpo $(DEPDIR)/builtin_compiler-ir_import_prototypes.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_import_prototypes.cpp' object='builtin_compiler-ir_import_prototypes.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_import_prototypes.obj `if test -f '$(GLSL_SRCDIR)/ir_import_prototypes.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_import_prototypes.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_import_prototypes.cpp'; fi`

builtin_compiler-ir_print_visitor.o: $(GLSL_SRCDIR)/ir_print_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_print_visitor.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_print_visitor.Tpo -c -o builtin_compiler-ir_print_visitor.o `test -f '$(GLSL_SRCDIR)/ir_print_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_print_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_print_visitor.Tpo $(DEPDIR)/builtin_compiler-ir_print_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_print_visitor.cpp' object='builtin_compiler-ir_print_visitor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_print_visitor.o `test -f '$(GLSL_SRCDIR)/ir_print_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_print_visitor.cpp

builtin_compiler-ir_print_visitor.obj: $(GLSL_SRCDIR)/ir_print_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_print_visitor.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_print_visitor.Tpo -c -o builtin_compiler-ir_print_visitor.obj `if test -f '$(GLSL_SRCDIR)/ir_print_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_print_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_print_visitor.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_print_visitor.Tpo $(DEPDIR)/builtin_compiler-ir_print_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_print_visitor.cpp' object='builtin_compiler-ir_print_visitor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_print_visitor.obj `if test -f '$(GLSL_SRCDIR)/ir_print_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_print_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_print_visitor.cpp'; fi`

builtin_compiler-ir_reader.o: $(GLSL_SRCDIR)/ir_reader.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_reader.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_reader.Tpo -c -o builtin_compiler-ir_reader.o `test -f '$(GLSL_SRCDIR)/ir_reader.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_reader.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_reader.Tpo $(DEPDIR)/builtin_compiler-ir_reader.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_reader.cpp' object='builtin_compiler-ir_reader.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_reader.o `test -f '$(GLSL_SRCDIR)/ir_reader.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_reader.cpp

builtin_compiler-ir_reader.obj: $(GLSL_SRCDIR)/ir_reader.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_reader.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_reader.Tpo -c -o builtin_compiler-ir_reader.obj `if test -f '$(GLSL_SRCDIR)/ir_reader.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_reader.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_reader.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_reader.Tpo $(DEPDIR)/builtin_compiler-ir_reader.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_reader.cpp' object='builtin_compiler-ir_reader.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_reader.obj `if test -f '$(GLSL_SRCDIR)/ir_reader.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_reader.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_reader.cpp'; fi`

builtin_compiler-ir_rvalue_visitor.o: $(GLSL_SRCDIR)/ir_rvalue_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_rvalue_visitor.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_rvalue_visitor.Tpo -c -o builtin_compiler-ir_rvalue_visitor.o `test -f '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_rvalue_visitor.Tpo $(DEPDIR)/builtin_compiler-ir_rvalue_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp' object='builtin_compiler-ir_rvalue_visitor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_rvalue_visitor.o `test -f '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp

builtin_compiler-ir_rvalue_visitor.obj: $(GLSL_SRCDIR)/ir_rvalue_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_rvalue_visitor.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_rvalue_visitor.Tpo -c -o builtin_compiler-ir_rvalue_visitor.obj `if test -f '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_rvalue_visitor.Tpo $(DEPDIR)/builtin_compiler-ir_rvalue_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp' object='builtin_compiler-ir_rvalue_visitor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_rvalue_visitor.obj `if test -f '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_rvalue_visitor.cpp'; fi`

builtin_compiler-ir_set_program_inouts.o: $(GLSL_SRCDIR)/ir_set_program_inouts.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_set_program_inouts.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_set_program_inouts.Tpo -c -o builtin_compiler-ir_set_program_inouts.o `test -f '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_set_program_inouts.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_set_program_inouts.Tpo $(DEPDIR)/builtin_compiler-ir_set_program_inouts.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_set_program_inouts.cpp' object='builtin_compiler-ir_set_program_inouts.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_set_program_inouts.o `test -f '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_set_program_inouts.cpp

builtin_compiler-ir_set_program_inouts.obj: $(GLSL_SRCDIR)/ir_set_program_inouts.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_set_program_inouts.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_set_program_inouts.Tpo -c -o builtin_compiler-ir_set_program_inouts.obj `if test -f '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_set_program_inouts.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_set_program_inouts.Tpo $(DEPDIR)/builtin_compiler-ir_set_program_inouts.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_set_program_inouts.cpp' object='builtin_compiler-ir_set_program_inouts.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_set_program_inouts.obj `if test -f '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_set_program_inouts.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_set_program_inouts.cpp'; fi`

builtin_compiler-ir_validate.o: $(GLSL_SRCDIR)/ir_validate.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_validate.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_validate.Tpo -c -o builtin_compiler-ir_validate.o `test -f '$(GLSL_SRCDIR)/ir_validate.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_validate.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_validate.Tpo $(DEPDIR)/builtin_compiler-ir_validate.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_validate.cpp' object='builtin_compiler-ir_validate.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_validate.o `test -f '$(GLSL_SRCDIR)/ir_validate.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_validate.cpp

builtin_compiler-ir_validate.obj: $(GLSL_SRCDIR)/ir_validate.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_validate.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_validate.Tpo -c -o builtin_compiler-ir_validate.obj `if test -f '$(GLSL_SRCDIR)/ir_validate.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_validate.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_validate.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_validate.Tpo $(DEPDIR)/builtin_compiler-ir_validate.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_validate.cpp' object='builtin_compiler-ir_validate.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_validate.obj `if test -f '$(GLSL_SRCDIR)/ir_validate.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_validate.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_validate.cpp'; fi`

builtin_compiler-ir_variable_refcount.o: $(GLSL_SRCDIR)/ir_variable_refcount.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_variable_refcount.o -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_variable_refcount.Tpo -c -o builtin_compiler-ir_variable_refcount.o `test -f '$(GLSL_SRCDIR)/ir_variable_refcount.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_variable_refcount.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_variable_refcount.Tpo $(DEPDIR)/builtin_compiler-ir_variable_refcount.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_variable_refcount.cpp' object='builtin_compiler-ir_variable_refcount.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_variable_refcount.o `test -f '$(GLSL_SRCDIR)/ir_variable_refcount.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/ir_variable_refcount.cpp

builtin_compiler-ir_variable_refcount.obj: $(GLSL_SRCDIR)/ir_variable_refcount.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-ir_variable_refcount.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-ir_variable_refcount.Tpo -c -o builtin_compiler-ir_variable_refcount.obj `if test -f '$(GLSL_SRCDIR)/ir_variable_refcount.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_variable_refcount.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_variable_refcount.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-ir_variable_refcount.Tpo $(DEPDIR)/builtin_compiler-ir_variable_refcount.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/ir_variable_refcount.cpp' object='builtin_compiler-ir_variable_refcount.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-ir_variable_refcount.obj `if test -f '$(GLSL_SRCDIR)/ir_variable_refcount.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/ir_variable_refcount.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/ir_variable_refcount.cpp'; fi`

builtin_compiler-linker.o: $(GLSL_SRCDIR)/linker.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-linker.o -MD -MP -MF $(DEPDIR)/builtin_compiler-linker.Tpo -c -o builtin_compiler-linker.o `test -f '$(GLSL_SRCDIR)/linker.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/linker.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-linker.Tpo $(DEPDIR)/builtin_compiler-linker.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/linker.cpp' object='builtin_compiler-linker.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-linker.o `test -f '$(GLSL_SRCDIR)/linker.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/linker.cpp

builtin_compiler-linker.obj: $(GLSL_SRCDIR)/linker.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-linker.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-linker.Tpo -c -o builtin_compiler-linker.obj `if test -f '$(GLSL_SRCDIR)/linker.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/linker.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/linker.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-linker.Tpo $(DEPDIR)/builtin_compiler-linker.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/linker.cpp' object='builtin_compiler-linker.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-linker.obj `if test -f '$(GLSL_SRCDIR)/linker.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/linker.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/linker.cpp'; fi`

builtin_compiler-link_functions.o: $(GLSL_SRCDIR)/link_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_functions.o -MD -MP -MF $(DEPDIR)/builtin_compiler-link_functions.Tpo -c -o builtin_compiler-link_functions.o `test -f '$(GLSL_SRCDIR)/link_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_functions.Tpo $(DEPDIR)/builtin_compiler-link_functions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_functions.cpp' object='builtin_compiler-link_functions.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_functions.o `test -f '$(GLSL_SRCDIR)/link_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_functions.cpp

builtin_compiler-link_functions.obj: $(GLSL_SRCDIR)/link_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_functions.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-link_functions.Tpo -c -o builtin_compiler-link_functions.obj `if test -f '$(GLSL_SRCDIR)/link_functions.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_functions.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_functions.Tpo $(DEPDIR)/builtin_compiler-link_functions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_functions.cpp' object='builtin_compiler-link_functions.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_functions.obj `if test -f '$(GLSL_SRCDIR)/link_functions.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_functions.cpp'; fi`

builtin_compiler-link_interface_blocks.o: $(GLSL_SRCDIR)/link_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_interface_blocks.o -MD -MP -MF $(DEPDIR)/builtin_compiler-link_interface_blocks.Tpo -c -o builtin_compiler-link_interface_blocks.o `test -f '$(GLSL_SRCDIR)/link_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_interface_blocks.Tpo $(DEPDIR)/builtin_compiler-link_interface_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_interface_blocks.cpp' object='builtin_compiler-link_interface_blocks.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_interface_blocks.o `test -f '$(GLSL_SRCDIR)/link_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_interface_blocks.cpp

builtin_compiler-link_interface_blocks.obj: $(GLSL_SRCDIR)/link_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_interface_blocks.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-link_interface_blocks.Tpo -c -o builtin_compiler-link_interface_blocks.obj `if test -f '$(GLSL_SRCDIR)/link_interface_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_interface_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_interface_blocks.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_interface_blocks.Tpo $(DEPDIR)/builtin_compiler-link_interface_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_interface_blocks.cpp' object='builtin_compiler-link_interface_blocks.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_interface_blocks.obj `if test -f '$(GLSL_SRCDIR)/link_interface_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_interface_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_interface_blocks.cpp'; fi`

builtin_compiler-link_uniforms.o: $(GLSL_SRCDIR)/link_uniforms.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniforms.o -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniforms.Tpo -c -o builtin_compiler-link_uniforms.o `test -f '$(GLSL_SRCDIR)/link_uniforms.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniforms.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniforms.Tpo $(DEPDIR)/builtin_compiler-link_uniforms.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniforms.cpp' object='builtin_compiler-link_uniforms.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniforms.o `test -f '$(GLSL_SRCDIR)/link_uniforms.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniforms.cpp

builtin_compiler-link_uniforms.obj: $(GLSL_SRCDIR)/link_uniforms.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniforms.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniforms.Tpo -c -o builtin_compiler-link_uniforms.obj `if test -f '$(GLSL_SRCDIR)/link_uniforms.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniforms.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniforms.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniforms.Tpo $(DEPDIR)/builtin_compiler-link_uniforms.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniforms.cpp' object='builtin_compiler-link_uniforms.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniforms.obj `if test -f '$(GLSL_SRCDIR)/link_uniforms.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniforms.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniforms.cpp'; fi`

builtin_compiler-link_uniform_initializers.o: $(GLSL_SRCDIR)/link_uniform_initializers.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniform_initializers.o -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniform_initializers.Tpo -c -o builtin_compiler-link_uniform_initializers.o `test -f '$(GLSL_SRCDIR)/link_uniform_initializers.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_initializers.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniform_initializers.Tpo $(DEPDIR)/builtin_compiler-link_uniform_initializers.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_initializers.cpp' object='builtin_compiler-link_uniform_initializers.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniform_initializers.o `test -f '$(GLSL_SRCDIR)/link_uniform_initializers.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_initializers.cpp

builtin_compiler-link_uniform_initializers.obj: $(GLSL_SRCDIR)/link_uniform_initializers.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniform_initializers.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniform_initializers.Tpo -c -o builtin_compiler-link_uniform_initializers.obj `if test -f '$(GLSL_SRCDIR)/link_uniform_initializers.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniform_initializers.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniform_initializers.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniform_initializers.Tpo $(DEPDIR)/builtin_compiler-link_uniform_initializers.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_initializers.cpp' object='builtin_compiler-link_uniform_initializers.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniform_initializers.obj `if test -f '$(GLSL_SRCDIR)/link_uniform_initializers.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniform_initializers.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniform_initializers.cpp'; fi`

builtin_compiler-link_uniform_block_active_visitor.o: $(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniform_block_active_visitor.o -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniform_block_active_visitor.Tpo -c -o builtin_compiler-link_uniform_block_active_visitor.o `test -f '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniform_block_active_visitor.Tpo $(DEPDIR)/builtin_compiler-link_uniform_block_active_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp' object='builtin_compiler-link_uniform_block_active_visitor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniform_block_active_visitor.o `test -f '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp

builtin_compiler-link_uniform_block_active_visitor.obj: $(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniform_block_active_visitor.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniform_block_active_visitor.Tpo -c -o builtin_compiler-link_uniform_block_active_visitor.obj `if test -f '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniform_block_active_visitor.Tpo $(DEPDIR)/builtin_compiler-link_uniform_block_active_visitor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp' object='builtin_compiler-link_uniform_block_active_visitor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniform_block_active_visitor.obj `if test -f '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniform_block_active_visitor.cpp'; fi`

builtin_compiler-link_uniform_blocks.o: $(GLSL_SRCDIR)/link_uniform_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniform_blocks.o -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniform_blocks.Tpo -c -o builtin_compiler-link_uniform_blocks.o `test -f '$(GLSL_SRCDIR)/link_uniform_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniform_blocks.Tpo $(DEPDIR)/builtin_compiler-link_uniform_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_blocks.cpp' object='builtin_compiler-link_uniform_blocks.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniform_blocks.o `test -f '$(GLSL_SRCDIR)/link_uniform_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_uniform_blocks.cpp

builtin_compiler-link_uniform_blocks.obj: $(GLSL_SRCDIR)/link_uniform_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_uniform_blocks.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-link_uniform_blocks.Tpo -c -o builtin_compiler-link_uniform_blocks.obj `if test -f '$(GLSL_SRCDIR)/link_uniform_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniform_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniform_blocks.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_uniform_blocks.Tpo $(DEPDIR)/builtin_compiler-link_uniform_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_uniform_blocks.cpp' object='builtin_compiler-link_uniform_blocks.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_uniform_blocks.obj `if test -f '$(GLSL_SRCDIR)/link_uniform_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_uniform_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_uniform_blocks.cpp'; fi`

builtin_compiler-link_varyings.o: $(GLSL_SRCDIR)/link_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_varyings.o -MD -MP -MF $(DEPDIR)/builtin_compiler-link_varyings.Tpo -c -o builtin_compiler-link_varyings.o `test -f '$(GLSL_SRCDIR)/link_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_varyings.Tpo $(DEPDIR)/builtin_compiler-link_varyings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_varyings.cpp' object='builtin_compiler-link_varyings.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_varyings.o `test -f '$(GLSL_SRCDIR)/link_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/link_varyings.cpp

builtin_compiler-link_varyings.obj: $(GLSL_SRCDIR)/link_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-link_varyings.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-link_varyings.Tpo -c -o builtin_compiler-link_varyings.obj `if test -f '$(GLSL_SRCDIR)/link_varyings.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_varyings.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_varyings.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-link_varyings.Tpo $(DEPDIR)/builtin_compiler-link_varyings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/link_varyings.cpp' object='builtin_compiler-link_varyings.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-link_varyings.obj `if test -f '$(GLSL_SRCDIR)/link_varyings.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/link_varyings.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/link_varyings.cpp'; fi`

builtin_compiler-loop_analysis.o: $(GLSL_SRCDIR)/loop_analysis.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-loop_analysis.o -MD -MP -MF $(DEPDIR)/builtin_compiler-loop_analysis.Tpo -c -o builtin_compiler-loop_analysis.o `test -f '$(GLSL_SRCDIR)/loop_analysis.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_analysis.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-loop_analysis.Tpo $(DEPDIR)/builtin_compiler-loop_analysis.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_analysis.cpp' object='builtin_compiler-loop_analysis.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-loop_analysis.o `test -f '$(GLSL_SRCDIR)/loop_analysis.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_analysis.cpp

builtin_compiler-loop_analysis.obj: $(GLSL_SRCDIR)/loop_analysis.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-loop_analysis.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-loop_analysis.Tpo -c -o builtin_compiler-loop_analysis.obj `if test -f '$(GLSL_SRCDIR)/loop_analysis.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/loop_analysis.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/loop_analysis.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-loop_analysis.Tpo $(DEPDIR)/builtin_compiler-loop_analysis.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_analysis.cpp' object='builtin_compiler-loop_analysis.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-loop_analysis.obj `if test -f '$(GLSL_SRCDIR)/loop_analysis.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/loop_analysis.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/loop_analysis.cpp'; fi`

builtin_compiler-loop_controls.o: $(GLSL_SRCDIR)/loop_controls.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-loop_controls.o -MD -MP -MF $(DEPDIR)/builtin_compiler-loop_controls.Tpo -c -o builtin_compiler-loop_controls.o `test -f '$(GLSL_SRCDIR)/loop_controls.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_controls.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-loop_controls.Tpo $(DEPDIR)/builtin_compiler-loop_controls.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_controls.cpp' object='builtin_compiler-loop_controls.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-loop_controls.o `test -f '$(GLSL_SRCDIR)/loop_controls.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_controls.cpp

builtin_compiler-loop_controls.obj: $(GLSL_SRCDIR)/loop_controls.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-loop_controls.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-loop_controls.Tpo -c -o builtin_compiler-loop_controls.obj `if test -f '$(GLSL_SRCDIR)/loop_controls.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/loop_controls.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/loop_controls.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-loop_controls.Tpo $(DEPDIR)/builtin_compiler-loop_controls.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_controls.cpp' object='builtin_compiler-loop_controls.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-loop_controls.obj `if test -f '$(GLSL_SRCDIR)/loop_controls.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/loop_controls.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/loop_controls.cpp'; fi`

builtin_compiler-loop_unroll.o: $(GLSL_SRCDIR)/loop_unroll.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-loop_unroll.o -MD -MP -MF $(DEPDIR)/builtin_compiler-loop_unroll.Tpo -c -o builtin_compiler-loop_unroll.o `test -f '$(GLSL_SRCDIR)/loop_unroll.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_unroll.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-loop_unroll.Tpo $(DEPDIR)/builtin_compiler-loop_unroll.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_unroll.cpp' object='builtin_compiler-loop_unroll.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-loop_unroll.o `test -f '$(GLSL_SRCDIR)/loop_unroll.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/loop_unroll.cpp

builtin_compiler-loop_unroll.obj: $(GLSL_SRCDIR)/loop_unroll.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-loop_unroll.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-loop_unroll.Tpo -c -o builtin_compiler-loop_unroll.obj `if test -f '$(GLSL_SRCDIR)/loop_unroll.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/loop_unroll.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/loop_unroll.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-loop_unroll.Tpo $(DEPDIR)/builtin_compiler-loop_unroll.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/loop_unroll.cpp' object='builtin_compiler-loop_unroll.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-loop_unroll.obj `if test -f '$(GLSL_SRCDIR)/loop_unroll.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/loop_unroll.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/loop_unroll.cpp'; fi`

builtin_compiler-lower_clip_distance.o: $(GLSL_SRCDIR)/lower_clip_distance.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_clip_distance.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_clip_distance.Tpo -c -o builtin_compiler-lower_clip_distance.o `test -f '$(GLSL_SRCDIR)/lower_clip_distance.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_clip_distance.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_clip_distance.Tpo $(DEPDIR)/builtin_compiler-lower_clip_distance.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_clip_distance.cpp' object='builtin_compiler-lower_clip_distance.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_clip_distance.o `test -f '$(GLSL_SRCDIR)/lower_clip_distance.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_clip_distance.cpp

builtin_compiler-lower_clip_distance.obj: $(GLSL_SRCDIR)/lower_clip_distance.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_clip_distance.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_clip_distance.Tpo -c -o builtin_compiler-lower_clip_distance.obj `if test -f '$(GLSL_SRCDIR)/lower_clip_distance.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_clip_distance.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_clip_distance.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_clip_distance.Tpo $(DEPDIR)/builtin_compiler-lower_clip_distance.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_clip_distance.cpp' object='builtin_compiler-lower_clip_distance.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_clip_distance.obj `if test -f '$(GLSL_SRCDIR)/lower_clip_distance.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_clip_distance.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_clip_distance.cpp'; fi`

builtin_compiler-lower_discard.o: $(GLSL_SRCDIR)/lower_discard.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_discard.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_discard.Tpo -c -o builtin_compiler-lower_discard.o `test -f '$(GLSL_SRCDIR)/lower_discard.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_discard.Tpo $(DEPDIR)/builtin_compiler-lower_discard.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_discard.cpp' object='builtin_compiler-lower_discard.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_discard.o `test -f '$(GLSL_SRCDIR)/lower_discard.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard.cpp

builtin_compiler-lower_discard.obj: $(GLSL_SRCDIR)/lower_discard.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_discard.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_discard.Tpo -c -o builtin_compiler-lower_discard.obj `if test -f '$(GLSL_SRCDIR)/lower_discard.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_discard.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_discard.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_discard.Tpo $(DEPDIR)/builtin_compiler-lower_discard.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_discard.cpp' object='builtin_compiler-lower_discard.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_discard.obj `if test -f '$(GLSL_SRCDIR)/lower_discard.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_discard.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_discard.cpp'; fi`

builtin_compiler-lower_discard_flow.o: $(GLSL_SRCDIR)/lower_discard_flow.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_discard_flow.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_discard_flow.Tpo -c -o builtin_compiler-lower_discard_flow.o `test -f '$(GLSL_SRCDIR)/lower_discard_flow.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard_flow.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_discard_flow.Tpo $(DEPDIR)/builtin_compiler-lower_discard_flow.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_discard_flow.cpp' object='builtin_compiler-lower_discard_flow.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_discard_flow.o `test -f '$(GLSL_SRCDIR)/lower_discard_flow.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_discard_flow.cpp

builtin_compiler-lower_discard_flow.obj: $(GLSL_SRCDIR)/lower_discard_flow.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_discard_flow.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_discard_flow.Tpo -c -o builtin_compiler-lower_discard_flow.obj `if test -f '$(GLSL_SRCDIR)/lower_discard_flow.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_discard_flow.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_discard_flow.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_discard_flow.Tpo $(DEPDIR)/builtin_compiler-lower_discard_flow.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_discard_flow.cpp' object='builtin_compiler-lower_discard_flow.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_discard_flow.obj `if test -f '$(GLSL_SRCDIR)/lower_discard_flow.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_discard_flow.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_discard_flow.cpp'; fi`

builtin_compiler-lower_if_to_cond_assign.o: $(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_if_to_cond_assign.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_if_to_cond_assign.Tpo -c -o builtin_compiler-lower_if_to_cond_assign.o `test -f '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_if_to_cond_assign.Tpo $(DEPDIR)/builtin_compiler-lower_if_to_cond_assign.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp' object='builtin_compiler-lower_if_to_cond_assign.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_if_to_cond_assign.o `test -f '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp

builtin_compiler-lower_if_to_cond_assign.obj: $(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_if_to_cond_assign.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_if_to_cond_assign.Tpo -c -o builtin_compiler-lower_if_to_cond_assign.obj `if test -f '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_if_to_cond_assign.Tpo $(DEPDIR)/builtin_compiler-lower_if_to_cond_assign.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp' object='builtin_compiler-lower_if_to_cond_assign.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_if_to_cond_assign.obj `if test -f '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_if_to_cond_assign.cpp'; fi`

builtin_compiler-lower_instructions.o: $(GLSL_SRCDIR)/lower_instructions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_instructions.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_instructions.Tpo -c -o builtin_compiler-lower_instructions.o `test -f '$(GLSL_SRCDIR)/lower_instructions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_instructions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_instructions.Tpo $(DEPDIR)/builtin_compiler-lower_instructions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_instructions.cpp' object='builtin_compiler-lower_instructions.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_instructions.o `test -f '$(GLSL_SRCDIR)/lower_instructions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_instructions.cpp

builtin_compiler-lower_instructions.obj: $(GLSL_SRCDIR)/lower_instructions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_instructions.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_instructions.Tpo -c -o builtin_compiler-lower_instructions.obj `if test -f '$(GLSL_SRCDIR)/lower_instructions.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_instructions.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_instructions.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_instructions.Tpo $(DEPDIR)/builtin_compiler-lower_instructions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_instructions.cpp' object='builtin_compiler-lower_instructions.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_instructions.obj `if test -f '$(GLSL_SRCDIR)/lower_instructions.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_instructions.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_instructions.cpp'; fi`

builtin_compiler-lower_jumps.o: $(GLSL_SRCDIR)/lower_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_jumps.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_jumps.Tpo -c -o builtin_compiler-lower_jumps.o `test -f '$(GLSL_SRCDIR)/lower_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_jumps.Tpo $(DEPDIR)/builtin_compiler-lower_jumps.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_jumps.cpp' object='builtin_compiler-lower_jumps.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_jumps.o `test -f '$(GLSL_SRCDIR)/lower_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_jumps.cpp

builtin_compiler-lower_jumps.obj: $(GLSL_SRCDIR)/lower_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_jumps.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_jumps.Tpo -c -o builtin_compiler-lower_jumps.obj `if test -f '$(GLSL_SRCDIR)/lower_jumps.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_jumps.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_jumps.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_jumps.Tpo $(DEPDIR)/builtin_compiler-lower_jumps.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_jumps.cpp' object='builtin_compiler-lower_jumps.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_jumps.obj `if test -f '$(GLSL_SRCDIR)/lower_jumps.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_jumps.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_jumps.cpp'; fi`

builtin_compiler-lower_mat_op_to_vec.o: $(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_mat_op_to_vec.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_mat_op_to_vec.Tpo -c -o builtin_compiler-lower_mat_op_to_vec.o `test -f '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_mat_op_to_vec.Tpo $(DEPDIR)/builtin_compiler-lower_mat_op_to_vec.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp' object='builtin_compiler-lower_mat_op_to_vec.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_mat_op_to_vec.o `test -f '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp

builtin_compiler-lower_mat_op_to_vec.obj: $(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_mat_op_to_vec.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_mat_op_to_vec.Tpo -c -o builtin_compiler-lower_mat_op_to_vec.obj `if test -f '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_mat_op_to_vec.Tpo $(DEPDIR)/builtin_compiler-lower_mat_op_to_vec.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp' object='builtin_compiler-lower_mat_op_to_vec.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_mat_op_to_vec.obj `if test -f '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_mat_op_to_vec.cpp'; fi`

builtin_compiler-lower_noise.o: $(GLSL_SRCDIR)/lower_noise.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_noise.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_noise.Tpo -c -o builtin_compiler-lower_noise.o `test -f '$(GLSL_SRCDIR)/lower_noise.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_noise.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_noise.Tpo $(DEPDIR)/builtin_compiler-lower_noise.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_noise.cpp' object='builtin_compiler-lower_noise.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_noise.o `test -f '$(GLSL_SRCDIR)/lower_noise.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_noise.cpp

builtin_compiler-lower_noise.obj: $(GLSL_SRCDIR)/lower_noise.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_noise.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_noise.Tpo -c -o builtin_compiler-lower_noise.obj `if test -f '$(GLSL_SRCDIR)/lower_noise.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_noise.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_noise.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_noise.Tpo $(DEPDIR)/builtin_compiler-lower_noise.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_noise.cpp' object='builtin_compiler-lower_noise.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_noise.obj `if test -f '$(GLSL_SRCDIR)/lower_noise.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_noise.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_noise.cpp'; fi`

builtin_compiler-lower_packed_varyings.o: $(GLSL_SRCDIR)/lower_packed_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_packed_varyings.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_packed_varyings.Tpo -c -o builtin_compiler-lower_packed_varyings.o `test -f '$(GLSL_SRCDIR)/lower_packed_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packed_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_packed_varyings.Tpo $(DEPDIR)/builtin_compiler-lower_packed_varyings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_packed_varyings.cpp' object='builtin_compiler-lower_packed_varyings.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_packed_varyings.o `test -f '$(GLSL_SRCDIR)/lower_packed_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packed_varyings.cpp

builtin_compiler-lower_packed_varyings.obj: $(GLSL_SRCDIR)/lower_packed_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_packed_varyings.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_packed_varyings.Tpo -c -o builtin_compiler-lower_packed_varyings.obj `if test -f '$(GLSL_SRCDIR)/lower_packed_varyings.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_packed_varyings.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_packed_varyings.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_packed_varyings.Tpo $(DEPDIR)/builtin_compiler-lower_packed_varyings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_packed_varyings.cpp' object='builtin_compiler-lower_packed_varyings.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_packed_varyings.obj `if test -f '$(GLSL_SRCDIR)/lower_packed_varyings.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_packed_varyings.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_packed_varyings.cpp'; fi`

builtin_compiler-lower_named_interface_blocks.o: $(GLSL_SRCDIR)/lower_named_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_named_interface_blocks.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_named_interface_blocks.Tpo -c -o builtin_compiler-lower_named_interface_blocks.o `test -f '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_named_interface_blocks.Tpo $(DEPDIR)/builtin_compiler-lower_named_interface_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp' object='builtin_compiler-lower_named_interface_blocks.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_named_interface_blocks.o `test -f '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp

builtin_compiler-lower_named_interface_blocks.obj: $(GLSL_SRCDIR)/lower_named_interface_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_named_interface_blocks.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_named_interface_blocks.Tpo -c -o builtin_compiler-lower_named_interface_blocks.obj `if test -f '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_named_interface_blocks.Tpo $(DEPDIR)/builtin_compiler-lower_named_interface_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp' object='builtin_compiler-lower_named_interface_blocks.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_named_interface_blocks.obj `if test -f '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_named_interface_blocks.cpp'; fi`

builtin_compiler-lower_packing_builtins.o: $(GLSL_SRCDIR)/lower_packing_builtins.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_packing_builtins.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_packing_builtins.Tpo -c -o builtin_compiler-lower_packing_builtins.o `test -f '$(GLSL_SRCDIR)/lower_packing_builtins.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packing_builtins.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_packing_builtins.Tpo $(DEPDIR)/builtin_compiler-lower_packing_builtins.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_packing_builtins.cpp' object='builtin_compiler-lower_packing_builtins.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_packing_builtins.o `test -f '$(GLSL_SRCDIR)/lower_packing_builtins.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_packing_builtins.cpp

builtin_compiler-lower_packing_builtins.obj: $(GLSL_SRCDIR)/lower_packing_builtins.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_packing_builtins.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_packing_builtins.Tpo -c -o builtin_compiler-lower_packing_builtins.obj `if test -f '$(GLSL_SRCDIR)/lower_packing_builtins.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_packing_builtins.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_packing_builtins.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_packing_builtins.Tpo $(DEPDIR)/builtin_compiler-lower_packing_builtins.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_packing_builtins.cpp' object='builtin_compiler-lower_packing_builtins.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_packing_builtins.obj `if test -f '$(GLSL_SRCDIR)/lower_packing_builtins.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_packing_builtins.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_packing_builtins.cpp'; fi`

builtin_compiler-lower_texture_projection.o: $(GLSL_SRCDIR)/lower_texture_projection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_texture_projection.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_texture_projection.Tpo -c -o builtin_compiler-lower_texture_projection.o `test -f '$(GLSL_SRCDIR)/lower_texture_projection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_texture_projection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_texture_projection.Tpo $(DEPDIR)/builtin_compiler-lower_texture_projection.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_texture_projection.cpp' object='builtin_compiler-lower_texture_projection.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_texture_projection.o `test -f '$(GLSL_SRCDIR)/lower_texture_projection.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_texture_projection.cpp

builtin_compiler-lower_texture_projection.obj: $(GLSL_SRCDIR)/lower_texture_projection.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_texture_projection.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_texture_projection.Tpo -c -o builtin_compiler-lower_texture_projection.obj `if test -f '$(GLSL_SRCDIR)/lower_texture_projection.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_texture_projection.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_texture_projection.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_texture_projection.Tpo $(DEPDIR)/builtin_compiler-lower_texture_projection.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_texture_projection.cpp' object='builtin_compiler-lower_texture_projection.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_texture_projection.obj `if test -f '$(GLSL_SRCDIR)/lower_texture_projection.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_texture_projection.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_texture_projection.cpp'; fi`

builtin_compiler-lower_variable_index_to_cond_assign.o: $(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_variable_index_to_cond_assign.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_variable_index_to_cond_assign.Tpo -c -o builtin_compiler-lower_variable_index_to_cond_assign.o `test -f '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_variable_index_to_cond_assign.Tpo $(DEPDIR)/builtin_compiler-lower_variable_index_to_cond_assign.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp' object='builtin_compiler-lower_variable_index_to_cond_assign.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_variable_index_to_cond_assign.o `test -f '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp

builtin_compiler-lower_variable_index_to_cond_assign.obj: $(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_variable_index_to_cond_assign.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_variable_index_to_cond_assign.Tpo -c -o builtin_compiler-lower_variable_index_to_cond_assign.obj `if test -f '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_variable_index_to_cond_assign.Tpo $(DEPDIR)/builtin_compiler-lower_variable_index_to_cond_assign.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp' object='builtin_compiler-lower_variable_index_to_cond_assign.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_variable_index_to_cond_assign.obj `if test -f '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_variable_index_to_cond_assign.cpp'; fi`

builtin_compiler-lower_vec_index_to_cond_assign.o: $(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vec_index_to_cond_assign.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vec_index_to_cond_assign.Tpo -c -o builtin_compiler-lower_vec_index_to_cond_assign.o `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vec_index_to_cond_assign.Tpo $(DEPDIR)/builtin_compiler-lower_vec_index_to_cond_assign.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp' object='builtin_compiler-lower_vec_index_to_cond_assign.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vec_index_to_cond_assign.o `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp

builtin_compiler-lower_vec_index_to_cond_assign.obj: $(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vec_index_to_cond_assign.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vec_index_to_cond_assign.Tpo -c -o builtin_compiler-lower_vec_index_to_cond_assign.obj `if test -f '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vec_index_to_cond_assign.Tpo $(DEPDIR)/builtin_compiler-lower_vec_index_to_cond_assign.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp' object='builtin_compiler-lower_vec_index_to_cond_assign.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vec_index_to_cond_assign.obj `if test -f '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vec_index_to_cond_assign.cpp'; fi`

builtin_compiler-lower_vec_index_to_swizzle.o: $(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vec_index_to_swizzle.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vec_index_to_swizzle.Tpo -c -o builtin_compiler-lower_vec_index_to_swizzle.o `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vec_index_to_swizzle.Tpo $(DEPDIR)/builtin_compiler-lower_vec_index_to_swizzle.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp' object='builtin_compiler-lower_vec_index_to_swizzle.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vec_index_to_swizzle.o `test -f '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp

builtin_compiler-lower_vec_index_to_swizzle.obj: $(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vec_index_to_swizzle.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vec_index_to_swizzle.Tpo -c -o builtin_compiler-lower_vec_index_to_swizzle.obj `if test -f '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vec_index_to_swizzle.Tpo $(DEPDIR)/builtin_compiler-lower_vec_index_to_swizzle.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp' object='builtin_compiler-lower_vec_index_to_swizzle.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vec_index_to_swizzle.obj `if test -f '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vec_index_to_swizzle.cpp'; fi`

builtin_compiler-lower_vector.o: $(GLSL_SRCDIR)/lower_vector.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vector.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vector.Tpo -c -o builtin_compiler-lower_vector.o `test -f '$(GLSL_SRCDIR)/lower_vector.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vector.Tpo $(DEPDIR)/builtin_compiler-lower_vector.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vector.cpp' object='builtin_compiler-lower_vector.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vector.o `test -f '$(GLSL_SRCDIR)/lower_vector.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector.cpp

builtin_compiler-lower_vector.obj: $(GLSL_SRCDIR)/lower_vector.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vector.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vector.Tpo -c -o builtin_compiler-lower_vector.obj `if test -f '$(GLSL_SRCDIR)/lower_vector.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vector.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vector.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vector.Tpo $(DEPDIR)/builtin_compiler-lower_vector.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vector.cpp' object='builtin_compiler-lower_vector.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vector.obj `if test -f '$(GLSL_SRCDIR)/lower_vector.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vector.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vector.cpp'; fi`

builtin_compiler-lower_vector_insert.o: $(GLSL_SRCDIR)/lower_vector_insert.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vector_insert.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vector_insert.Tpo -c -o builtin_compiler-lower_vector_insert.o `test -f '$(GLSL_SRCDIR)/lower_vector_insert.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector_insert.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vector_insert.Tpo $(DEPDIR)/builtin_compiler-lower_vector_insert.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vector_insert.cpp' object='builtin_compiler-lower_vector_insert.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vector_insert.o `test -f '$(GLSL_SRCDIR)/lower_vector_insert.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_vector_insert.cpp

builtin_compiler-lower_vector_insert.obj: $(GLSL_SRCDIR)/lower_vector_insert.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_vector_insert.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_vector_insert.Tpo -c -o builtin_compiler-lower_vector_insert.obj `if test -f '$(GLSL_SRCDIR)/lower_vector_insert.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vector_insert.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vector_insert.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_vector_insert.Tpo $(DEPDIR)/builtin_compiler-lower_vector_insert.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_vector_insert.cpp' object='builtin_compiler-lower_vector_insert.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_vector_insert.obj `if test -f '$(GLSL_SRCDIR)/lower_vector_insert.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_vector_insert.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_vector_insert.cpp'; fi`

builtin_compiler-lower_output_reads.o: $(GLSL_SRCDIR)/lower_output_reads.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_output_reads.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_output_reads.Tpo -c -o builtin_compiler-lower_output_reads.o `test -f '$(GLSL_SRCDIR)/lower_output_reads.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_output_reads.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_output_reads.Tpo $(DEPDIR)/builtin_compiler-lower_output_reads.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_output_reads.cpp' object='builtin_compiler-lower_output_reads.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_output_reads.o `test -f '$(GLSL_SRCDIR)/lower_output_reads.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_output_reads.cpp

builtin_compiler-lower_output_reads.obj: $(GLSL_SRCDIR)/lower_output_reads.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_output_reads.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_output_reads.Tpo -c -o builtin_compiler-lower_output_reads.obj `if test -f '$(GLSL_SRCDIR)/lower_output_reads.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_output_reads.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_output_reads.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_output_reads.Tpo $(DEPDIR)/builtin_compiler-lower_output_reads.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_output_reads.cpp' object='builtin_compiler-lower_output_reads.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_output_reads.obj `if test -f '$(GLSL_SRCDIR)/lower_output_reads.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_output_reads.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_output_reads.cpp'; fi`

builtin_compiler-lower_ubo_reference.o: $(GLSL_SRCDIR)/lower_ubo_reference.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_ubo_reference.o -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_ubo_reference.Tpo -c -o builtin_compiler-lower_ubo_reference.o `test -f '$(GLSL_SRCDIR)/lower_ubo_reference.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_ubo_reference.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_ubo_reference.Tpo $(DEPDIR)/builtin_compiler-lower_ubo_reference.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_ubo_reference.cpp' object='builtin_compiler-lower_ubo_reference.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_ubo_reference.o `test -f '$(GLSL_SRCDIR)/lower_ubo_reference.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/lower_ubo_reference.cpp

builtin_compiler-lower_ubo_reference.obj: $(GLSL_SRCDIR)/lower_ubo_reference.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-lower_ubo_reference.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-lower_ubo_reference.Tpo -c -o builtin_compiler-lower_ubo_reference.obj `if test -f '$(GLSL_SRCDIR)/lower_ubo_reference.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_ubo_reference.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_ubo_reference.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-lower_ubo_reference.Tpo $(DEPDIR)/builtin_compiler-lower_ubo_reference.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/lower_ubo_reference.cpp' object='builtin_compiler-lower_ubo_reference.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-lower_ubo_reference.obj `if test -f '$(GLSL_SRCDIR)/lower_ubo_reference.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/lower_ubo_reference.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/lower_ubo_reference.cpp'; fi`

builtin_compiler-opt_algebraic.o: $(GLSL_SRCDIR)/opt_algebraic.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_algebraic.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_algebraic.Tpo -c -o builtin_compiler-opt_algebraic.o `test -f '$(GLSL_SRCDIR)/opt_algebraic.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_algebraic.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_algebraic.Tpo $(DEPDIR)/builtin_compiler-opt_algebraic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_algebraic.cpp' object='builtin_compiler-opt_algebraic.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_algebraic.o `test -f '$(GLSL_SRCDIR)/opt_algebraic.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_algebraic.cpp

builtin_compiler-opt_algebraic.obj: $(GLSL_SRCDIR)/opt_algebraic.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_algebraic.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_algebraic.Tpo -c -o builtin_compiler-opt_algebraic.obj `if test -f '$(GLSL_SRCDIR)/opt_algebraic.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_algebraic.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_algebraic.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_algebraic.Tpo $(DEPDIR)/builtin_compiler-opt_algebraic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_algebraic.cpp' object='builtin_compiler-opt_algebraic.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_algebraic.obj `if test -f '$(GLSL_SRCDIR)/opt_algebraic.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_algebraic.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_algebraic.cpp'; fi`

builtin_compiler-opt_array_splitting.o: $(GLSL_SRCDIR)/opt_array_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_array_splitting.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_array_splitting.Tpo -c -o builtin_compiler-opt_array_splitting.o `test -f '$(GLSL_SRCDIR)/opt_array_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_array_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_array_splitting.Tpo $(DEPDIR)/builtin_compiler-opt_array_splitting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_array_splitting.cpp' object='builtin_compiler-opt_array_splitting.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_array_splitting.o `test -f '$(GLSL_SRCDIR)/opt_array_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_array_splitting.cpp

builtin_compiler-opt_array_splitting.obj: $(GLSL_SRCDIR)/opt_array_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_array_splitting.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_array_splitting.Tpo -c -o builtin_compiler-opt_array_splitting.obj `if test -f '$(GLSL_SRCDIR)/opt_array_splitting.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_array_splitting.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_array_splitting.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_array_splitting.Tpo $(DEPDIR)/builtin_compiler-opt_array_splitting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_array_splitting.cpp' object='builtin_compiler-opt_array_splitting.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_array_splitting.obj `if test -f '$(GLSL_SRCDIR)/opt_array_splitting.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_array_splitting.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_array_splitting.cpp'; fi`

builtin_compiler-opt_constant_folding.o: $(GLSL_SRCDIR)/opt_constant_folding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_constant_folding.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_constant_folding.Tpo -c -o builtin_compiler-opt_constant_folding.o `test -f '$(GLSL_SRCDIR)/opt_constant_folding.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_folding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_constant_folding.Tpo $(DEPDIR)/builtin_compiler-opt_constant_folding.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_folding.cpp' object='builtin_compiler-opt_constant_folding.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_constant_folding.o `test -f '$(GLSL_SRCDIR)/opt_constant_folding.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_folding.cpp

builtin_compiler-opt_constant_folding.obj: $(GLSL_SRCDIR)/opt_constant_folding.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_constant_folding.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_constant_folding.Tpo -c -o builtin_compiler-opt_constant_folding.obj `if test -f '$(GLSL_SRCDIR)/opt_constant_folding.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_constant_folding.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_constant_folding.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_constant_folding.Tpo $(DEPDIR)/builtin_compiler-opt_constant_folding.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_folding.cpp' object='builtin_compiler-opt_constant_folding.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_constant_folding.obj `if test -f '$(GLSL_SRCDIR)/opt_constant_folding.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_constant_folding.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_constant_folding.cpp'; fi`

builtin_compiler-opt_constant_propagation.o: $(GLSL_SRCDIR)/opt_constant_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_constant_propagation.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_constant_propagation.Tpo -c -o builtin_compiler-opt_constant_propagation.o `test -f '$(GLSL_SRCDIR)/opt_constant_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_constant_propagation.Tpo $(DEPDIR)/builtin_compiler-opt_constant_propagation.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_propagation.cpp' object='builtin_compiler-opt_constant_propagation.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_constant_propagation.o `test -f '$(GLSL_SRCDIR)/opt_constant_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_propagation.cpp

builtin_compiler-opt_constant_propagation.obj: $(GLSL_SRCDIR)/opt_constant_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_constant_propagation.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_constant_propagation.Tpo -c -o builtin_compiler-opt_constant_propagation.obj `if test -f '$(GLSL_SRCDIR)/opt_constant_propagation.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_constant_propagation.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_constant_propagation.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_constant_propagation.Tpo $(DEPDIR)/builtin_compiler-opt_constant_propagation.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_propagation.cpp' object='builtin_compiler-opt_constant_propagation.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_constant_propagation.obj `if test -f '$(GLSL_SRCDIR)/opt_constant_propagation.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_constant_propagation.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_constant_propagation.cpp'; fi`

builtin_compiler-opt_constant_variable.o: $(GLSL_SRCDIR)/opt_constant_variable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_constant_variable.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_constant_variable.Tpo -c -o builtin_compiler-opt_constant_variable.o `test -f '$(GLSL_SRCDIR)/opt_constant_variable.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_variable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_constant_variable.Tpo $(DEPDIR)/builtin_compiler-opt_constant_variable.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_variable.cpp' object='builtin_compiler-opt_constant_variable.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_constant_variable.o `test -f '$(GLSL_SRCDIR)/opt_constant_variable.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_constant_variable.cpp

builtin_compiler-opt_constant_variable.obj: $(GLSL_SRCDIR)/opt_constant_variable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_constant_variable.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_constant_variable.Tpo -c -o builtin_compiler-opt_constant_variable.obj `if test -f '$(GLSL_SRCDIR)/opt_constant_variable.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_constant_variable.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_constant_variable.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_constant_variable.Tpo $(DEPDIR)/builtin_compiler-opt_constant_variable.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_constant_variable.cpp' object='builtin_compiler-opt_constant_variable.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_constant_variable.obj `if test -f '$(GLSL_SRCDIR)/opt_constant_variable.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_constant_variable.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_constant_variable.cpp'; fi`

builtin_compiler-opt_copy_propagation.o: $(GLSL_SRCDIR)/opt_copy_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_copy_propagation.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_copy_propagation.Tpo -c -o builtin_compiler-opt_copy_propagation.o `test -f '$(GLSL_SRCDIR)/opt_copy_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_copy_propagation.Tpo $(DEPDIR)/builtin_compiler-opt_copy_propagation.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_copy_propagation.cpp' object='builtin_compiler-opt_copy_propagation.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_copy_propagation.o `test -f '$(GLSL_SRCDIR)/opt_copy_propagation.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation.cpp

builtin_compiler-opt_copy_propagation.obj: $(GLSL_SRCDIR)/opt_copy_propagation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_copy_propagation.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_copy_propagation.Tpo -c -o builtin_compiler-opt_copy_propagation.obj `if test -f '$(GLSL_SRCDIR)/opt_copy_propagation.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_copy_propagation.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_copy_propagation.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_copy_propagation.Tpo $(DEPDIR)/builtin_compiler-opt_copy_propagation.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_copy_propagation.cpp' object='builtin_compiler-opt_copy_propagation.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_copy_propagation.obj `if test -f '$(GLSL_SRCDIR)/opt_copy_propagation.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_copy_propagation.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_copy_propagation.cpp'; fi`

builtin_compiler-opt_copy_propagation_elements.o: $(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_copy_propagation_elements.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_copy_propagation_elements.Tpo -c -o builtin_compiler-opt_copy_propagation_elements.o `test -f '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_copy_propagation_elements.Tpo $(DEPDIR)/builtin_compiler-opt_copy_propagation_elements.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp' object='builtin_compiler-opt_copy_propagation_elements.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_copy_propagation_elements.o `test -f '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp

builtin_compiler-opt_copy_propagation_elements.obj: $(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_copy_propagation_elements.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_copy_propagation_elements.Tpo -c -o builtin_compiler-opt_copy_propagation_elements.obj `if test -f '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_copy_propagation_elements.Tpo $(DEPDIR)/builtin_compiler-opt_copy_propagation_elements.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp' object='builtin_compiler-opt_copy_propagation_elements.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_copy_propagation_elements.obj `if test -f '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_copy_propagation_elements.cpp'; fi`

builtin_compiler-opt_dead_builtin_varyings.o: $(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_builtin_varyings.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_builtin_varyings.Tpo -c -o builtin_compiler-opt_dead_builtin_varyings.o `test -f '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_builtin_varyings.Tpo $(DEPDIR)/builtin_compiler-opt_dead_builtin_varyings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp' object='builtin_compiler-opt_dead_builtin_varyings.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_builtin_varyings.o `test -f '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp

builtin_compiler-opt_dead_builtin_varyings.obj: $(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_builtin_varyings.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_builtin_varyings.Tpo -c -o builtin_compiler-opt_dead_builtin_varyings.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_builtin_varyings.Tpo $(DEPDIR)/builtin_compiler-opt_dead_builtin_varyings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp' object='builtin_compiler-opt_dead_builtin_varyings.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_builtin_varyings.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_builtin_varyings.cpp'; fi`

builtin_compiler-opt_dead_code.o: $(GLSL_SRCDIR)/opt_dead_code.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_code.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_code.Tpo -c -o builtin_compiler-opt_dead_code.o `test -f '$(GLSL_SRCDIR)/opt_dead_code.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_code.Tpo $(DEPDIR)/builtin_compiler-opt_dead_code.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_code.cpp' object='builtin_compiler-opt_dead_code.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_code.o `test -f '$(GLSL_SRCDIR)/opt_dead_code.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code.cpp

builtin_compiler-opt_dead_code.obj: $(GLSL_SRCDIR)/opt_dead_code.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_code.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_code.Tpo -c -o builtin_compiler-opt_dead_code.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_code.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_code.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_code.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_code.Tpo $(DEPDIR)/builtin_compiler-opt_dead_code.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_code.cpp' object='builtin_compiler-opt_dead_code.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_code.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_code.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_code.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_code.cpp'; fi`

builtin_compiler-opt_dead_code_local.o: $(GLSL_SRCDIR)/opt_dead_code_local.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_code_local.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_code_local.Tpo -c -o builtin_compiler-opt_dead_code_local.o `test -f '$(GLSL_SRCDIR)/opt_dead_code_local.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code_local.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_code_local.Tpo $(DEPDIR)/builtin_compiler-opt_dead_code_local.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_code_local.cpp' object='builtin_compiler-opt_dead_code_local.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_code_local.o `test -f '$(GLSL_SRCDIR)/opt_dead_code_local.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_code_local.cpp

builtin_compiler-opt_dead_code_local.obj: $(GLSL_SRCDIR)/opt_dead_code_local.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_code_local.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_code_local.Tpo -c -o builtin_compiler-opt_dead_code_local.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_code_local.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_code_local.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_code_local.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_code_local.Tpo $(DEPDIR)/builtin_compiler-opt_dead_code_local.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_code_local.cpp' object='builtin_compiler-opt_dead_code_local.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_code_local.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_code_local.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_code_local.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_code_local.cpp'; fi`

builtin_compiler-opt_dead_functions.o: $(GLSL_SRCDIR)/opt_dead_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_functions.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_functions.Tpo -c -o builtin_compiler-opt_dead_functions.o `test -f '$(GLSL_SRCDIR)/opt_dead_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_functions.Tpo $(DEPDIR)/builtin_compiler-opt_dead_functions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_functions.cpp' object='builtin_compiler-opt_dead_functions.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_functions.o `test -f '$(GLSL_SRCDIR)/opt_dead_functions.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_dead_functions.cpp

builtin_compiler-opt_dead_functions.obj: $(GLSL_SRCDIR)/opt_dead_functions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_dead_functions.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_dead_functions.Tpo -c -o builtin_compiler-opt_dead_functions.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_functions.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_functions.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_dead_functions.Tpo $(DEPDIR)/builtin_compiler-opt_dead_functions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_dead_functions.cpp' object='builtin_compiler-opt_dead_functions.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_dead_functions.obj `if test -f '$(GLSL_SRCDIR)/opt_dead_functions.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_dead_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_dead_functions.cpp'; fi`

builtin_compiler-opt_flatten_nested_if_blocks.o: $(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_flatten_nested_if_blocks.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_flatten_nested_if_blocks.Tpo -c -o builtin_compiler-opt_flatten_nested_if_blocks.o `test -f '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_flatten_nested_if_blocks.Tpo $(DEPDIR)/builtin_compiler-opt_flatten_nested_if_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp' object='builtin_compiler-opt_flatten_nested_if_blocks.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_flatten_nested_if_blocks.o `test -f '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp

builtin_compiler-opt_flatten_nested_if_blocks.obj: $(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_flatten_nested_if_blocks.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_flatten_nested_if_blocks.Tpo -c -o builtin_compiler-opt_flatten_nested_if_blocks.obj `if test -f '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_flatten_nested_if_blocks.Tpo $(DEPDIR)/builtin_compiler-opt_flatten_nested_if_blocks.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp' object='builtin_compiler-opt_flatten_nested_if_blocks.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_flatten_nested_if_blocks.obj `if test -f '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_flatten_nested_if_blocks.cpp'; fi`

builtin_compiler-opt_flip_matrices.o: $(GLSL_SRCDIR)/opt_flip_matrices.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_flip_matrices.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_flip_matrices.Tpo -c -o builtin_compiler-opt_flip_matrices.o `test -f '$(GLSL_SRCDIR)/opt_flip_matrices.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flip_matrices.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_flip_matrices.Tpo $(DEPDIR)/builtin_compiler-opt_flip_matrices.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_flip_matrices.cpp' object='builtin_compiler-opt_flip_matrices.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_flip_matrices.o `test -f '$(GLSL_SRCDIR)/opt_flip_matrices.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_flip_matrices.cpp

builtin_compiler-opt_flip_matrices.obj: $(GLSL_SRCDIR)/opt_flip_matrices.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_flip_matrices.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_flip_matrices.Tpo -c -o builtin_compiler-opt_flip_matrices.obj `if test -f '$(GLSL_SRCDIR)/opt_flip_matrices.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_flip_matrices.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_flip_matrices.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_flip_matrices.Tpo $(DEPDIR)/builtin_compiler-opt_flip_matrices.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_flip_matrices.cpp' object='builtin_compiler-opt_flip_matrices.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_flip_matrices.obj `if test -f '$(GLSL_SRCDIR)/opt_flip_matrices.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_flip_matrices.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_flip_matrices.cpp'; fi`

builtin_compiler-opt_function_inlining.o: $(GLSL_SRCDIR)/opt_function_inlining.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_function_inlining.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_function_inlining.Tpo -c -o builtin_compiler-opt_function_inlining.o `test -f '$(GLSL_SRCDIR)/opt_function_inlining.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_function_inlining.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_function_inlining.Tpo $(DEPDIR)/builtin_compiler-opt_function_inlining.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_function_inlining.cpp' object='builtin_compiler-opt_function_inlining.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_function_inlining.o `test -f '$(GLSL_SRCDIR)/opt_function_inlining.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_function_inlining.cpp

builtin_compiler-opt_function_inlining.obj: $(GLSL_SRCDIR)/opt_function_inlining.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_function_inlining.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_function_inlining.Tpo -c -o builtin_compiler-opt_function_inlining.obj `if test -f '$(GLSL_SRCDIR)/opt_function_inlining.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_function_inlining.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_function_inlining.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_function_inlining.Tpo $(DEPDIR)/builtin_compiler-opt_function_inlining.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_function_inlining.cpp' object='builtin_compiler-opt_function_inlining.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_function_inlining.obj `if test -f '$(GLSL_SRCDIR)/opt_function_inlining.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_function_inlining.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_function_inlining.cpp'; fi`

builtin_compiler-opt_if_simplification.o: $(GLSL_SRCDIR)/opt_if_simplification.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_if_simplification.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_if_simplification.Tpo -c -o builtin_compiler-opt_if_simplification.o `test -f '$(GLSL_SRCDIR)/opt_if_simplification.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_if_simplification.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_if_simplification.Tpo $(DEPDIR)/builtin_compiler-opt_if_simplification.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_if_simplification.cpp' object='builtin_compiler-opt_if_simplification.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_if_simplification.o `test -f '$(GLSL_SRCDIR)/opt_if_simplification.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_if_simplification.cpp

builtin_compiler-opt_if_simplification.obj: $(GLSL_SRCDIR)/opt_if_simplification.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_if_simplification.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_if_simplification.Tpo -c -o builtin_compiler-opt_if_simplification.obj `if test -f '$(GLSL_SRCDIR)/opt_if_simplification.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_if_simplification.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_if_simplification.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_if_simplification.Tpo $(DEPDIR)/builtin_compiler-opt_if_simplification.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_if_simplification.cpp' object='builtin_compiler-opt_if_simplification.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_if_simplification.obj `if test -f '$(GLSL_SRCDIR)/opt_if_simplification.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_if_simplification.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_if_simplification.cpp'; fi`

builtin_compiler-opt_noop_swizzle.o: $(GLSL_SRCDIR)/opt_noop_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_noop_swizzle.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_noop_swizzle.Tpo -c -o builtin_compiler-opt_noop_swizzle.o `test -f '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_noop_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_noop_swizzle.Tpo $(DEPDIR)/builtin_compiler-opt_noop_swizzle.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_noop_swizzle.cpp' object='builtin_compiler-opt_noop_swizzle.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_noop_swizzle.o `test -f '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_noop_swizzle.cpp

builtin_compiler-opt_noop_swizzle.obj: $(GLSL_SRCDIR)/opt_noop_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_noop_swizzle.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_noop_swizzle.Tpo -c -o builtin_compiler-opt_noop_swizzle.obj `if test -f '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_noop_swizzle.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_noop_swizzle.Tpo $(DEPDIR)/builtin_compiler-opt_noop_swizzle.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_noop_swizzle.cpp' object='builtin_compiler-opt_noop_swizzle.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_noop_swizzle.obj `if test -f '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_noop_swizzle.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_noop_swizzle.cpp'; fi`

builtin_compiler-opt_redundant_jumps.o: $(GLSL_SRCDIR)/opt_redundant_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_redundant_jumps.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_redundant_jumps.Tpo -c -o builtin_compiler-opt_redundant_jumps.o `test -f '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_redundant_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_redundant_jumps.Tpo $(DEPDIR)/builtin_compiler-opt_redundant_jumps.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_redundant_jumps.cpp' object='builtin_compiler-opt_redundant_jumps.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_redundant_jumps.o `test -f '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_redundant_jumps.cpp

builtin_compiler-opt_redundant_jumps.obj: $(GLSL_SRCDIR)/opt_redundant_jumps.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_redundant_jumps.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_redundant_jumps.Tpo -c -o builtin_compiler-opt_redundant_jumps.obj `if test -f '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_redundant_jumps.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_redundant_jumps.Tpo $(DEPDIR)/builtin_compiler-opt_redundant_jumps.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_redundant_jumps.cpp' object='builtin_compiler-opt_redundant_jumps.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_redundant_jumps.obj `if test -f '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_redundant_jumps.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_redundant_jumps.cpp'; fi`

builtin_compiler-opt_structure_splitting.o: $(GLSL_SRCDIR)/opt_structure_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_structure_splitting.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_structure_splitting.Tpo -c -o builtin_compiler-opt_structure_splitting.o `test -f '$(GLSL_SRCDIR)/opt_structure_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_structure_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_structure_splitting.Tpo $(DEPDIR)/builtin_compiler-opt_structure_splitting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_structure_splitting.cpp' object='builtin_compiler-opt_structure_splitting.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_structure_splitting.o `test -f '$(GLSL_SRCDIR)/opt_structure_splitting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_structure_splitting.cpp

builtin_compiler-opt_structure_splitting.obj: $(GLSL_SRCDIR)/opt_structure_splitting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_structure_splitting.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_structure_splitting.Tpo -c -o builtin_compiler-opt_structure_splitting.obj `if test -f '$(GLSL_SRCDIR)/opt_structure_splitting.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_structure_splitting.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_structure_splitting.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_structure_splitting.Tpo $(DEPDIR)/builtin_compiler-opt_structure_splitting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_structure_splitting.cpp' object='builtin_compiler-opt_structure_splitting.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_structure_splitting.obj `if test -f '$(GLSL_SRCDIR)/opt_structure_splitting.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_structure_splitting.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_structure_splitting.cpp'; fi`

builtin_compiler-opt_swizzle_swizzle.o: $(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_swizzle_swizzle.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_swizzle_swizzle.Tpo -c -o builtin_compiler-opt_swizzle_swizzle.o `test -f '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_swizzle_swizzle.Tpo $(DEPDIR)/builtin_compiler-opt_swizzle_swizzle.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp' object='builtin_compiler-opt_swizzle_swizzle.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_swizzle_swizzle.o `test -f '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp

builtin_compiler-opt_swizzle_swizzle.obj: $(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_swizzle_swizzle.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_swizzle_swizzle.Tpo -c -o builtin_compiler-opt_swizzle_swizzle.obj `if test -f '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_swizzle_swizzle.Tpo $(DEPDIR)/builtin_compiler-opt_swizzle_swizzle.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp' object='builtin_compiler-opt_swizzle_swizzle.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_swizzle_swizzle.obj `if test -f '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp'; fi`

builtin_compiler-opt_tree_grafting.o: $(GLSL_SRCDIR)/opt_tree_grafting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_tree_grafting.o -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_tree_grafting.Tpo -c -o builtin_compiler-opt_tree_grafting.o `test -f '$(GLSL_SRCDIR)/opt_tree_grafting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_tree_grafting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_tree_grafting.Tpo $(DEPDIR)/builtin_compiler-opt_tree_grafting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_tree_grafting.cpp' object='builtin_compiler-opt_tree_grafting.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_tree_grafting.o `test -f '$(GLSL_SRCDIR)/opt_tree_grafting.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/opt_tree_grafting.cpp

builtin_compiler-opt_tree_grafting.obj: $(GLSL_SRCDIR)/opt_tree_grafting.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-opt_tree_grafting.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-opt_tree_grafting.Tpo -c -o builtin_compiler-opt_tree_grafting.obj `if test -f '$(GLSL_SRCDIR)/opt_tree_grafting.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_tree_grafting.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_tree_grafting.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-opt_tree_grafting.Tpo $(DEPDIR)/builtin_compiler-opt_tree_grafting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/opt_tree_grafting.cpp' object='builtin_compiler-opt_tree_grafting.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-opt_tree_grafting.obj `if test -f '$(GLSL_SRCDIR)/opt_tree_grafting.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/opt_tree_grafting.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/opt_tree_grafting.cpp'; fi`

builtin_compiler-s_expression.o: $(GLSL_SRCDIR)/s_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-s_expression.o -MD -MP -MF $(DEPDIR)/builtin_compiler-s_expression.Tpo -c -o builtin_compiler-s_expression.o `test -f '$(GLSL_SRCDIR)/s_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/s_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-s_expression.Tpo $(DEPDIR)/builtin_compiler-s_expression.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/s_expression.cpp' object='builtin_compiler-s_expression.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-s_expression.o `test -f '$(GLSL_SRCDIR)/s_expression.cpp' || echo '$(srcdir)/'`$(GLSL_SRCDIR)/s_expression.cpp

builtin_compiler-s_expression.obj: $(GLSL_SRCDIR)/s_expression.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT builtin_compiler-s_expression.obj -MD -MP -MF $(DEPDIR)/builtin_compiler-s_expression.Tpo -c -o builtin_compiler-s_expression.obj `if test -f '$(GLSL_SRCDIR)/s_expression.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/s_expression.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/s_expression.cpp'; fi`
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/builtin_compiler-s_expression.Tpo $(DEPDIR)/builtin_compiler-s_expression.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$(GLSL_SRCDIR)/s_expression.cpp' object='builtin_compiler-s_expression.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(builtin_compiler_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o builtin_compiler-s_expression.obj `if test -f '$(GLSL_SRCDIR)/s_expression.cpp'; then $(CYGPATH_W) '$(GLSL_SRCDIR)/s_expression.cpp'; else $(CYGPATH_W) '$(srcdir)/$(GLSL_SRCDIR)/s_expression.cpp'; fi`

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

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

tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	set x; \
	here=`pwd`; \
	$(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-am

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"
cscopelist: cscopelist-am

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

distdir: $(DISTFILES)
	@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
check-am: all-am
check: check-am
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
installdirs:
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am

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

installcheck: installcheck-am
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:

clean-generic:

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)

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-am

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

distclean: distclean-am
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-tags

dvi: dvi-am

dvi-am:

html: html-am

html-am:

info: info-am

info-am:

install-data-am:

install-dvi: install-dvi-am

install-dvi-am:

install-exec-am:

install-html: install-html-am

install-html-am:

install-info: install-info-am

install-info-am:

install-man:

install-pdf: install-pdf-am

install-pdf-am:

install-ps: install-ps-am

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-am
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-am

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

pdf: pdf-am

pdf-am:

ps: ps-am

ps-am:

uninstall-am:

.MAKE: install-am install-strip

.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
	clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
	cscopelist-am ctags ctags-am distclean distclean-compile \
	distclean-generic distclean-libtool distclean-tags distdir dvi \
	dvi-am html html-am info info-am install install-am \
	install-data install-data-am install-dvi install-dvi-am \
	install-exec install-exec-am install-html install-html-am \
	install-info install-info-am install-man install-pdf \
	install-pdf-am install-ps install-ps-am install-strip \
	installcheck installcheck-am installdirs maintainer-clean \
	maintainer-clean-generic mostlyclean mostlyclean-compile \
	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
	tags tags-am uninstall uninstall-am


# 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: