aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/src/bin/Makefile.in
blob: b85101565a7e91b229d5b8c8b4834454251a74ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

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

@SET_MAKE@


VPATH = @srcdir@
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@
bin_PROGRAMS = @ELEMENTARY_TEST_PRG@ @ELEMENTARY_CONFIG_PRG@ \
	$(am__EXEEXT_1)
@BUILD_QUICKLAUNCH_TRUE@am__append_1 = elementary_quicklaunch elementary_run elementary_testql
EXTRA_PROGRAMS = elementary_test$(EXEEXT) elementary_config$(EXEEXT)
@HAVE_EIO_TRUE@am__append_2 = test_eio.c
subdir = src/bin
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_attribute.m4 \
	$(top_srcdir)/m4/efl_binary.m4 \
	$(top_srcdir)/m4/efl_compiler_flag.m4 \
	$(top_srcdir)/m4/efl_doxygen.m4 \
	$(top_srcdir)/m4/efl_examples.m4 \
	$(top_srcdir)/m4/efl_path_max.m4 $(top_srcdir)/m4/gettext.m4 \
	$(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \
	$(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
	$(top_srcdir)/m4/lib-prefix.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)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
	$(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/elementary_config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__installdirs = "$(DESTDIR)$(elementary_testqldir)" \
	"$(DESTDIR)$(bindir)"
LTLIBRARIES = $(elementary_testql_LTLIBRARIES)
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_la_DEPENDENCIES = $(top_builddir)/src/lib/libelementary.la
am__elementary_testql_la_SOURCES_DIST = test.c test_3d.c \
	test_actionslider.c test_anim.c test_bg.c test_box.c \
	test_bubble.c test_button.c test_calendar.c test_check.c \
	test_clock.c test_cnp.c test_colorselector.c test_conform.c \
	test_ctxpopup.c test_cursor.c test_datetime.c \
	test_dayselector.c test_diskselector.c test_entry.c \
	test_entry_anchor.c test_entry_anchor2.c \
	test_fileselector_button.c test_fileselector.c \
	test_fileselector_entry.c test_flip.c test_flip_page.c \
	test_flipselector.c test_floating.c test_focus.c test_focus2.c \
	test_focus3.c test_gengrid.c test_genlist.c \
	test_gesture_layer.c test_gesture_layer2.c \
	test_gesture_layer3.c test_glview_simple.c test_glview.c \
	test_grid.c test_hover.c test_hoversel.c test_icon.c \
	test_icon_desktops.c test_icon_animated.c test_index.c \
	test_inwin.c test_label.c test_launcher.c test_layout.c \
	test_list.c test_map.c test_menu.c test_multi.c \
	test_multibuttonentry.c test_naviframe.c \
	test_naviframe_complex.c test_notify.c test_panel.c \
	test_panes.c test_photo.c test_photocam.c test_popup.c \
	test_progressbar.c test_radio.c test_scaling.c test_scroller.c \
	test_segment_control.c test_separator.c test_slider.c \
	test_slideshow.c test_spinner.c test_store.c test_table.c \
	test_thumb.c test_toolbar.c test_tooltip.c test_transit.c \
	test_video.c test_weather.c test_web.c test_win_inline.c \
	test_win_socket.c test_win_plug.c test_win_state.c test.h \
	test_eio.c
@HAVE_EIO_TRUE@am__objects_1 = elementary_testql_la-test_eio.lo
am__objects_2 = elementary_testql_la-test.lo \
	elementary_testql_la-test_3d.lo \
	elementary_testql_la-test_actionslider.lo \
	elementary_testql_la-test_anim.lo \
	elementary_testql_la-test_bg.lo \
	elementary_testql_la-test_box.lo \
	elementary_testql_la-test_bubble.lo \
	elementary_testql_la-test_button.lo \
	elementary_testql_la-test_calendar.lo \
	elementary_testql_la-test_check.lo \
	elementary_testql_la-test_clock.lo \
	elementary_testql_la-test_cnp.lo \
	elementary_testql_la-test_colorselector.lo \
	elementary_testql_la-test_conform.lo \
	elementary_testql_la-test_ctxpopup.lo \
	elementary_testql_la-test_cursor.lo \
	elementary_testql_la-test_datetime.lo \
	elementary_testql_la-test_dayselector.lo \
	elementary_testql_la-test_diskselector.lo \
	elementary_testql_la-test_entry.lo \
	elementary_testql_la-test_entry_anchor.lo \
	elementary_testql_la-test_entry_anchor2.lo \
	elementary_testql_la-test_fileselector_button.lo \
	elementary_testql_la-test_fileselector.lo \
	elementary_testql_la-test_fileselector_entry.lo \
	elementary_testql_la-test_flip.lo \
	elementary_testql_la-test_flip_page.lo \
	elementary_testql_la-test_flipselector.lo \
	elementary_testql_la-test_floating.lo \
	elementary_testql_la-test_focus.lo \
	elementary_testql_la-test_focus2.lo \
	elementary_testql_la-test_focus3.lo \
	elementary_testql_la-test_gengrid.lo \
	elementary_testql_la-test_genlist.lo \
	elementary_testql_la-test_gesture_layer.lo \
	elementary_testql_la-test_gesture_layer2.lo \
	elementary_testql_la-test_gesture_layer3.lo \
	elementary_testql_la-test_glview_simple.lo \
	elementary_testql_la-test_glview.lo \
	elementary_testql_la-test_grid.lo \
	elementary_testql_la-test_hover.lo \
	elementary_testql_la-test_hoversel.lo \
	elementary_testql_la-test_icon.lo \
	elementary_testql_la-test_icon_desktops.lo \
	elementary_testql_la-test_icon_animated.lo \
	elementary_testql_la-test_index.lo \
	elementary_testql_la-test_inwin.lo \
	elementary_testql_la-test_label.lo \
	elementary_testql_la-test_launcher.lo \
	elementary_testql_la-test_layout.lo \
	elementary_testql_la-test_list.lo \
	elementary_testql_la-test_map.lo \
	elementary_testql_la-test_menu.lo \
	elementary_testql_la-test_multi.lo \
	elementary_testql_la-test_multibuttonentry.lo \
	elementary_testql_la-test_naviframe.lo \
	elementary_testql_la-test_naviframe_complex.lo \
	elementary_testql_la-test_notify.lo \
	elementary_testql_la-test_panel.lo \
	elementary_testql_la-test_panes.lo \
	elementary_testql_la-test_photo.lo \
	elementary_testql_la-test_photocam.lo \
	elementary_testql_la-test_popup.lo \
	elementary_testql_la-test_progressbar.lo \
	elementary_testql_la-test_radio.lo \
	elementary_testql_la-test_scaling.lo \
	elementary_testql_la-test_scroller.lo \
	elementary_testql_la-test_segment_control.lo \
	elementary_testql_la-test_separator.lo \
	elementary_testql_la-test_slider.lo \
	elementary_testql_la-test_slideshow.lo \
	elementary_testql_la-test_spinner.lo \
	elementary_testql_la-test_store.lo \
	elementary_testql_la-test_table.lo \
	elementary_testql_la-test_thumb.lo \
	elementary_testql_la-test_toolbar.lo \
	elementary_testql_la-test_tooltip.lo \
	elementary_testql_la-test_transit.lo \
	elementary_testql_la-test_video.lo \
	elementary_testql_la-test_weather.lo \
	elementary_testql_la-test_web.lo \
	elementary_testql_la-test_win_inline.lo \
	elementary_testql_la-test_win_socket.lo \
	elementary_testql_la-test_win_plug.lo \
	elementary_testql_la-test_win_state.lo $(am__objects_1)
@BUILD_QUICKLAUNCH_TRUE@am_elementary_testql_la_OBJECTS =  \
@BUILD_QUICKLAUNCH_TRUE@	$(am__objects_2)
elementary_testql_la_OBJECTS = $(am_elementary_testql_la_OBJECTS)
AM_V_lt = $(am__v_lt_$(V))
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
am__v_lt_0 = --silent
elementary_testql_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(elementary_testql_la_CFLAGS) $(CFLAGS) \
	$(elementary_testql_la_LDFLAGS) $(LDFLAGS) -o $@
@BUILD_QUICKLAUNCH_TRUE@am_elementary_testql_la_rpath = -rpath \
@BUILD_QUICKLAUNCH_TRUE@	$(elementary_testqldir)
@BUILD_QUICKLAUNCH_TRUE@am__EXEEXT_1 =  \
@BUILD_QUICKLAUNCH_TRUE@	elementary_quicklaunch$(EXEEXT) \
@BUILD_QUICKLAUNCH_TRUE@	elementary_run$(EXEEXT) \
@BUILD_QUICKLAUNCH_TRUE@	elementary_testql$(EXEEXT)
PROGRAMS = $(bin_PROGRAMS)
am_elementary_config_OBJECTS = config.$(OBJEXT)
elementary_config_OBJECTS = $(am_elementary_config_OBJECTS)
elementary_config_DEPENDENCIES =  \
	$(top_builddir)/src/lib/libelementary.la
elementary_config_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(elementary_config_LDFLAGS) $(LDFLAGS) \
	-o $@
am__elementary_quicklaunch_SOURCES_DIST = quicklaunch.c
@BUILD_QUICKLAUNCH_TRUE@am_elementary_quicklaunch_OBJECTS =  \
@BUILD_QUICKLAUNCH_TRUE@	quicklaunch.$(OBJEXT)
elementary_quicklaunch_OBJECTS = $(am_elementary_quicklaunch_OBJECTS)
@BUILD_QUICKLAUNCH_TRUE@elementary_quicklaunch_DEPENDENCIES = $(top_builddir)/src/lib/libelementary.la
elementary_quicklaunch_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(elementary_quicklaunch_LDFLAGS) \
	$(LDFLAGS) -o $@
am__elementary_run_SOURCES_DIST = run.c
@BUILD_QUICKLAUNCH_TRUE@@BUILD_RUN_TRUE@am_elementary_run_OBJECTS =  \
@BUILD_QUICKLAUNCH_TRUE@@BUILD_RUN_TRUE@	run.$(OBJEXT)
elementary_run_OBJECTS = $(am_elementary_run_OBJECTS)
elementary_run_DEPENDENCIES =
elementary_run_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(elementary_run_LDFLAGS) $(LDFLAGS) -o \
	$@
am__elementary_test_SOURCES_DIST = test.c test_3d.c \
	test_actionslider.c test_anim.c test_bg.c test_box.c \
	test_bubble.c test_button.c test_calendar.c test_check.c \
	test_clock.c test_cnp.c test_colorselector.c test_conform.c \
	test_ctxpopup.c test_cursor.c test_datetime.c \
	test_dayselector.c test_diskselector.c test_entry.c \
	test_entry_anchor.c test_entry_anchor2.c \
	test_fileselector_button.c test_fileselector.c \
	test_fileselector_entry.c test_flip.c test_flip_page.c \
	test_flipselector.c test_floating.c test_focus.c test_focus2.c \
	test_focus3.c test_gengrid.c test_genlist.c \
	test_gesture_layer.c test_gesture_layer2.c \
	test_gesture_layer3.c test_glview_simple.c test_glview.c \
	test_grid.c test_hover.c test_hoversel.c test_icon.c \
	test_icon_desktops.c test_icon_animated.c test_index.c \
	test_inwin.c test_label.c test_launcher.c test_layout.c \
	test_list.c test_map.c test_menu.c test_multi.c \
	test_multibuttonentry.c test_naviframe.c \
	test_naviframe_complex.c test_notify.c test_panel.c \
	test_panes.c test_photo.c test_photocam.c test_popup.c \
	test_progressbar.c test_radio.c test_scaling.c test_scroller.c \
	test_segment_control.c test_separator.c test_slider.c \
	test_slideshow.c test_spinner.c test_store.c test_table.c \
	test_thumb.c test_toolbar.c test_tooltip.c test_transit.c \
	test_video.c test_weather.c test_web.c test_win_inline.c \
	test_win_socket.c test_win_plug.c test_win_state.c test.h \
	test_eio.c
@HAVE_EIO_TRUE@am__objects_3 = test_eio.$(OBJEXT)
am_elementary_test_OBJECTS = test.$(OBJEXT) test_3d.$(OBJEXT) \
	test_actionslider.$(OBJEXT) test_anim.$(OBJEXT) \
	test_bg.$(OBJEXT) test_box.$(OBJEXT) test_bubble.$(OBJEXT) \
	test_button.$(OBJEXT) test_calendar.$(OBJEXT) \
	test_check.$(OBJEXT) test_clock.$(OBJEXT) test_cnp.$(OBJEXT) \
	test_colorselector.$(OBJEXT) test_conform.$(OBJEXT) \
	test_ctxpopup.$(OBJEXT) test_cursor.$(OBJEXT) \
	test_datetime.$(OBJEXT) test_dayselector.$(OBJEXT) \
	test_diskselector.$(OBJEXT) test_entry.$(OBJEXT) \
	test_entry_anchor.$(OBJEXT) test_entry_anchor2.$(OBJEXT) \
	test_fileselector_button.$(OBJEXT) test_fileselector.$(OBJEXT) \
	test_fileselector_entry.$(OBJEXT) test_flip.$(OBJEXT) \
	test_flip_page.$(OBJEXT) test_flipselector.$(OBJEXT) \
	test_floating.$(OBJEXT) test_focus.$(OBJEXT) \
	test_focus2.$(OBJEXT) test_focus3.$(OBJEXT) \
	test_gengrid.$(OBJEXT) test_genlist.$(OBJEXT) \
	test_gesture_layer.$(OBJEXT) test_gesture_layer2.$(OBJEXT) \
	test_gesture_layer3.$(OBJEXT) test_glview_simple.$(OBJEXT) \
	test_glview.$(OBJEXT) test_grid.$(OBJEXT) test_hover.$(OBJEXT) \
	test_hoversel.$(OBJEXT) test_icon.$(OBJEXT) \
	test_icon_desktops.$(OBJEXT) test_icon_animated.$(OBJEXT) \
	test_index.$(OBJEXT) test_inwin.$(OBJEXT) test_label.$(OBJEXT) \
	test_launcher.$(OBJEXT) test_layout.$(OBJEXT) \
	test_list.$(OBJEXT) test_map.$(OBJEXT) test_menu.$(OBJEXT) \
	test_multi.$(OBJEXT) test_multibuttonentry.$(OBJEXT) \
	test_naviframe.$(OBJEXT) test_naviframe_complex.$(OBJEXT) \
	test_notify.$(OBJEXT) test_panel.$(OBJEXT) \
	test_panes.$(OBJEXT) test_photo.$(OBJEXT) \
	test_photocam.$(OBJEXT) test_popup.$(OBJEXT) \
	test_progressbar.$(OBJEXT) test_radio.$(OBJEXT) \
	test_scaling.$(OBJEXT) test_scroller.$(OBJEXT) \
	test_segment_control.$(OBJEXT) test_separator.$(OBJEXT) \
	test_slider.$(OBJEXT) test_slideshow.$(OBJEXT) \
	test_spinner.$(OBJEXT) test_store.$(OBJEXT) \
	test_table.$(OBJEXT) test_thumb.$(OBJEXT) \
	test_toolbar.$(OBJEXT) test_tooltip.$(OBJEXT) \
	test_transit.$(OBJEXT) test_video.$(OBJEXT) \
	test_weather.$(OBJEXT) test_web.$(OBJEXT) \
	test_win_inline.$(OBJEXT) test_win_socket.$(OBJEXT) \
	test_win_plug.$(OBJEXT) test_win_state.$(OBJEXT) \
	$(am__objects_3)
elementary_test_OBJECTS = $(am_elementary_test_OBJECTS)
elementary_test_DEPENDENCIES =  \
	$(top_builddir)/src/lib/libelementary.la
elementary_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(elementary_test_LDFLAGS) $(LDFLAGS) \
	-o $@
am__elementary_testql_SOURCES_DIST = test.c test_3d.c \
	test_actionslider.c test_anim.c test_bg.c test_box.c \
	test_bubble.c test_button.c test_calendar.c test_check.c \
	test_clock.c test_cnp.c test_colorselector.c test_conform.c \
	test_ctxpopup.c test_cursor.c test_datetime.c \
	test_dayselector.c test_diskselector.c test_entry.c \
	test_entry_anchor.c test_entry_anchor2.c \
	test_fileselector_button.c test_fileselector.c \
	test_fileselector_entry.c test_flip.c test_flip_page.c \
	test_flipselector.c test_floating.c test_focus.c test_focus2.c \
	test_focus3.c test_gengrid.c test_genlist.c \
	test_gesture_layer.c test_gesture_layer2.c \
	test_gesture_layer3.c test_glview_simple.c test_glview.c \
	test_grid.c test_hover.c test_hoversel.c test_icon.c \
	test_icon_desktops.c test_icon_animated.c test_index.c \
	test_inwin.c test_label.c test_launcher.c test_layout.c \
	test_list.c test_map.c test_menu.c test_multi.c \
	test_multibuttonentry.c test_naviframe.c \
	test_naviframe_complex.c test_notify.c test_panel.c \
	test_panes.c test_photo.c test_photocam.c test_popup.c \
	test_progressbar.c test_radio.c test_scaling.c test_scroller.c \
	test_segment_control.c test_separator.c test_slider.c \
	test_slideshow.c test_spinner.c test_store.c test_table.c \
	test_thumb.c test_toolbar.c test_tooltip.c test_transit.c \
	test_video.c test_weather.c test_web.c test_win_inline.c \
	test_win_socket.c test_win_plug.c test_win_state.c test.h \
	test_eio.c
@HAVE_EIO_TRUE@am__objects_4 = elementary_testql-test_eio.$(OBJEXT)
am__objects_5 = elementary_testql-test.$(OBJEXT) \
	elementary_testql-test_3d.$(OBJEXT) \
	elementary_testql-test_actionslider.$(OBJEXT) \
	elementary_testql-test_anim.$(OBJEXT) \
	elementary_testql-test_bg.$(OBJEXT) \
	elementary_testql-test_box.$(OBJEXT) \
	elementary_testql-test_bubble.$(OBJEXT) \
	elementary_testql-test_button.$(OBJEXT) \
	elementary_testql-test_calendar.$(OBJEXT) \
	elementary_testql-test_check.$(OBJEXT) \
	elementary_testql-test_clock.$(OBJEXT) \
	elementary_testql-test_cnp.$(OBJEXT) \
	elementary_testql-test_colorselector.$(OBJEXT) \
	elementary_testql-test_conform.$(OBJEXT) \
	elementary_testql-test_ctxpopup.$(OBJEXT) \
	elementary_testql-test_cursor.$(OBJEXT) \
	elementary_testql-test_datetime.$(OBJEXT) \
	elementary_testql-test_dayselector.$(OBJEXT) \
	elementary_testql-test_diskselector.$(OBJEXT) \
	elementary_testql-test_entry.$(OBJEXT) \
	elementary_testql-test_entry_anchor.$(OBJEXT) \
	elementary_testql-test_entry_anchor2.$(OBJEXT) \
	elementary_testql-test_fileselector_button.$(OBJEXT) \
	elementary_testql-test_fileselector.$(OBJEXT) \
	elementary_testql-test_fileselector_entry.$(OBJEXT) \
	elementary_testql-test_flip.$(OBJEXT) \
	elementary_testql-test_flip_page.$(OBJEXT) \
	elementary_testql-test_flipselector.$(OBJEXT) \
	elementary_testql-test_floating.$(OBJEXT) \
	elementary_testql-test_focus.$(OBJEXT) \
	elementary_testql-test_focus2.$(OBJEXT) \
	elementary_testql-test_focus3.$(OBJEXT) \
	elementary_testql-test_gengrid.$(OBJEXT) \
	elementary_testql-test_genlist.$(OBJEXT) \
	elementary_testql-test_gesture_layer.$(OBJEXT) \
	elementary_testql-test_gesture_layer2.$(OBJEXT) \
	elementary_testql-test_gesture_layer3.$(OBJEXT) \
	elementary_testql-test_glview_simple.$(OBJEXT) \
	elementary_testql-test_glview.$(OBJEXT) \
	elementary_testql-test_grid.$(OBJEXT) \
	elementary_testql-test_hover.$(OBJEXT) \
	elementary_testql-test_hoversel.$(OBJEXT) \
	elementary_testql-test_icon.$(OBJEXT) \
	elementary_testql-test_icon_desktops.$(OBJEXT) \
	elementary_testql-test_icon_animated.$(OBJEXT) \
	elementary_testql-test_index.$(OBJEXT) \
	elementary_testql-test_inwin.$(OBJEXT) \
	elementary_testql-test_label.$(OBJEXT) \
	elementary_testql-test_launcher.$(OBJEXT) \
	elementary_testql-test_layout.$(OBJEXT) \
	elementary_testql-test_list.$(OBJEXT) \
	elementary_testql-test_map.$(OBJEXT) \
	elementary_testql-test_menu.$(OBJEXT) \
	elementary_testql-test_multi.$(OBJEXT) \
	elementary_testql-test_multibuttonentry.$(OBJEXT) \
	elementary_testql-test_naviframe.$(OBJEXT) \
	elementary_testql-test_naviframe_complex.$(OBJEXT) \
	elementary_testql-test_notify.$(OBJEXT) \
	elementary_testql-test_panel.$(OBJEXT) \
	elementary_testql-test_panes.$(OBJEXT) \
	elementary_testql-test_photo.$(OBJEXT) \
	elementary_testql-test_photocam.$(OBJEXT) \
	elementary_testql-test_popup.$(OBJEXT) \
	elementary_testql-test_progressbar.$(OBJEXT) \
	elementary_testql-test_radio.$(OBJEXT) \
	elementary_testql-test_scaling.$(OBJEXT) \
	elementary_testql-test_scroller.$(OBJEXT) \
	elementary_testql-test_segment_control.$(OBJEXT) \
	elementary_testql-test_separator.$(OBJEXT) \
	elementary_testql-test_slider.$(OBJEXT) \
	elementary_testql-test_slideshow.$(OBJEXT) \
	elementary_testql-test_spinner.$(OBJEXT) \
	elementary_testql-test_store.$(OBJEXT) \
	elementary_testql-test_table.$(OBJEXT) \
	elementary_testql-test_thumb.$(OBJEXT) \
	elementary_testql-test_toolbar.$(OBJEXT) \
	elementary_testql-test_tooltip.$(OBJEXT) \
	elementary_testql-test_transit.$(OBJEXT) \
	elementary_testql-test_video.$(OBJEXT) \
	elementary_testql-test_weather.$(OBJEXT) \
	elementary_testql-test_web.$(OBJEXT) \
	elementary_testql-test_win_inline.$(OBJEXT) \
	elementary_testql-test_win_socket.$(OBJEXT) \
	elementary_testql-test_win_plug.$(OBJEXT) \
	elementary_testql-test_win_state.$(OBJEXT) $(am__objects_4)
@BUILD_QUICKLAUNCH_TRUE@am_elementary_testql_OBJECTS =  \
@BUILD_QUICKLAUNCH_TRUE@	$(am__objects_5)
elementary_testql_OBJECTS = $(am_elementary_testql_OBJECTS)
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_DEPENDENCIES = $(top_builddir)/src/lib/libelementary.la
elementary_testql_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(elementary_testql_CFLAGS) $(CFLAGS) \
	$(elementary_testql_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/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_$(V))
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
am__v_CC_0 = @echo "  CC    " $@;
AM_V_at = $(am__v_at_$(V))
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
am__v_at_0 = @
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_$(V))
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
am__v_CCLD_0 = @echo "  CCLD  " $@;
AM_V_GEN = $(am__v_GEN_$(V))
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
am__v_GEN_0 = @echo "  GEN   " $@;
SOURCES = $(elementary_testql_la_SOURCES) $(elementary_config_SOURCES) \
	$(elementary_quicklaunch_SOURCES) $(elementary_run_SOURCES) \
	$(elementary_test_SOURCES) $(elementary_testql_SOURCES)
DIST_SOURCES = $(am__elementary_testql_la_SOURCES_DIST) \
	$(elementary_config_SOURCES) \
	$(am__elementary_quicklaunch_SOURCES_DIST) \
	$(am__elementary_run_SOURCES_DIST) \
	$(am__elementary_test_SOURCES_DIST) \
	$(am__elementary_testql_SOURCES_DIST)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALLOCA = @ALLOCA@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EIO_CFLAGS = @EIO_CFLAGS@
EIO_LIBS = @EIO_LIBS@
ELEMENTARY_CFLAGS = @ELEMENTARY_CFLAGS@
ELEMENTARY_COCOA_CFLAGS = @ELEMENTARY_COCOA_CFLAGS@
ELEMENTARY_COCOA_LIBS = @ELEMENTARY_COCOA_LIBS@
ELEMENTARY_CONFIG_PRG = @ELEMENTARY_CONFIG_PRG@
ELEMENTARY_ECORE_CON_CFLAGS = @ELEMENTARY_ECORE_CON_CFLAGS@
ELEMENTARY_ECORE_CON_INC = @ELEMENTARY_ECORE_CON_INC@
ELEMENTARY_ECORE_CON_LIBS = @ELEMENTARY_ECORE_CON_LIBS@
ELEMENTARY_ECORE_IMF_CFLAGS = @ELEMENTARY_ECORE_IMF_CFLAGS@
ELEMENTARY_ECORE_IMF_INC = @ELEMENTARY_ECORE_IMF_INC@
ELEMENTARY_ECORE_IMF_LIBS = @ELEMENTARY_ECORE_IMF_LIBS@
ELEMENTARY_EDBUS_CFLAGS = @ELEMENTARY_EDBUS_CFLAGS@
ELEMENTARY_EDBUS_LIBS = @ELEMENTARY_EDBUS_LIBS@
ELEMENTARY_EFREET_CFLAGS = @ELEMENTARY_EFREET_CFLAGS@
ELEMENTARY_EFREET_LIBS = @ELEMENTARY_EFREET_LIBS@
ELEMENTARY_EMAP_CFLAGS = @ELEMENTARY_EMAP_CFLAGS@
ELEMENTARY_EMAP_LIBS = @ELEMENTARY_EMAP_LIBS@
ELEMENTARY_ETHUMB_CFLAGS = @ELEMENTARY_ETHUMB_CFLAGS@
ELEMENTARY_ETHUMB_LIBS = @ELEMENTARY_ETHUMB_LIBS@
ELEMENTARY_EWEATHER_CFLAGS = @ELEMENTARY_EWEATHER_CFLAGS@
ELEMENTARY_EWEATHER_LIBS = @ELEMENTARY_EWEATHER_LIBS@
ELEMENTARY_FB_CFLAGS = @ELEMENTARY_FB_CFLAGS@
ELEMENTARY_FB_LIBS = @ELEMENTARY_FB_LIBS@
ELEMENTARY_LIBS = @ELEMENTARY_LIBS@
ELEMENTARY_PSL1GHT_CFLAGS = @ELEMENTARY_PSL1GHT_CFLAGS@
ELEMENTARY_PSL1GHT_LIBS = @ELEMENTARY_PSL1GHT_LIBS@
ELEMENTARY_SDL_CFLAGS = @ELEMENTARY_SDL_CFLAGS@
ELEMENTARY_SDL_LIBS = @ELEMENTARY_SDL_LIBS@
ELEMENTARY_TEST_PRG = @ELEMENTARY_TEST_PRG@
ELEMENTARY_WEB_CFLAGS = @ELEMENTARY_WEB_CFLAGS@
ELEMENTARY_WEB_LIBS = @ELEMENTARY_WEB_LIBS@
ELEMENTARY_WIN32_CFLAGS = @ELEMENTARY_WIN32_CFLAGS@
ELEMENTARY_WIN32_LIBS = @ELEMENTARY_WIN32_LIBS@
ELEMENTARY_WINCE_CFLAGS = @ELEMENTARY_WINCE_CFLAGS@
ELEMENTARY_WINCE_LIBS = @ELEMENTARY_WINCE_LIBS@
ELEMENTARY_X_CFLAGS = @ELEMENTARY_X_CFLAGS@
ELEMENTARY_X_LIBS = @ELEMENTARY_X_LIBS@
ELM_ALLOCA_H_DEF = @ELM_ALLOCA_H_DEF@
ELM_DEBUG_DEF = @ELM_DEBUG_DEF@
ELM_DIRENT_H_DEF = @ELM_DIRENT_H_DEF@
ELM_EDBUS_DEF = @ELM_EDBUS_DEF@
ELM_EFREET_DEF = @ELM_EFREET_DEF@
ELM_EMAP_DEF = @ELM_EMAP_DEF@
ELM_ETHUMB_DEF = @ELM_ETHUMB_DEF@
ELM_EWEATHER_DEF = @ELM_EWEATHER_DEF@
ELM_LIBINTL_H_DEF = @ELM_LIBINTL_H_DEF@
ELM_UNIX_DEF = @ELM_UNIX_DEF@
ELM_WEB_DEF = @ELM_WEB_DEF@
ELM_WIN32_DEF = @ELM_WIN32_DEF@
ELM_WINCE_DEF = @ELM_WINCE_DEF@
EMOTION_CFLAGS = @EMOTION_CFLAGS@
EMOTION_LIBS = @EMOTION_LIBS@
EVIL_CFLAGS = @EVIL_CFLAGS@
EVIL_LIBS = @EVIL_LIBS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LOCALE_DIR = @LOCALE_DIR@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
MODULE_ARCH = @MODULE_ARCH@
MODULE_EDJE = @MODULE_EDJE@
MSGFMT = @MSGFMT@
MSGFMT_015 = @MSGFMT_015@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
POSUB = @POSUB@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
VMAJ = @VMAJ@
VMIN = @VMIN@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
dlopen_libs = @dlopen_libs@
docdir = @docdir@
dvidir = @dvidir@
edje_cc = @edje_cc@
eet_eet = @eet_eet@
efl_doxygen = @efl_doxygen@
efl_have_doxygen = @efl_have_doxygen@
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@
lt_ECHO = @lt_ECHO@
lt_enable_auto_import = @lt_enable_auto_import@
mandir = @mandir@
mkdir_p = @mkdir_p@
my_libs = @my_libs@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pkgconfig_requires_private = @pkgconfig_requires_private@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
release_info = @release_info@
requirement_elm = @requirement_elm@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
version_info = @version_info@
AUTOMAKE_OPTIONS = 1.4 foreign
MAINTAINERCLEANFILES = Makefile.in
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/src/lib \
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-DPACKAGE_BIN_DIR=\"$(bindir)\" \
-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
@ELEMENTARY_CFLAGS@ \
@ELEMENTARY_X_CFLAGS@ \
@ELEMENTARY_FB_CFLAGS@ \
@ELEMENTARY_WIN32_CFLAGS@ \
@ELEMENTARY_WINCE_CFLAGS@ \
@ELEMENTARY_EDBUS_CFLAGS@ \
@ELEMENTARY_EFREET_CFLAGS@ \
@ELEMENTARY_EWEATHER_CFLAGS@ \
@ELEMENTARY_ETHUMB_CFLAGS@ \
@ELEMENTARY_EMAP_CFLAGS@ \
@EIO_CFLAGS@ \
@ELEMENTARY_WEB_CFLAGS@

elementary_test_SOURCES = test.c test_3d.c test_actionslider.c \
	test_anim.c test_bg.c test_box.c test_bubble.c test_button.c \
	test_calendar.c test_check.c test_clock.c test_cnp.c \
	test_colorselector.c test_conform.c test_ctxpopup.c \
	test_cursor.c test_datetime.c test_dayselector.c \
	test_diskselector.c test_entry.c test_entry_anchor.c \
	test_entry_anchor2.c test_fileselector_button.c \
	test_fileselector.c test_fileselector_entry.c test_flip.c \
	test_flip_page.c test_flipselector.c test_floating.c \
	test_focus.c test_focus2.c test_focus3.c test_gengrid.c \
	test_genlist.c test_gesture_layer.c test_gesture_layer2.c \
	test_gesture_layer3.c test_glview_simple.c test_glview.c \
	test_grid.c test_hover.c test_hoversel.c test_icon.c \
	test_icon_desktops.c test_icon_animated.c test_index.c \
	test_inwin.c test_label.c test_launcher.c test_layout.c \
	test_list.c test_map.c test_menu.c test_multi.c \
	test_multibuttonentry.c test_naviframe.c \
	test_naviframe_complex.c test_notify.c test_panel.c \
	test_panes.c test_photo.c test_photocam.c test_popup.c \
	test_progressbar.c test_radio.c test_scaling.c test_scroller.c \
	test_segment_control.c test_separator.c test_slider.c \
	test_slideshow.c test_spinner.c test_store.c test_table.c \
	test_thumb.c test_toolbar.c test_tooltip.c test_transit.c \
	test_video.c test_weather.c test_web.c test_win_inline.c \
	test_win_socket.c test_win_plug.c test_win_state.c test.h \
	$(am__append_2)
elementary_test_LDADD = $(top_builddir)/src/lib/libelementary.la \
	@ELEMENTARY_EWEATHER_LIBS@ \
	@ELEMENTARY_EDBUS_LIBS@ \
	@ELEMENTARY_EFREET_LIBS@ \
	@ELEMENTARY_EMAP_LIBS@ \
	@ELEMENTARY_LIBS@ \
	@EIO_LIBS@ \
	@ELEMENTARY_WEB_LIBS@ \
	@my_libs@

elementary_test_LDFLAGS = 
elementary_config_SOURCES = \
config.c

elementary_config_LDADD = $(top_builddir)/src/lib/libelementary.la \
	@ELEMENTARY_EWEATHER_LIBS@ \
	@ELEMENTARY_EDBUS_LIBS@ \
	@ELEMENTARY_EFREET_LIBS@ \
	@ELEMENTARY_EMAP_LIBS@ \
	@ELEMENTARY_LIBS@ \
	@my_libs@

elementary_config_LDFLAGS = 
@BUILD_QUICKLAUNCH_TRUE@elementary_quicklaunch_SOURCES = quicklaunch.c
@BUILD_QUICKLAUNCH_TRUE@elementary_quicklaunch_LDADD = $(top_builddir)/src/lib/libelementary.la \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EWEATHER_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EDBUS_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EFREET_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EMAP_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@my_libs@

@BUILD_QUICKLAUNCH_TRUE@elementary_quicklaunch_LDFLAGS = 
@BUILD_QUICKLAUNCH_TRUE@@BUILD_RUN_TRUE@elementary_run_SOURCES = run.c
@BUILD_QUICKLAUNCH_TRUE@@BUILD_RUN_TRUE@elementary_run_LDADD = 
@BUILD_QUICKLAUNCH_TRUE@@BUILD_RUN_TRUE@elementary_run_LDFLAGS = 

# build the shared lib version - libtool produces a .a and .la file as well
# as a .so - these get put in libdir ($PREFIX/lib) as elementary_testql.so
# etc. - this is where elementary will expect to find the .so's for
# quicklaunch apps.
@BUILD_QUICKLAUNCH_TRUE@elementary_testqldir = $(libdir)
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_LTLIBRARIES = elementary_testql.la
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_la_SOURCES = $(elementary_test_SOURCES)
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_la_LIBADD = $(top_builddir)/src/lib/libelementary.la \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EWEATHER_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EDBUS_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EFREET_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EMAP_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@EIO_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_WEB_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@my_libs@

@BUILD_QUICKLAUNCH_TRUE@elementary_testql_la_CFLAGS = 
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_la_LDFLAGS = -module -avoid-version -no-undefined
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_SOURCES = $(elementary_test_SOURCES)
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_LDADD = $(top_builddir)/src/lib/libelementary.la \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EWEATHER_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EDBUS_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EFREET_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_EMAP_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@EIO_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@ELEMENTARY_WEB_LIBS@ \
@BUILD_QUICKLAUNCH_TRUE@	@my_libs@

@BUILD_QUICKLAUNCH_TRUE@elementary_testql_CFLAGS = -DELM_LIB_QUICKLAUNCH=1
@BUILD_QUICKLAUNCH_TRUE@elementary_testql_LDFLAGS = 
EXTRA_DIST = \
test_factory.c

all: all-am

.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(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/bin/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign src/bin/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;

$(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):
install-elementary_testqlLTLIBRARIES: $(elementary_testql_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(elementary_testqldir)" || $(MKDIR_P) "$(DESTDIR)$(elementary_testqldir)"
	@list='$(elementary_testql_LTLIBRARIES)'; test -n "$(elementary_testqldir)" || list=; \
	list2=; for p in $$list; do \
	  if test -f $$p; then \
	    list2="$$list2 $$p"; \
	  else :; fi; \
	done; \
	test -z "$$list2" || { \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(elementary_testqldir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(elementary_testqldir)"; \
	}

uninstall-elementary_testqlLTLIBRARIES:
	@$(NORMAL_UNINSTALL)
	@list='$(elementary_testql_LTLIBRARIES)'; test -n "$(elementary_testqldir)" || list=; \
	for p in $$list; do \
	  $(am__strip_dir) \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(elementary_testqldir)/$$f'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(elementary_testqldir)/$$f"; \
	done

clean-elementary_testqlLTLIBRARIES:
	-test -z "$(elementary_testql_LTLIBRARIES)" || rm -f $(elementary_testql_LTLIBRARIES)
	@list='$(elementary_testql_LTLIBRARIES)'; for p in $$list; do \
	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
	  test "$$dir" != "$$p" || dir=.; \
	  echo "rm -f \"$${dir}/so_locations\""; \
	  rm -f "$${dir}/so_locations"; \
	done
elementary_testql.la: $(elementary_testql_la_OBJECTS) $(elementary_testql_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(elementary_testql_la_LINK) $(am_elementary_testql_la_rpath) $(elementary_testql_la_OBJECTS) $(elementary_testql_la_LIBADD) $(LIBS)
install-binPROGRAMS: $(bin_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
	for p in $$list; do echo "$$p $$p"; done | \
	sed 's/$(EXEEXT)$$//' | \
	while read p p1; do if test -f $$p || test -f $$p1; \
	  then echo "$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
	sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
	    else { print "f", $$3 "/" $$4, $$1; } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	    test -z "$$files" || { \
	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
	    } \
	; done

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

clean-binPROGRAMS:
	@list='$(bin_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
elementary_config$(EXEEXT): $(elementary_config_OBJECTS) $(elementary_config_DEPENDENCIES) 
	@rm -f elementary_config$(EXEEXT)
	$(AM_V_CCLD)$(elementary_config_LINK) $(elementary_config_OBJECTS) $(elementary_config_LDADD) $(LIBS)
elementary_quicklaunch$(EXEEXT): $(elementary_quicklaunch_OBJECTS) $(elementary_quicklaunch_DEPENDENCIES) 
	@rm -f elementary_quicklaunch$(EXEEXT)
	$(AM_V_CCLD)$(elementary_quicklaunch_LINK) $(elementary_quicklaunch_OBJECTS) $(elementary_quicklaunch_LDADD) $(LIBS)
elementary_run$(EXEEXT): $(elementary_run_OBJECTS) $(elementary_run_DEPENDENCIES) 
	@rm -f elementary_run$(EXEEXT)
	$(AM_V_CCLD)$(elementary_run_LINK) $(elementary_run_OBJECTS) $(elementary_run_LDADD) $(LIBS)
elementary_test$(EXEEXT): $(elementary_test_OBJECTS) $(elementary_test_DEPENDENCIES) 
	@rm -f elementary_test$(EXEEXT)
	$(AM_V_CCLD)$(elementary_test_LINK) $(elementary_test_OBJECTS) $(elementary_test_LDADD) $(LIBS)
elementary_testql$(EXEEXT): $(elementary_testql_OBJECTS) $(elementary_testql_DEPENDENCIES) 
	@rm -f elementary_testql$(EXEEXT)
	$(AM_V_CCLD)$(elementary_testql_LINK) $(elementary_testql_OBJECTS) $(elementary_testql_LDADD) $(LIBS)

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

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

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_3d.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_actionslider.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_anim.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_bg.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_box.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_bubble.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_button.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_calendar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_check.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_clock.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_cnp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_colorselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_conform.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_ctxpopup.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_cursor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_datetime.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_dayselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_diskselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_eio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_entry.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_entry_anchor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_entry_anchor2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_fileselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_fileselector_button.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_fileselector_entry.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_flip.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_flip_page.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_flipselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_floating.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_focus.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_focus2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_focus3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_gengrid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_genlist.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_gesture_layer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_gesture_layer2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_gesture_layer3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_glview.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_glview_simple.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_grid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_hover.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_hoversel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_icon.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_icon_animated.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_icon_desktops.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_index.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_inwin.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_label.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_launcher.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_layout.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_map.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_menu.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_multi.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_multibuttonentry.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_naviframe.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_naviframe_complex.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_notify.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_panel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_panes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_photo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_photocam.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_popup.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_progressbar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_radio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_scaling.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_scroller.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_segment_control.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_separator.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_slider.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_slideshow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_spinner.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_store.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_thumb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_toolbar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_tooltip.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_transit.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_video.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_weather.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_web.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_win_inline.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_win_plug.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_win_socket.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql-test_win_state.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_3d.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_actionslider.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_anim.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_bg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_bubble.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_button.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_calendar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_check.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_clock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_cnp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_colorselector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_conform.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_ctxpopup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_cursor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_datetime.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_dayselector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_diskselector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_eio.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_entry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_entry_anchor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_entry_anchor2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_fileselector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_fileselector_button.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_fileselector_entry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_flip.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_flip_page.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_flipselector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_floating.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_focus.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_focus2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_focus3.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_gengrid.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_genlist.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_gesture_layer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_gesture_layer2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_gesture_layer3.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_glview.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_glview_simple.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_grid.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_hover.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_hoversel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_icon.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_icon_animated.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_icon_desktops.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_index.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_inwin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_label.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_launcher.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_layout.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_map.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_menu.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_multi.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_multibuttonentry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_naviframe.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_naviframe_complex.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_notify.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_panel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_panes.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_photo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_photocam.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_popup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_progressbar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_radio.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_scaling.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_scroller.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_segment_control.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_separator.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_slider.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_slideshow.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_spinner.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_store.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_table.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_thumb.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_toolbar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_tooltip.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_transit.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_video.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_weather.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_web.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_win_inline.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_win_plug.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_win_socket.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elementary_testql_la-test_win_state.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/quicklaunch.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/run.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_3d.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_actionslider.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_anim.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bg.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_box.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bubble.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_button.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_calendar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_check.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_clock.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_cnp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_colorselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_conform.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ctxpopup.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_cursor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_datetime.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_dayselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_diskselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_eio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_entry.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_entry_anchor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_entry_anchor2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fileselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fileselector_button.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fileselector_entry.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_flip.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_flip_page.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_flipselector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_floating.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_focus.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_focus2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_focus3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_gengrid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_genlist.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_gesture_layer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_gesture_layer2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_gesture_layer3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_glview.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_glview_simple.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_grid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_hover.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_hoversel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_icon.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_icon_animated.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_icon_desktops.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_index.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_inwin.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_label.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_launcher.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_layout.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_map.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_menu.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_multi.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_multibuttonentry.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_naviframe.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_naviframe_complex.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_notify.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_panel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_panes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_photo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_photocam.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_popup.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_progressbar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_radio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_scaling.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_scroller.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_segment_control.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_separator.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_slider.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_slideshow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_spinner.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_store.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_thumb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_toolbar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_tooltip.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_transit.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_video.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_weather.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_web.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_win_inline.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_win_plug.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_win_socket.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_win_state.Po@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
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c $<

.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
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c `$(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
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<

elementary_testql_la-test.lo: test.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test.Tpo -c -o elementary_testql_la-test.lo `test -f 'test.c' || echo '$(srcdir)/'`test.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test.Tpo $(DEPDIR)/elementary_testql_la-test.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test.c' object='elementary_testql_la-test.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test.lo `test -f 'test.c' || echo '$(srcdir)/'`test.c

elementary_testql_la-test_3d.lo: test_3d.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_3d.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_3d.Tpo -c -o elementary_testql_la-test_3d.lo `test -f 'test_3d.c' || echo '$(srcdir)/'`test_3d.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_3d.Tpo $(DEPDIR)/elementary_testql_la-test_3d.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_3d.c' object='elementary_testql_la-test_3d.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_3d.lo `test -f 'test_3d.c' || echo '$(srcdir)/'`test_3d.c

elementary_testql_la-test_actionslider.lo: test_actionslider.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_actionslider.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_actionslider.Tpo -c -o elementary_testql_la-test_actionslider.lo `test -f 'test_actionslider.c' || echo '$(srcdir)/'`test_actionslider.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_actionslider.Tpo $(DEPDIR)/elementary_testql_la-test_actionslider.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_actionslider.c' object='elementary_testql_la-test_actionslider.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_actionslider.lo `test -f 'test_actionslider.c' || echo '$(srcdir)/'`test_actionslider.c

elementary_testql_la-test_anim.lo: test_anim.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_anim.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_anim.Tpo -c -o elementary_testql_la-test_anim.lo `test -f 'test_anim.c' || echo '$(srcdir)/'`test_anim.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_anim.Tpo $(DEPDIR)/elementary_testql_la-test_anim.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_anim.c' object='elementary_testql_la-test_anim.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_anim.lo `test -f 'test_anim.c' || echo '$(srcdir)/'`test_anim.c

elementary_testql_la-test_bg.lo: test_bg.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_bg.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_bg.Tpo -c -o elementary_testql_la-test_bg.lo `test -f 'test_bg.c' || echo '$(srcdir)/'`test_bg.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_bg.Tpo $(DEPDIR)/elementary_testql_la-test_bg.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_bg.c' object='elementary_testql_la-test_bg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_bg.lo `test -f 'test_bg.c' || echo '$(srcdir)/'`test_bg.c

elementary_testql_la-test_box.lo: test_box.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_box.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_box.Tpo -c -o elementary_testql_la-test_box.lo `test -f 'test_box.c' || echo '$(srcdir)/'`test_box.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_box.Tpo $(DEPDIR)/elementary_testql_la-test_box.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_box.c' object='elementary_testql_la-test_box.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_box.lo `test -f 'test_box.c' || echo '$(srcdir)/'`test_box.c

elementary_testql_la-test_bubble.lo: test_bubble.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_bubble.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_bubble.Tpo -c -o elementary_testql_la-test_bubble.lo `test -f 'test_bubble.c' || echo '$(srcdir)/'`test_bubble.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_bubble.Tpo $(DEPDIR)/elementary_testql_la-test_bubble.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_bubble.c' object='elementary_testql_la-test_bubble.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_bubble.lo `test -f 'test_bubble.c' || echo '$(srcdir)/'`test_bubble.c

elementary_testql_la-test_button.lo: test_button.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_button.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_button.Tpo -c -o elementary_testql_la-test_button.lo `test -f 'test_button.c' || echo '$(srcdir)/'`test_button.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_button.Tpo $(DEPDIR)/elementary_testql_la-test_button.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_button.c' object='elementary_testql_la-test_button.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_button.lo `test -f 'test_button.c' || echo '$(srcdir)/'`test_button.c

elementary_testql_la-test_calendar.lo: test_calendar.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_calendar.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_calendar.Tpo -c -o elementary_testql_la-test_calendar.lo `test -f 'test_calendar.c' || echo '$(srcdir)/'`test_calendar.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_calendar.Tpo $(DEPDIR)/elementary_testql_la-test_calendar.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_calendar.c' object='elementary_testql_la-test_calendar.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_calendar.lo `test -f 'test_calendar.c' || echo '$(srcdir)/'`test_calendar.c

elementary_testql_la-test_check.lo: test_check.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_check.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_check.Tpo -c -o elementary_testql_la-test_check.lo `test -f 'test_check.c' || echo '$(srcdir)/'`test_check.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_check.Tpo $(DEPDIR)/elementary_testql_la-test_check.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_check.c' object='elementary_testql_la-test_check.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_check.lo `test -f 'test_check.c' || echo '$(srcdir)/'`test_check.c

elementary_testql_la-test_clock.lo: test_clock.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_clock.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_clock.Tpo -c -o elementary_testql_la-test_clock.lo `test -f 'test_clock.c' || echo '$(srcdir)/'`test_clock.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_clock.Tpo $(DEPDIR)/elementary_testql_la-test_clock.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_clock.c' object='elementary_testql_la-test_clock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_clock.lo `test -f 'test_clock.c' || echo '$(srcdir)/'`test_clock.c

elementary_testql_la-test_cnp.lo: test_cnp.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_cnp.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_cnp.Tpo -c -o elementary_testql_la-test_cnp.lo `test -f 'test_cnp.c' || echo '$(srcdir)/'`test_cnp.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_cnp.Tpo $(DEPDIR)/elementary_testql_la-test_cnp.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_cnp.c' object='elementary_testql_la-test_cnp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_cnp.lo `test -f 'test_cnp.c' || echo '$(srcdir)/'`test_cnp.c

elementary_testql_la-test_colorselector.lo: test_colorselector.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_colorselector.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_colorselector.Tpo -c -o elementary_testql_la-test_colorselector.lo `test -f 'test_colorselector.c' || echo '$(srcdir)/'`test_colorselector.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_colorselector.Tpo $(DEPDIR)/elementary_testql_la-test_colorselector.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_colorselector.c' object='elementary_testql_la-test_colorselector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_colorselector.lo `test -f 'test_colorselector.c' || echo '$(srcdir)/'`test_colorselector.c

elementary_testql_la-test_conform.lo: test_conform.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_conform.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_conform.Tpo -c -o elementary_testql_la-test_conform.lo `test -f 'test_conform.c' || echo '$(srcdir)/'`test_conform.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_conform.Tpo $(DEPDIR)/elementary_testql_la-test_conform.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_conform.c' object='elementary_testql_la-test_conform.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_conform.lo `test -f 'test_conform.c' || echo '$(srcdir)/'`test_conform.c

elementary_testql_la-test_ctxpopup.lo: test_ctxpopup.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_ctxpopup.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_ctxpopup.Tpo -c -o elementary_testql_la-test_ctxpopup.lo `test -f 'test_ctxpopup.c' || echo '$(srcdir)/'`test_ctxpopup.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_ctxpopup.Tpo $(DEPDIR)/elementary_testql_la-test_ctxpopup.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_ctxpopup.c' object='elementary_testql_la-test_ctxpopup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_ctxpopup.lo `test -f 'test_ctxpopup.c' || echo '$(srcdir)/'`test_ctxpopup.c

elementary_testql_la-test_cursor.lo: test_cursor.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_cursor.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_cursor.Tpo -c -o elementary_testql_la-test_cursor.lo `test -f 'test_cursor.c' || echo '$(srcdir)/'`test_cursor.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_cursor.Tpo $(DEPDIR)/elementary_testql_la-test_cursor.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_cursor.c' object='elementary_testql_la-test_cursor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_cursor.lo `test -f 'test_cursor.c' || echo '$(srcdir)/'`test_cursor.c

elementary_testql_la-test_datetime.lo: test_datetime.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_datetime.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_datetime.Tpo -c -o elementary_testql_la-test_datetime.lo `test -f 'test_datetime.c' || echo '$(srcdir)/'`test_datetime.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_datetime.Tpo $(DEPDIR)/elementary_testql_la-test_datetime.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_datetime.c' object='elementary_testql_la-test_datetime.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_datetime.lo `test -f 'test_datetime.c' || echo '$(srcdir)/'`test_datetime.c

elementary_testql_la-test_dayselector.lo: test_dayselector.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_dayselector.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_dayselector.Tpo -c -o elementary_testql_la-test_dayselector.lo `test -f 'test_dayselector.c' || echo '$(srcdir)/'`test_dayselector.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_dayselector.Tpo $(DEPDIR)/elementary_testql_la-test_dayselector.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_dayselector.c' object='elementary_testql_la-test_dayselector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_dayselector.lo `test -f 'test_dayselector.c' || echo '$(srcdir)/'`test_dayselector.c

elementary_testql_la-test_diskselector.lo: test_diskselector.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_diskselector.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_diskselector.Tpo -c -o elementary_testql_la-test_diskselector.lo `test -f 'test_diskselector.c' || echo '$(srcdir)/'`test_diskselector.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_diskselector.Tpo $(DEPDIR)/elementary_testql_la-test_diskselector.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_diskselector.c' object='elementary_testql_la-test_diskselector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_diskselector.lo `test -f 'test_diskselector.c' || echo '$(srcdir)/'`test_diskselector.c

elementary_testql_la-test_entry.lo: test_entry.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_entry.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_entry.Tpo -c -o elementary_testql_la-test_entry.lo `test -f 'test_entry.c' || echo '$(srcdir)/'`test_entry.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_entry.Tpo $(DEPDIR)/elementary_testql_la-test_entry.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_entry.c' object='elementary_testql_la-test_entry.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_entry.lo `test -f 'test_entry.c' || echo '$(srcdir)/'`test_entry.c

elementary_testql_la-test_entry_anchor.lo: test_entry_anchor.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_entry_anchor.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_entry_anchor.Tpo -c -o elementary_testql_la-test_entry_anchor.lo `test -f 'test_entry_anchor.c' || echo '$(srcdir)/'`test_entry_anchor.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_entry_anchor.Tpo $(DEPDIR)/elementary_testql_la-test_entry_anchor.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_entry_anchor.c' object='elementary_testql_la-test_entry_anchor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_entry_anchor.lo `test -f 'test_entry_anchor.c' || echo '$(srcdir)/'`test_entry_anchor.c

elementary_testql_la-test_entry_anchor2.lo: test_entry_anchor2.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_entry_anchor2.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_entry_anchor2.Tpo -c -o elementary_testql_la-test_entry_anchor2.lo `test -f 'test_entry_anchor2.c' || echo '$(srcdir)/'`test_entry_anchor2.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_entry_anchor2.Tpo $(DEPDIR)/elementary_testql_la-test_entry_anchor2.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_entry_anchor2.c' object='elementary_testql_la-test_entry_anchor2.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_entry_anchor2.lo `test -f 'test_entry_anchor2.c' || echo '$(srcdir)/'`test_entry_anchor2.c

elementary_testql_la-test_fileselector_button.lo: test_fileselector_button.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_fileselector_button.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_fileselector_button.Tpo -c -o elementary_testql_la-test_fileselector_button.lo `test -f 'test_fileselector_button.c' || echo '$(srcdir)/'`test_fileselector_button.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_fileselector_button.Tpo $(DEPDIR)/elementary_testql_la-test_fileselector_button.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_fileselector_button.c' object='elementary_testql_la-test_fileselector_button.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_fileselector_button.lo `test -f 'test_fileselector_button.c' || echo '$(srcdir)/'`test_fileselector_button.c

elementary_testql_la-test_fileselector.lo: test_fileselector.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_fileselector.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_fileselector.Tpo -c -o elementary_testql_la-test_fileselector.lo `test -f 'test_fileselector.c' || echo '$(srcdir)/'`test_fileselector.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_fileselector.Tpo $(DEPDIR)/elementary_testql_la-test_fileselector.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_fileselector.c' object='elementary_testql_la-test_fileselector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_fileselector.lo `test -f 'test_fileselector.c' || echo '$(srcdir)/'`test_fileselector.c

elementary_testql_la-test_fileselector_entry.lo: test_fileselector_entry.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_fileselector_entry.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_fileselector_entry.Tpo -c -o elementary_testql_la-test_fileselector_entry.lo `test -f 'test_fileselector_entry.c' || echo '$(srcdir)/'`test_fileselector_entry.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_fileselector_entry.Tpo $(DEPDIR)/elementary_testql_la-test_fileselector_entry.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_fileselector_entry.c' object='elementary_testql_la-test_fileselector_entry.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_fileselector_entry.lo `test -f 'test_fileselector_entry.c' || echo '$(srcdir)/'`test_fileselector_entry.c

elementary_testql_la-test_flip.lo: test_flip.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_flip.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_flip.Tpo -c -o elementary_testql_la-test_flip.lo `test -f 'test_flip.c' || echo '$(srcdir)/'`test_flip.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_flip.Tpo $(DEPDIR)/elementary_testql_la-test_flip.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_flip.c' object='elementary_testql_la-test_flip.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_flip.lo `test -f 'test_flip.c' || echo '$(srcdir)/'`test_flip.c

elementary_testql_la-test_flip_page.lo: test_flip_page.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_flip_page.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_flip_page.Tpo -c -o elementary_testql_la-test_flip_page.lo `test -f 'test_flip_page.c' || echo '$(srcdir)/'`test_flip_page.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_flip_page.Tpo $(DEPDIR)/elementary_testql_la-test_flip_page.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_flip_page.c' object='elementary_testql_la-test_flip_page.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_flip_page.lo `test -f 'test_flip_page.c' || echo '$(srcdir)/'`test_flip_page.c

elementary_testql_la-test_flipselector.lo: test_flipselector.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_flipselector.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_flipselector.Tpo -c -o elementary_testql_la-test_flipselector.lo `test -f 'test_flipselector.c' || echo '$(srcdir)/'`test_flipselector.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_flipselector.Tpo $(DEPDIR)/elementary_testql_la-test_flipselector.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_flipselector.c' object='elementary_testql_la-test_flipselector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_flipselector.lo `test -f 'test_flipselector.c' || echo '$(srcdir)/'`test_flipselector.c

elementary_testql_la-test_floating.lo: test_floating.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_floating.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_floating.Tpo -c -o elementary_testql_la-test_floating.lo `test -f 'test_floating.c' || echo '$(srcdir)/'`test_floating.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_floating.Tpo $(DEPDIR)/elementary_testql_la-test_floating.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_floating.c' object='elementary_testql_la-test_floating.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_floating.lo `test -f 'test_floating.c' || echo '$(srcdir)/'`test_floating.c

elementary_testql_la-test_focus.lo: test_focus.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_focus.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_focus.Tpo -c -o elementary_testql_la-test_focus.lo `test -f 'test_focus.c' || echo '$(srcdir)/'`test_focus.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_focus.Tpo $(DEPDIR)/elementary_testql_la-test_focus.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_focus.c' object='elementary_testql_la-test_focus.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_focus.lo `test -f 'test_focus.c' || echo '$(srcdir)/'`test_focus.c

elementary_testql_la-test_focus2.lo: test_focus2.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_focus2.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_focus2.Tpo -c -o elementary_testql_la-test_focus2.lo `test -f 'test_focus2.c' || echo '$(srcdir)/'`test_focus2.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_focus2.Tpo $(DEPDIR)/elementary_testql_la-test_focus2.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_focus2.c' object='elementary_testql_la-test_focus2.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_focus2.lo `test -f 'test_focus2.c' || echo '$(srcdir)/'`test_focus2.c

elementary_testql_la-test_focus3.lo: test_focus3.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_focus3.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_focus3.Tpo -c -o elementary_testql_la-test_focus3.lo `test -f 'test_focus3.c' || echo '$(srcdir)/'`test_focus3.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_focus3.Tpo $(DEPDIR)/elementary_testql_la-test_focus3.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_focus3.c' object='elementary_testql_la-test_focus3.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_focus3.lo `test -f 'test_focus3.c' || echo '$(srcdir)/'`test_focus3.c

elementary_testql_la-test_gengrid.lo: test_gengrid.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_gengrid.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_gengrid.Tpo -c -o elementary_testql_la-test_gengrid.lo `test -f 'test_gengrid.c' || echo '$(srcdir)/'`test_gengrid.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_gengrid.Tpo $(DEPDIR)/elementary_testql_la-test_gengrid.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_gengrid.c' object='elementary_testql_la-test_gengrid.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_gengrid.lo `test -f 'test_gengrid.c' || echo '$(srcdir)/'`test_gengrid.c

elementary_testql_la-test_genlist.lo: test_genlist.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_genlist.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_genlist.Tpo -c -o elementary_testql_la-test_genlist.lo `test -f 'test_genlist.c' || echo '$(srcdir)/'`test_genlist.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_genlist.Tpo $(DEPDIR)/elementary_testql_la-test_genlist.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_genlist.c' object='elementary_testql_la-test_genlist.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_genlist.lo `test -f 'test_genlist.c' || echo '$(srcdir)/'`test_genlist.c

elementary_testql_la-test_gesture_layer.lo: test_gesture_layer.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_gesture_layer.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_gesture_layer.Tpo -c -o elementary_testql_la-test_gesture_layer.lo `test -f 'test_gesture_layer.c' || echo '$(srcdir)/'`test_gesture_layer.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_gesture_layer.Tpo $(DEPDIR)/elementary_testql_la-test_gesture_layer.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_gesture_layer.c' object='elementary_testql_la-test_gesture_layer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_gesture_layer.lo `test -f 'test_gesture_layer.c' || echo '$(srcdir)/'`test_gesture_layer.c

elementary_testql_la-test_gesture_layer2.lo: test_gesture_layer2.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_gesture_layer2.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_gesture_layer2.Tpo -c -o elementary_testql_la-test_gesture_layer2.lo `test -f 'test_gesture_layer2.c' || echo '$(srcdir)/'`test_gesture_layer2.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_gesture_layer2.Tpo $(DEPDIR)/elementary_testql_la-test_gesture_layer2.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_gesture_layer2.c' object='elementary_testql_la-test_gesture_layer2.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_gesture_layer2.lo `test -f 'test_gesture_layer2.c' || echo '$(srcdir)/'`test_gesture_layer2.c

elementary_testql_la-test_gesture_layer3.lo: test_gesture_layer3.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_gesture_layer3.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_gesture_layer3.Tpo -c -o elementary_testql_la-test_gesture_layer3.lo `test -f 'test_gesture_layer3.c' || echo '$(srcdir)/'`test_gesture_layer3.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_gesture_layer3.Tpo $(DEPDIR)/elementary_testql_la-test_gesture_layer3.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_gesture_layer3.c' object='elementary_testql_la-test_gesture_layer3.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_gesture_layer3.lo `test -f 'test_gesture_layer3.c' || echo '$(srcdir)/'`test_gesture_layer3.c

elementary_testql_la-test_glview_simple.lo: test_glview_simple.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_glview_simple.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_glview_simple.Tpo -c -o elementary_testql_la-test_glview_simple.lo `test -f 'test_glview_simple.c' || echo '$(srcdir)/'`test_glview_simple.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_glview_simple.Tpo $(DEPDIR)/elementary_testql_la-test_glview_simple.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_glview_simple.c' object='elementary_testql_la-test_glview_simple.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_glview_simple.lo `test -f 'test_glview_simple.c' || echo '$(srcdir)/'`test_glview_simple.c

elementary_testql_la-test_glview.lo: test_glview.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_glview.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_glview.Tpo -c -o elementary_testql_la-test_glview.lo `test -f 'test_glview.c' || echo '$(srcdir)/'`test_glview.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_glview.Tpo $(DEPDIR)/elementary_testql_la-test_glview.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_glview.c' object='elementary_testql_la-test_glview.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_glview.lo `test -f 'test_glview.c' || echo '$(srcdir)/'`test_glview.c

elementary_testql_la-test_grid.lo: test_grid.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_grid.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_grid.Tpo -c -o elementary_testql_la-test_grid.lo `test -f 'test_grid.c' || echo '$(srcdir)/'`test_grid.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_grid.Tpo $(DEPDIR)/elementary_testql_la-test_grid.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_grid.c' object='elementary_testql_la-test_grid.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_grid.lo `test -f 'test_grid.c' || echo '$(srcdir)/'`test_grid.c

elementary_testql_la-test_hover.lo: test_hover.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_hover.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_hover.Tpo -c -o elementary_testql_la-test_hover.lo `test -f 'test_hover.c' || echo '$(srcdir)/'`test_hover.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_hover.Tpo $(DEPDIR)/elementary_testql_la-test_hover.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_hover.c' object='elementary_testql_la-test_hover.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_hover.lo `test -f 'test_hover.c' || echo '$(srcdir)/'`test_hover.c

elementary_testql_la-test_hoversel.lo: test_hoversel.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_hoversel.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_hoversel.Tpo -c -o elementary_testql_la-test_hoversel.lo `test -f 'test_hoversel.c' || echo '$(srcdir)/'`test_hoversel.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_hoversel.Tpo $(DEPDIR)/elementary_testql_la-test_hoversel.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_hoversel.c' object='elementary_testql_la-test_hoversel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_hoversel.lo `test -f 'test_hoversel.c' || echo '$(srcdir)/'`test_hoversel.c

elementary_testql_la-test_icon.lo: test_icon.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_icon.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_icon.Tpo -c -o elementary_testql_la-test_icon.lo `test -f 'test_icon.c' || echo '$(srcdir)/'`test_icon.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_icon.Tpo $(DEPDIR)/elementary_testql_la-test_icon.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_icon.c' object='elementary_testql_la-test_icon.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_icon.lo `test -f 'test_icon.c' || echo '$(srcdir)/'`test_icon.c

elementary_testql_la-test_icon_desktops.lo: test_icon_desktops.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_icon_desktops.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_icon_desktops.Tpo -c -o elementary_testql_la-test_icon_desktops.lo `test -f 'test_icon_desktops.c' || echo '$(srcdir)/'`test_icon_desktops.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_icon_desktops.Tpo $(DEPDIR)/elementary_testql_la-test_icon_desktops.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_icon_desktops.c' object='elementary_testql_la-test_icon_desktops.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_icon_desktops.lo `test -f 'test_icon_desktops.c' || echo '$(srcdir)/'`test_icon_desktops.c

elementary_testql_la-test_icon_animated.lo: test_icon_animated.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_icon_animated.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_icon_animated.Tpo -c -o elementary_testql_la-test_icon_animated.lo `test -f 'test_icon_animated.c' || echo '$(srcdir)/'`test_icon_animated.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_icon_animated.Tpo $(DEPDIR)/elementary_testql_la-test_icon_animated.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_icon_animated.c' object='elementary_testql_la-test_icon_animated.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_icon_animated.lo `test -f 'test_icon_animated.c' || echo '$(srcdir)/'`test_icon_animated.c

elementary_testql_la-test_index.lo: test_index.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_index.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_index.Tpo -c -o elementary_testql_la-test_index.lo `test -f 'test_index.c' || echo '$(srcdir)/'`test_index.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_index.Tpo $(DEPDIR)/elementary_testql_la-test_index.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_index.c' object='elementary_testql_la-test_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_index.lo `test -f 'test_index.c' || echo '$(srcdir)/'`test_index.c

elementary_testql_la-test_inwin.lo: test_inwin.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_inwin.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_inwin.Tpo -c -o elementary_testql_la-test_inwin.lo `test -f 'test_inwin.c' || echo '$(srcdir)/'`test_inwin.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_inwin.Tpo $(DEPDIR)/elementary_testql_la-test_inwin.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_inwin.c' object='elementary_testql_la-test_inwin.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_inwin.lo `test -f 'test_inwin.c' || echo '$(srcdir)/'`test_inwin.c

elementary_testql_la-test_label.lo: test_label.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_label.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_label.Tpo -c -o elementary_testql_la-test_label.lo `test -f 'test_label.c' || echo '$(srcdir)/'`test_label.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_label.Tpo $(DEPDIR)/elementary_testql_la-test_label.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_label.c' object='elementary_testql_la-test_label.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_label.lo `test -f 'test_label.c' || echo '$(srcdir)/'`test_label.c

elementary_testql_la-test_launcher.lo: test_launcher.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_launcher.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_launcher.Tpo -c -o elementary_testql_la-test_launcher.lo `test -f 'test_launcher.c' || echo '$(srcdir)/'`test_launcher.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_launcher.Tpo $(DEPDIR)/elementary_testql_la-test_launcher.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_launcher.c' object='elementary_testql_la-test_launcher.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_launcher.lo `test -f 'test_launcher.c' || echo '$(srcdir)/'`test_launcher.c

elementary_testql_la-test_layout.lo: test_layout.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_layout.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_layout.Tpo -c -o elementary_testql_la-test_layout.lo `test -f 'test_layout.c' || echo '$(srcdir)/'`test_layout.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_layout.Tpo $(DEPDIR)/elementary_testql_la-test_layout.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_layout.c' object='elementary_testql_la-test_layout.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_layout.lo `test -f 'test_layout.c' || echo '$(srcdir)/'`test_layout.c

elementary_testql_la-test_list.lo: test_list.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_list.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_list.Tpo -c -o elementary_testql_la-test_list.lo `test -f 'test_list.c' || echo '$(srcdir)/'`test_list.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_list.Tpo $(DEPDIR)/elementary_testql_la-test_list.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_list.c' object='elementary_testql_la-test_list.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_list.lo `test -f 'test_list.c' || echo '$(srcdir)/'`test_list.c

elementary_testql_la-test_map.lo: test_map.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_map.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_map.Tpo -c -o elementary_testql_la-test_map.lo `test -f 'test_map.c' || echo '$(srcdir)/'`test_map.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_map.Tpo $(DEPDIR)/elementary_testql_la-test_map.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_map.c' object='elementary_testql_la-test_map.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_map.lo `test -f 'test_map.c' || echo '$(srcdir)/'`test_map.c

elementary_testql_la-test_menu.lo: test_menu.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_menu.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_menu.Tpo -c -o elementary_testql_la-test_menu.lo `test -f 'test_menu.c' || echo '$(srcdir)/'`test_menu.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_menu.Tpo $(DEPDIR)/elementary_testql_la-test_menu.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_menu.c' object='elementary_testql_la-test_menu.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_menu.lo `test -f 'test_menu.c' || echo '$(srcdir)/'`test_menu.c

elementary_testql_la-test_multi.lo: test_multi.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_multi.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_multi.Tpo -c -o elementary_testql_la-test_multi.lo `test -f 'test_multi.c' || echo '$(srcdir)/'`test_multi.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_multi.Tpo $(DEPDIR)/elementary_testql_la-test_multi.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_multi.c' object='elementary_testql_la-test_multi.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_multi.lo `test -f 'test_multi.c' || echo '$(srcdir)/'`test_multi.c

elementary_testql_la-test_multibuttonentry.lo: test_multibuttonentry.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_multibuttonentry.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_multibuttonentry.Tpo -c -o elementary_testql_la-test_multibuttonentry.lo `test -f 'test_multibuttonentry.c' || echo '$(srcdir)/'`test_multibuttonentry.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_multibuttonentry.Tpo $(DEPDIR)/elementary_testql_la-test_multibuttonentry.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_multibuttonentry.c' object='elementary_testql_la-test_multibuttonentry.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_multibuttonentry.lo `test -f 'test_multibuttonentry.c' || echo '$(srcdir)/'`test_multibuttonentry.c

elementary_testql_la-test_naviframe.lo: test_naviframe.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_naviframe.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_naviframe.Tpo -c -o elementary_testql_la-test_naviframe.lo `test -f 'test_naviframe.c' || echo '$(srcdir)/'`test_naviframe.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_naviframe.Tpo $(DEPDIR)/elementary_testql_la-test_naviframe.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_naviframe.c' object='elementary_testql_la-test_naviframe.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_naviframe.lo `test -f 'test_naviframe.c' || echo '$(srcdir)/'`test_naviframe.c

elementary_testql_la-test_naviframe_complex.lo: test_naviframe_complex.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_naviframe_complex.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_naviframe_complex.Tpo -c -o elementary_testql_la-test_naviframe_complex.lo `test -f 'test_naviframe_complex.c' || echo '$(srcdir)/'`test_naviframe_complex.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_naviframe_complex.Tpo $(DEPDIR)/elementary_testql_la-test_naviframe_complex.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_naviframe_complex.c' object='elementary_testql_la-test_naviframe_complex.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_naviframe_complex.lo `test -f 'test_naviframe_complex.c' || echo '$(srcdir)/'`test_naviframe_complex.c

elementary_testql_la-test_notify.lo: test_notify.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_notify.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_notify.Tpo -c -o elementary_testql_la-test_notify.lo `test -f 'test_notify.c' || echo '$(srcdir)/'`test_notify.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_notify.Tpo $(DEPDIR)/elementary_testql_la-test_notify.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_notify.c' object='elementary_testql_la-test_notify.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_notify.lo `test -f 'test_notify.c' || echo '$(srcdir)/'`test_notify.c

elementary_testql_la-test_panel.lo: test_panel.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_panel.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_panel.Tpo -c -o elementary_testql_la-test_panel.lo `test -f 'test_panel.c' || echo '$(srcdir)/'`test_panel.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_panel.Tpo $(DEPDIR)/elementary_testql_la-test_panel.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_panel.c' object='elementary_testql_la-test_panel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_panel.lo `test -f 'test_panel.c' || echo '$(srcdir)/'`test_panel.c

elementary_testql_la-test_panes.lo: test_panes.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_panes.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_panes.Tpo -c -o elementary_testql_la-test_panes.lo `test -f 'test_panes.c' || echo '$(srcdir)/'`test_panes.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_panes.Tpo $(DEPDIR)/elementary_testql_la-test_panes.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_panes.c' object='elementary_testql_la-test_panes.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_panes.lo `test -f 'test_panes.c' || echo '$(srcdir)/'`test_panes.c

elementary_testql_la-test_photo.lo: test_photo.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_photo.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_photo.Tpo -c -o elementary_testql_la-test_photo.lo `test -f 'test_photo.c' || echo '$(srcdir)/'`test_photo.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_photo.Tpo $(DEPDIR)/elementary_testql_la-test_photo.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_photo.c' object='elementary_testql_la-test_photo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_photo.lo `test -f 'test_photo.c' || echo '$(srcdir)/'`test_photo.c

elementary_testql_la-test_photocam.lo: test_photocam.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_photocam.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_photocam.Tpo -c -o elementary_testql_la-test_photocam.lo `test -f 'test_photocam.c' || echo '$(srcdir)/'`test_photocam.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_photocam.Tpo $(DEPDIR)/elementary_testql_la-test_photocam.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_photocam.c' object='elementary_testql_la-test_photocam.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_photocam.lo `test -f 'test_photocam.c' || echo '$(srcdir)/'`test_photocam.c

elementary_testql_la-test_popup.lo: test_popup.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_popup.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_popup.Tpo -c -o elementary_testql_la-test_popup.lo `test -f 'test_popup.c' || echo '$(srcdir)/'`test_popup.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_popup.Tpo $(DEPDIR)/elementary_testql_la-test_popup.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_popup.c' object='elementary_testql_la-test_popup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_popup.lo `test -f 'test_popup.c' || echo '$(srcdir)/'`test_popup.c

elementary_testql_la-test_progressbar.lo: test_progressbar.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_progressbar.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_progressbar.Tpo -c -o elementary_testql_la-test_progressbar.lo `test -f 'test_progressbar.c' || echo '$(srcdir)/'`test_progressbar.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_progressbar.Tpo $(DEPDIR)/elementary_testql_la-test_progressbar.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_progressbar.c' object='elementary_testql_la-test_progressbar.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_progressbar.lo `test -f 'test_progressbar.c' || echo '$(srcdir)/'`test_progressbar.c

elementary_testql_la-test_radio.lo: test_radio.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_radio.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_radio.Tpo -c -o elementary_testql_la-test_radio.lo `test -f 'test_radio.c' || echo '$(srcdir)/'`test_radio.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_radio.Tpo $(DEPDIR)/elementary_testql_la-test_radio.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_radio.c' object='elementary_testql_la-test_radio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_radio.lo `test -f 'test_radio.c' || echo '$(srcdir)/'`test_radio.c

elementary_testql_la-test_scaling.lo: test_scaling.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_scaling.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_scaling.Tpo -c -o elementary_testql_la-test_scaling.lo `test -f 'test_scaling.c' || echo '$(srcdir)/'`test_scaling.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_scaling.Tpo $(DEPDIR)/elementary_testql_la-test_scaling.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_scaling.c' object='elementary_testql_la-test_scaling.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_scaling.lo `test -f 'test_scaling.c' || echo '$(srcdir)/'`test_scaling.c

elementary_testql_la-test_scroller.lo: test_scroller.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_scroller.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_scroller.Tpo -c -o elementary_testql_la-test_scroller.lo `test -f 'test_scroller.c' || echo '$(srcdir)/'`test_scroller.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_scroller.Tpo $(DEPDIR)/elementary_testql_la-test_scroller.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_scroller.c' object='elementary_testql_la-test_scroller.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_scroller.lo `test -f 'test_scroller.c' || echo '$(srcdir)/'`test_scroller.c

elementary_testql_la-test_segment_control.lo: test_segment_control.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_segment_control.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_segment_control.Tpo -c -o elementary_testql_la-test_segment_control.lo `test -f 'test_segment_control.c' || echo '$(srcdir)/'`test_segment_control.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_segment_control.Tpo $(DEPDIR)/elementary_testql_la-test_segment_control.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_segment_control.c' object='elementary_testql_la-test_segment_control.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_segment_control.lo `test -f 'test_segment_control.c' || echo '$(srcdir)/'`test_segment_control.c

elementary_testql_la-test_separator.lo: test_separator.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_separator.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_separator.Tpo -c -o elementary_testql_la-test_separator.lo `test -f 'test_separator.c' || echo '$(srcdir)/'`test_separator.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_separator.Tpo $(DEPDIR)/elementary_testql_la-test_separator.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_separator.c' object='elementary_testql_la-test_separator.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_separator.lo `test -f 'test_separator.c' || echo '$(srcdir)/'`test_separator.c

elementary_testql_la-test_slider.lo: test_slider.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_slider.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_slider.Tpo -c -o elementary_testql_la-test_slider.lo `test -f 'test_slider.c' || echo '$(srcdir)/'`test_slider.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_slider.Tpo $(DEPDIR)/elementary_testql_la-test_slider.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_slider.c' object='elementary_testql_la-test_slider.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_slider.lo `test -f 'test_slider.c' || echo '$(srcdir)/'`test_slider.c

elementary_testql_la-test_slideshow.lo: test_slideshow.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_slideshow.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_slideshow.Tpo -c -o elementary_testql_la-test_slideshow.lo `test -f 'test_slideshow.c' || echo '$(srcdir)/'`test_slideshow.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_slideshow.Tpo $(DEPDIR)/elementary_testql_la-test_slideshow.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_slideshow.c' object='elementary_testql_la-test_slideshow.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_slideshow.lo `test -f 'test_slideshow.c' || echo '$(srcdir)/'`test_slideshow.c

elementary_testql_la-test_spinner.lo: test_spinner.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_spinner.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_spinner.Tpo -c -o elementary_testql_la-test_spinner.lo `test -f 'test_spinner.c' || echo '$(srcdir)/'`test_spinner.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_spinner.Tpo $(DEPDIR)/elementary_testql_la-test_spinner.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_spinner.c' object='elementary_testql_la-test_spinner.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_spinner.lo `test -f 'test_spinner.c' || echo '$(srcdir)/'`test_spinner.c

elementary_testql_la-test_store.lo: test_store.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_store.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_store.Tpo -c -o elementary_testql_la-test_store.lo `test -f 'test_store.c' || echo '$(srcdir)/'`test_store.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_store.Tpo $(DEPDIR)/elementary_testql_la-test_store.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_store.c' object='elementary_testql_la-test_store.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_store.lo `test -f 'test_store.c' || echo '$(srcdir)/'`test_store.c

elementary_testql_la-test_table.lo: test_table.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_table.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_table.Tpo -c -o elementary_testql_la-test_table.lo `test -f 'test_table.c' || echo '$(srcdir)/'`test_table.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_table.Tpo $(DEPDIR)/elementary_testql_la-test_table.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_table.c' object='elementary_testql_la-test_table.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_table.lo `test -f 'test_table.c' || echo '$(srcdir)/'`test_table.c

elementary_testql_la-test_thumb.lo: test_thumb.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_thumb.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_thumb.Tpo -c -o elementary_testql_la-test_thumb.lo `test -f 'test_thumb.c' || echo '$(srcdir)/'`test_thumb.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_thumb.Tpo $(DEPDIR)/elementary_testql_la-test_thumb.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_thumb.c' object='elementary_testql_la-test_thumb.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_thumb.lo `test -f 'test_thumb.c' || echo '$(srcdir)/'`test_thumb.c

elementary_testql_la-test_toolbar.lo: test_toolbar.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_toolbar.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_toolbar.Tpo -c -o elementary_testql_la-test_toolbar.lo `test -f 'test_toolbar.c' || echo '$(srcdir)/'`test_toolbar.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_toolbar.Tpo $(DEPDIR)/elementary_testql_la-test_toolbar.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_toolbar.c' object='elementary_testql_la-test_toolbar.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_toolbar.lo `test -f 'test_toolbar.c' || echo '$(srcdir)/'`test_toolbar.c

elementary_testql_la-test_tooltip.lo: test_tooltip.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_tooltip.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_tooltip.Tpo -c -o elementary_testql_la-test_tooltip.lo `test -f 'test_tooltip.c' || echo '$(srcdir)/'`test_tooltip.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_tooltip.Tpo $(DEPDIR)/elementary_testql_la-test_tooltip.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_tooltip.c' object='elementary_testql_la-test_tooltip.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_tooltip.lo `test -f 'test_tooltip.c' || echo '$(srcdir)/'`test_tooltip.c

elementary_testql_la-test_transit.lo: test_transit.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_transit.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_transit.Tpo -c -o elementary_testql_la-test_transit.lo `test -f 'test_transit.c' || echo '$(srcdir)/'`test_transit.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_transit.Tpo $(DEPDIR)/elementary_testql_la-test_transit.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_transit.c' object='elementary_testql_la-test_transit.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_transit.lo `test -f 'test_transit.c' || echo '$(srcdir)/'`test_transit.c

elementary_testql_la-test_video.lo: test_video.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_video.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_video.Tpo -c -o elementary_testql_la-test_video.lo `test -f 'test_video.c' || echo '$(srcdir)/'`test_video.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_video.Tpo $(DEPDIR)/elementary_testql_la-test_video.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_video.c' object='elementary_testql_la-test_video.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_video.lo `test -f 'test_video.c' || echo '$(srcdir)/'`test_video.c

elementary_testql_la-test_weather.lo: test_weather.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_weather.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_weather.Tpo -c -o elementary_testql_la-test_weather.lo `test -f 'test_weather.c' || echo '$(srcdir)/'`test_weather.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_weather.Tpo $(DEPDIR)/elementary_testql_la-test_weather.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_weather.c' object='elementary_testql_la-test_weather.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_weather.lo `test -f 'test_weather.c' || echo '$(srcdir)/'`test_weather.c

elementary_testql_la-test_web.lo: test_web.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_web.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_web.Tpo -c -o elementary_testql_la-test_web.lo `test -f 'test_web.c' || echo '$(srcdir)/'`test_web.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_web.Tpo $(DEPDIR)/elementary_testql_la-test_web.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_web.c' object='elementary_testql_la-test_web.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_web.lo `test -f 'test_web.c' || echo '$(srcdir)/'`test_web.c

elementary_testql_la-test_win_inline.lo: test_win_inline.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_win_inline.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_win_inline.Tpo -c -o elementary_testql_la-test_win_inline.lo `test -f 'test_win_inline.c' || echo '$(srcdir)/'`test_win_inline.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_win_inline.Tpo $(DEPDIR)/elementary_testql_la-test_win_inline.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_win_inline.c' object='elementary_testql_la-test_win_inline.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_win_inline.lo `test -f 'test_win_inline.c' || echo '$(srcdir)/'`test_win_inline.c

elementary_testql_la-test_win_socket.lo: test_win_socket.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_win_socket.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_win_socket.Tpo -c -o elementary_testql_la-test_win_socket.lo `test -f 'test_win_socket.c' || echo '$(srcdir)/'`test_win_socket.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_win_socket.Tpo $(DEPDIR)/elementary_testql_la-test_win_socket.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_win_socket.c' object='elementary_testql_la-test_win_socket.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_win_socket.lo `test -f 'test_win_socket.c' || echo '$(srcdir)/'`test_win_socket.c

elementary_testql_la-test_win_plug.lo: test_win_plug.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_win_plug.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_win_plug.Tpo -c -o elementary_testql_la-test_win_plug.lo `test -f 'test_win_plug.c' || echo '$(srcdir)/'`test_win_plug.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_win_plug.Tpo $(DEPDIR)/elementary_testql_la-test_win_plug.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_win_plug.c' object='elementary_testql_la-test_win_plug.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_win_plug.lo `test -f 'test_win_plug.c' || echo '$(srcdir)/'`test_win_plug.c

elementary_testql_la-test_win_state.lo: test_win_state.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_win_state.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_win_state.Tpo -c -o elementary_testql_la-test_win_state.lo `test -f 'test_win_state.c' || echo '$(srcdir)/'`test_win_state.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_win_state.Tpo $(DEPDIR)/elementary_testql_la-test_win_state.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_win_state.c' object='elementary_testql_la-test_win_state.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_win_state.lo `test -f 'test_win_state.c' || echo '$(srcdir)/'`test_win_state.c

elementary_testql_la-test_eio.lo: test_eio.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) $(elementary_testql_la_CFLAGS) $(CFLAGS) -MT elementary_testql_la-test_eio.lo -MD -MP -MF $(DEPDIR)/elementary_testql_la-test_eio.Tpo -c -o elementary_testql_la-test_eio.lo `test -f 'test_eio.c' || echo '$(srcdir)/'`test_eio.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/elementary_testql_la-test_eio.Tpo $(DEPDIR)/elementary_testql_la-test_eio.Plo
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_eio.c' object='elementary_testql_la-test_eio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(elementary_testql_la_CFLAGS) $(CFLAGS) -c -o elementary_testql_la-test_eio.lo `test -f 'test_eio.c' || echo '$(srcdir)/'`test_eio.c

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	mkid -fID $$unique
tags: TAGS

TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	set x; \
	here=`pwd`; \
	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	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
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	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"

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:
	for dir in "$(DESTDIR)$(elementary_testqldir)" "$(DESTDIR)$(bindir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
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:
	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	  `test -z '$(STRIP)' || \
	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
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."
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-am

clean-am: clean-binPROGRAMS clean-elementary_testqlLTLIBRARIES \
	clean-generic clean-libtool 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-elementary_testqlLTLIBRARIES

install-dvi: install-dvi-am

install-dvi-am:

install-exec-am: install-binPROGRAMS

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: uninstall-binPROGRAMS \
	uninstall-elementary_testqlLTLIBRARIES

.MAKE: install-am install-strip

.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
	clean-elementary_testqlLTLIBRARIES clean-generic clean-libtool \
	ctags distclean distclean-compile distclean-generic \
	distclean-libtool distclean-tags distdir dvi dvi-am html \
	html-am info info-am install install-am install-binPROGRAMS \
	install-data install-data-am install-dvi install-dvi-am \
	install-elementary_testqlLTLIBRARIES 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 uninstall uninstall-am uninstall-binPROGRAMS \
	uninstall-elementary_testqlLTLIBRARIES


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