~ubuntu-branches/ubuntu/trusty/bluez/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
# Makefile.in generated by automake 1.11.3 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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 = $(am__EXEEXT_1) $(am__EXEEXT_2) $(am__EXEEXT_3) \
	$(am__EXEEXT_4) $(am__EXEEXT_5) $(am__EXEEXT_6) \
	$(am__EXEEXT_7)
sbin_PROGRAMS = src/bluetoothd$(EXEEXT) $(am__EXEEXT_14) \
	$(am__EXEEXT_15) $(am__EXEEXT_16)
noinst_PROGRAMS = $(am__EXEEXT_8) $(am__EXEEXT_9) $(am__EXEEXT_10) \
	$(am__EXEEXT_11) $(am__EXEEXT_13)
@SBC_TRUE@am__append_1 = sbc/libsbc.la
@SBC_TRUE@am__append_2 = sbc/sbcinfo sbc/sbcdec sbc/sbcenc
@SBC_TRUE@@SNDFILE_TRUE@am__append_3 = sbc/sbctester
@MCAP_TRUE@am__append_4 = health/mcap_lib.h health/mcap_internal.h \
@MCAP_TRUE@		health/mcap.h health/mcap.c \
@MCAP_TRUE@		health/mcap_sync.c

@PNATPLUGIN_TRUE@am__append_5 = pnat
@PNATPLUGIN_TRUE@am__append_6 = plugins/pnat.c
@AUDIOPLUGIN_TRUE@am__append_7 = audio
@AUDIOPLUGIN_TRUE@am__append_8 = audio/main.c \
@AUDIOPLUGIN_TRUE@			audio/manager.h audio/manager.c \
@AUDIOPLUGIN_TRUE@			audio/gateway.h audio/gateway.c \
@AUDIOPLUGIN_TRUE@			audio/headset.h audio/headset.c \
@AUDIOPLUGIN_TRUE@			audio/control.h audio/control.c \
@AUDIOPLUGIN_TRUE@			audio/avctp.h audio/avctp.c \
@AUDIOPLUGIN_TRUE@			audio/avrcp.h audio/avrcp.c \
@AUDIOPLUGIN_TRUE@			audio/device.h audio/device.c \
@AUDIOPLUGIN_TRUE@			audio/source.h audio/source.c \
@AUDIOPLUGIN_TRUE@			audio/sink.h audio/sink.c \
@AUDIOPLUGIN_TRUE@			audio/a2dp.h audio/a2dp.c \
@AUDIOPLUGIN_TRUE@			audio/avdtp.h audio/avdtp.c \
@AUDIOPLUGIN_TRUE@			audio/ipc.h audio/ipc.c \
@AUDIOPLUGIN_TRUE@			audio/unix.h audio/unix.c \
@AUDIOPLUGIN_TRUE@			audio/media.h audio/media.c \
@AUDIOPLUGIN_TRUE@			audio/transport.h audio/transport.c \
@AUDIOPLUGIN_TRUE@			audio/telephony.h audio/a2dp-codecs.h

@AUDIOPLUGIN_TRUE@am__append_9 = audio/telephony.c
@AUDIOPLUGIN_TRUE@am__append_10 = audio/libtelephony.a
@SAPPLUGIN_TRUE@am__append_11 = sap
@SAPPLUGIN_TRUE@am__append_12 = sap/main.c \
@SAPPLUGIN_TRUE@			sap/manager.h sap/manager.c \
@SAPPLUGIN_TRUE@			sap/server.h sap/server.c \
@SAPPLUGIN_TRUE@			sap/sap.h

@SAPPLUGIN_TRUE@am__append_13 = sap/sap.c
@SAPPLUGIN_TRUE@am__append_14 = sap/libsap.a
@INPUTPLUGIN_TRUE@am__append_15 = input
@INPUTPLUGIN_TRUE@am__append_16 = input/main.c \
@INPUTPLUGIN_TRUE@			input/manager.h input/manager.c \
@INPUTPLUGIN_TRUE@			input/server.h input/server.c \
@INPUTPLUGIN_TRUE@			input/device.h input/device.c \
@INPUTPLUGIN_TRUE@			input/fakehid.c input/fakehid.h

@SERIALPLUGIN_TRUE@am__append_17 = serial
@SERIALPLUGIN_TRUE@am__append_18 = serial/main.c \
@SERIALPLUGIN_TRUE@			serial/manager.h serial/manager.c \
@SERIALPLUGIN_TRUE@			serial/proxy.h serial/proxy.c \
@SERIALPLUGIN_TRUE@			serial/port.h serial/port.c

@NETWORKPLUGIN_TRUE@am__append_19 = network
@NETWORKPLUGIN_TRUE@am__append_20 = network/main.c \
@NETWORKPLUGIN_TRUE@			network/manager.h network/manager.c \
@NETWORKPLUGIN_TRUE@			network/common.h network/common.c \
@NETWORKPLUGIN_TRUE@			network/server.h network/server.c \
@NETWORKPLUGIN_TRUE@			network/connection.h network/connection.c

@SERVICEPLUGIN_TRUE@am__append_21 = service
@SERVICEPLUGIN_TRUE@am__append_22 = plugins/service.c
@HEALTHPLUGIN_TRUE@am__append_23 = health
@HEALTHPLUGIN_TRUE@am__append_24 = health/hdp_main.c health/hdp_types.h \
@HEALTHPLUGIN_TRUE@			health/hdp_manager.h health/hdp_manager.c \
@HEALTHPLUGIN_TRUE@			health/hdp.h health/hdp.c \
@HEALTHPLUGIN_TRUE@			health/hdp_util.h health/hdp_util.c

@GATTMODULES_TRUE@am__append_25 = thermometer alert time gatt_example proximity \
@GATTMODULES_TRUE@			deviceinfo

@GATTMODULES_TRUE@am__append_26 = thermometer/main.c \
@GATTMODULES_TRUE@			thermometer/manager.h thermometer/manager.c \
@GATTMODULES_TRUE@			thermometer/thermometer.h thermometer/thermometer.c \
@GATTMODULES_TRUE@			alert/main.c alert/server.h alert/server.c \
@GATTMODULES_TRUE@			time/main.c time/server.h time/server.c \
@GATTMODULES_TRUE@			plugins/gatt-example.c \
@GATTMODULES_TRUE@			proximity/main.c proximity/manager.h proximity/manager.c \
@GATTMODULES_TRUE@			proximity/monitor.h proximity/monitor.c \
@GATTMODULES_TRUE@			proximity/reporter.h proximity/reporter.c \
@GATTMODULES_TRUE@			proximity/linkloss.h proximity/linkloss.c \
@GATTMODULES_TRUE@			proximity/immalert.h proximity/immalert.c \
@GATTMODULES_TRUE@			deviceinfo/main.c \
@GATTMODULES_TRUE@			deviceinfo/manager.h deviceinfo/manager.c \
@GATTMODULES_TRUE@			deviceinfo/deviceinfo.h deviceinfo/deviceinfo.c

@HAL_TRUE@am__append_27 = hal
@HAL_TRUE@am__append_28 = plugins/hal.c
@HAL_FALSE@am__append_29 = formfactor
@HAL_FALSE@am__append_30 = plugins/formfactor.c
@WIIMOTEPLUGIN_TRUE@am__append_31 = wiimote
@WIIMOTEPLUGIN_TRUE@am__append_32 = plugins/wiimote.c
@MAEMO6PLUGIN_TRUE@am__append_33 = maemo6
@MAEMO6PLUGIN_TRUE@am__append_34 = plugins/maemo6.c
@DBUSOOBPLUGIN_TRUE@am__append_35 = dbusoob
@DBUSOOBPLUGIN_TRUE@am__append_36 = plugins/dbusoob.c
@MAINTAINER_MODE_TRUE@am__append_37 = plugins/external-dummy.la
DIST_COMMON = README $(am__configure_deps) \
	$(am__dist_udev_SCRIPTS_DIST) $(dist_man_MANS) \
	$(include_HEADERS) $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
	$(srcdir)/Makefile.tools $(srcdir)/bluez.pc.in \
	$(srcdir)/config.h.in $(top_srcdir)/configure \
	$(top_srcdir)/doc/version.xml.in \
	$(top_srcdir)/src/bluetooth.service.in \
	$(top_srcdir)/src/bluetoothd.8.in AUTHORS COPYING COPYING.LIB \
	ChangeLog INSTALL NEWS TODO compile config.guess config.sub \
	depcomp install-sh ltmain.sh missing tools/lexer.c \
	tools/parser.c tools/parser.h ylwrap
@DATAFILES_TRUE@@TOOLS_TRUE@am__append_38 = tools/rfcomm.conf
@TOOLS_TRUE@am__append_39 = tools/rfcomm tools/l2ping \
@TOOLS_TRUE@				tools/hcitool tools/sdptool tools/ciptool

@TOOLS_TRUE@am__append_40 = tools/hciattach tools/hciconfig
@TOOLS_TRUE@am__append_41 = tools/avinfo tools/ppporc \
@TOOLS_TRUE@	tools/hcieventmask tools/hcisecfilter mgmt/btmgmt \
@TOOLS_TRUE@	monitor/btmon emulator/btvirt
@READLINE_TRUE@@TOOLS_TRUE@am__append_42 = attrib/gatttool
@TOOLS_TRUE@am__append_43 = tools/rfcomm.1 tools/l2ping.8 \
@TOOLS_TRUE@			tools/hciattach.8 tools/hciconfig.8 \
@TOOLS_TRUE@			tools/hcitool.1 tools/sdptool.1 tools/ciptool.1

@TOOLS_FALSE@am__append_44 = tools/rfcomm.1 tools/l2ping.8 \
@TOOLS_FALSE@			tools/hciattach.8 tools/hciconfig.8 \
@TOOLS_FALSE@			tools/hcitool.1 tools/sdptool.1 tools/ciptool.1

@BCCMD_TRUE@am__append_45 = tools/bccmd
@BCCMD_TRUE@@USB_TRUE@am__append_46 = tools/csr_usb.c
@BCCMD_TRUE@@USB_TRUE@am__append_47 = @USB_LIBS@
@BCCMD_TRUE@am__append_48 = tools/bccmd.8
@BCCMD_FALSE@am__append_49 = tools/bccmd.8
@HID2HCI_TRUE@udev_PROGRAMS = tools/hid2hci$(EXEEXT)
@HID2HCI_TRUE@am__append_50 = tools/hid2hci.8
@HID2HCI_FALSE@am__append_51 = tools/hid2hci.8
@DFUTOOL_TRUE@am__append_52 = tools/dfutool
@DFUTOOL_TRUE@am__append_53 = tools/dfutool.1
@DFUTOOL_FALSE@am__append_54 = tools/dfutool.1
@USB_TRUE@am__append_55 = tools/dfubabel tools/avctrl
@CUPS_TRUE@cups_PROGRAMS = cups/bluetooth$(EXEEXT)
@TEST_TRUE@am__append_56 = test/hciemu
@TEST_TRUE@am__append_57 = test/l2test test/rctest
@TEST_TRUE@am__append_58 = test/gaptest test/sdptest test/scotest \
@TEST_TRUE@	test/attest test/hstest test/avtest test/ipctest \
@TEST_TRUE@	test/lmptest test/bdaddr test/agent test/btiotest \
@TEST_TRUE@	test/test-textfile test/uuidtest test/mpris-player \
@TEST_TRUE@	$(unit_tests)
@TEST_TRUE@am__append_59 = test/rctest.1 test/hciemu.1
@TEST_TRUE@am__append_60 = test/bdaddr.8
@TEST_FALSE@am__append_61 = test/rctest.1 test/hciemu.1 test/bdaddr.8
@HIDD_TRUE@am__append_62 = compat/hidd
@HIDD_TRUE@am__append_63 = compat/hidd.1
@HIDD_FALSE@am__append_64 = compat/hidd.1
@PAND_TRUE@am__append_65 = compat/pand
@PAND_TRUE@am__append_66 = compat/pand.1
@PAND_FALSE@am__append_67 = compat/pand.1
@DUND_TRUE@am__append_68 = compat/dund
@DUND_TRUE@am__append_69 = compat/dund.1
@DUND_FALSE@am__append_70 = compat/dund.1
@DATAFILES_TRUE@@HID2HCI_TRUE@am__append_71 = scripts/bluetooth-hid2hci.rules
@DATAFILES_TRUE@@PCMCIA_TRUE@am__append_72 = scripts/bluetooth-serial.rules
@MCAP_TRUE@am__append_73 = -I$(builddir)/health
@TEST_TRUE@am__append_74 = $(unit_test_eir_OBJECTS)
TESTS = $(am__EXEEXT_12)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES = doc/version.xml src/bluetoothd.8 \
	src/bluetooth.service bluez.pc
CONFIG_CLEAN_VPATH_FILES =
LIBRARIES = $(noinst_LIBRARIES)
ARFLAGS = cru
AM_V_AR = $(am__v_AR_@AM_V@)
am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)
am__v_AR_0 = @echo "  AR    " $@;
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
audio_libtelephony_a_AR = $(AR) $(ARFLAGS)
audio_libtelephony_a_LIBADD =
am__audio_libtelephony_a_SOURCES_DIST = audio/telephony.h \
	audio/telephony-dummy.c audio/telephony-maemo5.c \
	audio/telephony-ofono.c audio/telephony-maemo6.c
am__dirstamp = $(am__leading_dot)dirstamp
@AUDIOPLUGIN_TRUE@am_audio_libtelephony_a_OBJECTS =  \
@AUDIOPLUGIN_TRUE@	audio/telephony-dummy.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/telephony-maemo5.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/telephony-ofono.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/telephony-maemo6.$(OBJEXT)
audio_libtelephony_a_OBJECTS = $(am_audio_libtelephony_a_OBJECTS)
sap_libsap_a_AR = $(AR) $(ARFLAGS)
sap_libsap_a_LIBADD =
am__sap_libsap_a_SOURCES_DIST = sap/sap.h sap/sap-dummy.c \
	sap/sap-u8500.c
@SAPPLUGIN_TRUE@am_sap_libsap_a_OBJECTS = sap/sap-dummy.$(OBJEXT) \
@SAPPLUGIN_TRUE@	sap/sap-u8500.$(OBJEXT)
sap_libsap_a_OBJECTS = $(am_sap_libsap_a_OBJECTS)
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
  test -z "$$files" \
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
         $(am__cd) "$$dir" && rm -f $$files; }; \
  }
am__installdirs = "$(DESTDIR)$(alsadir)" "$(DESTDIR)$(gstreamerdir)" \
	"$(DESTDIR)$(libdir)" "$(DESTDIR)$(plugindir)" \
	"$(DESTDIR)$(bindir)" "$(DESTDIR)$(cupsdir)" \
	"$(DESTDIR)$(sbindir)" "$(DESTDIR)$(udevdir)" \
	"$(DESTDIR)$(udevdir)" "$(DESTDIR)$(man1dir)" \
	"$(DESTDIR)$(man8dir)" "$(DESTDIR)$(alsaconfdir)" \
	"$(DESTDIR)$(confdir)" "$(DESTDIR)$(dbusdir)" \
	"$(DESTDIR)$(dbusservicedir)" "$(DESTDIR)$(pkgconfigdir)" \
	"$(DESTDIR)$(rulesdir)" "$(DESTDIR)$(statedir)" \
	"$(DESTDIR)$(systemdunitdir)" "$(DESTDIR)$(includedir)"
LTLIBRARIES = $(alsa_LTLIBRARIES) $(gstreamer_LTLIBRARIES) \
	$(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) $(plugin_LTLIBRARIES)
@ALSA_TRUE@audio_libasound_module_ctl_bluetooth_la_DEPENDENCIES =  \
@ALSA_TRUE@	lib/libbluetooth-private.la
am__audio_libasound_module_ctl_bluetooth_la_SOURCES_DIST =  \
	audio/ctl_bluetooth.c audio/rtp.h audio/ipc.h audio/ipc.c
@ALSA_TRUE@am_audio_libasound_module_ctl_bluetooth_la_OBJECTS = audio/audio_libasound_module_ctl_bluetooth_la-ctl_bluetooth.lo \
@ALSA_TRUE@	audio/audio_libasound_module_ctl_bluetooth_la-ipc.lo
audio_libasound_module_ctl_bluetooth_la_OBJECTS =  \
	$(am_audio_libasound_module_ctl_bluetooth_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
audio_libasound_module_ctl_bluetooth_la_LINK = $(LIBTOOL) $(AM_V_lt) \
	--tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
	$(CCLD) $(audio_libasound_module_ctl_bluetooth_la_CFLAGS) \
	$(CFLAGS) $(audio_libasound_module_ctl_bluetooth_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@ALSA_TRUE@am_audio_libasound_module_ctl_bluetooth_la_rpath = -rpath \
@ALSA_TRUE@	$(alsadir)
@ALSA_TRUE@audio_libasound_module_pcm_bluetooth_la_DEPENDENCIES =  \
@ALSA_TRUE@	sbc/libsbc.la lib/libbluetooth-private.la
am__audio_libasound_module_pcm_bluetooth_la_SOURCES_DIST =  \
	audio/pcm_bluetooth.c audio/rtp.h audio/ipc.h audio/ipc.c
@ALSA_TRUE@am_audio_libasound_module_pcm_bluetooth_la_OBJECTS = audio/audio_libasound_module_pcm_bluetooth_la-pcm_bluetooth.lo \
@ALSA_TRUE@	audio/audio_libasound_module_pcm_bluetooth_la-ipc.lo
audio_libasound_module_pcm_bluetooth_la_OBJECTS =  \
	$(am_audio_libasound_module_pcm_bluetooth_la_OBJECTS)
audio_libasound_module_pcm_bluetooth_la_LINK = $(LIBTOOL) $(AM_V_lt) \
	--tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
	$(CCLD) $(audio_libasound_module_pcm_bluetooth_la_CFLAGS) \
	$(CFLAGS) $(audio_libasound_module_pcm_bluetooth_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@ALSA_TRUE@am_audio_libasound_module_pcm_bluetooth_la_rpath = -rpath \
@ALSA_TRUE@	$(alsadir)
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@audio_libgstbluetooth_la_DEPENDENCIES =  \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	sbc/libsbc.la \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	lib/libbluetooth-private.la
am__audio_libgstbluetooth_la_SOURCES_DIST = audio/gstbluetooth.c \
	audio/gstpragma.h audio/gstsbcenc.h audio/gstsbcenc.c \
	audio/gstsbcdec.h audio/gstsbcdec.c audio/gstsbcparse.h \
	audio/gstsbcparse.c audio/gstavdtpsink.h audio/gstavdtpsink.c \
	audio/gsta2dpsink.h audio/gsta2dpsink.c audio/gstsbcutil.h \
	audio/gstsbcutil.c audio/gstrtpsbcpay.h audio/gstrtpsbcpay.c \
	audio/rtp.h audio/ipc.h audio/ipc.c
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@am_audio_libgstbluetooth_la_OBJECTS = audio/audio_libgstbluetooth_la-gstbluetooth.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-gstsbcenc.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-gstsbcdec.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-gstsbcparse.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-gstavdtpsink.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-gsta2dpsink.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-gstsbcutil.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-gstrtpsbcpay.lo \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	audio/audio_libgstbluetooth_la-ipc.lo
audio_libgstbluetooth_la_OBJECTS =  \
	$(am_audio_libgstbluetooth_la_OBJECTS)
audio_libgstbluetooth_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(audio_libgstbluetooth_la_CFLAGS) $(CFLAGS) \
	$(audio_libgstbluetooth_la_LDFLAGS) $(LDFLAGS) -o $@
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@am_audio_libgstbluetooth_la_rpath =  \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@	-rpath $(gstreamerdir)
lib_libbluetooth_private_la_LIBADD =
am__objects_1 =
am__objects_2 = $(am__objects_1) lib/bluetooth.lo lib/hci.lo \
	lib/sdp.lo lib/uuid.lo
am_lib_libbluetooth_private_la_OBJECTS = $(am__objects_2)
lib_libbluetooth_private_la_OBJECTS =  \
	$(am_lib_libbluetooth_private_la_OBJECTS)
lib_libbluetooth_la_LIBADD =
am_lib_libbluetooth_la_OBJECTS = $(am__objects_1) lib/bluetooth.lo \
	lib/hci.lo lib/sdp.lo lib/uuid.lo
lib_libbluetooth_la_OBJECTS = $(am_lib_libbluetooth_la_OBJECTS)
lib_libbluetooth_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(lib_libbluetooth_la_LDFLAGS) \
	$(LDFLAGS) -o $@
plugins_external_dummy_la_LIBADD =
am__plugins_external_dummy_la_SOURCES_DIST = plugins/external-dummy.c
@MAINTAINER_MODE_TRUE@am_plugins_external_dummy_la_OBJECTS = plugins/plugins_external_dummy_la-external-dummy.lo
plugins_external_dummy_la_OBJECTS =  \
	$(am_plugins_external_dummy_la_OBJECTS)
plugins_external_dummy_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(plugins_external_dummy_la_CFLAGS) $(CFLAGS) \
	$(plugins_external_dummy_la_LDFLAGS) $(LDFLAGS) -o $@
@MAINTAINER_MODE_TRUE@am_plugins_external_dummy_la_rpath = -rpath \
@MAINTAINER_MODE_TRUE@	$(plugindir)
sbc_libsbc_la_LIBADD =
am__sbc_libsbc_la_SOURCES_DIST = sbc/sbc.h sbc/sbc.c sbc/sbc_math.h \
	sbc/sbc_tables.h sbc/sbc_primitives.h sbc/sbc_primitives.c \
	sbc/sbc_primitives_mmx.h sbc/sbc_primitives_mmx.c \
	sbc/sbc_primitives_iwmmxt.h sbc/sbc_primitives_iwmmxt.c \
	sbc/sbc_primitives_neon.h sbc/sbc_primitives_neon.c \
	sbc/sbc_primitives_armv6.h sbc/sbc_primitives_armv6.c
@SBC_TRUE@am_sbc_libsbc_la_OBJECTS = sbc/sbc_libsbc_la-sbc.lo \
@SBC_TRUE@	sbc/sbc_libsbc_la-sbc_primitives.lo \
@SBC_TRUE@	sbc/sbc_libsbc_la-sbc_primitives_mmx.lo \
@SBC_TRUE@	sbc/sbc_libsbc_la-sbc_primitives_iwmmxt.lo \
@SBC_TRUE@	sbc/sbc_libsbc_la-sbc_primitives_neon.lo \
@SBC_TRUE@	sbc/sbc_libsbc_la-sbc_primitives_armv6.lo
sbc_libsbc_la_OBJECTS = $(am_sbc_libsbc_la_OBJECTS)
sbc_libsbc_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(sbc_libsbc_la_CFLAGS) \
	$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
@SBC_TRUE@am_sbc_libsbc_la_rpath =
@TOOLS_TRUE@am__EXEEXT_1 = tools/rfcomm$(EXEEXT) tools/l2ping$(EXEEXT) \
@TOOLS_TRUE@	tools/hcitool$(EXEEXT) tools/sdptool$(EXEEXT) \
@TOOLS_TRUE@	tools/ciptool$(EXEEXT)
@READLINE_TRUE@@TOOLS_TRUE@am__EXEEXT_2 = attrib/gatttool$(EXEEXT)
@DFUTOOL_TRUE@am__EXEEXT_3 = tools/dfutool$(EXEEXT)
@TEST_TRUE@am__EXEEXT_4 = test/l2test$(EXEEXT) test/rctest$(EXEEXT)
@HIDD_TRUE@am__EXEEXT_5 = compat/hidd$(EXEEXT)
@PAND_TRUE@am__EXEEXT_6 = compat/pand$(EXEEXT)
@DUND_TRUE@am__EXEEXT_7 = compat/dund$(EXEEXT)
@SBC_TRUE@am__EXEEXT_8 = sbc/sbcinfo$(EXEEXT) sbc/sbcdec$(EXEEXT) \
@SBC_TRUE@	sbc/sbcenc$(EXEEXT)
@SBC_TRUE@@SNDFILE_TRUE@am__EXEEXT_9 = sbc/sbctester$(EXEEXT)
@TOOLS_TRUE@am__EXEEXT_10 = tools/avinfo$(EXEEXT) \
@TOOLS_TRUE@	tools/ppporc$(EXEEXT) tools/hcieventmask$(EXEEXT) \
@TOOLS_TRUE@	tools/hcisecfilter$(EXEEXT) mgmt/btmgmt$(EXEEXT) \
@TOOLS_TRUE@	monitor/btmon$(EXEEXT) emulator/btvirt$(EXEEXT)
@USB_TRUE@am__EXEEXT_11 = tools/dfubabel$(EXEEXT) \
@USB_TRUE@	tools/avctrl$(EXEEXT)
@TEST_TRUE@am__EXEEXT_12 = unit/test-eir$(EXEEXT)
@TEST_TRUE@am__EXEEXT_13 = test/gaptest$(EXEEXT) test/sdptest$(EXEEXT) \
@TEST_TRUE@	test/scotest$(EXEEXT) test/attest$(EXEEXT) \
@TEST_TRUE@	test/hstest$(EXEEXT) test/avtest$(EXEEXT) \
@TEST_TRUE@	test/ipctest$(EXEEXT) test/lmptest$(EXEEXT) \
@TEST_TRUE@	test/bdaddr$(EXEEXT) test/agent$(EXEEXT) \
@TEST_TRUE@	test/btiotest$(EXEEXT) test/test-textfile$(EXEEXT) \
@TEST_TRUE@	test/uuidtest$(EXEEXT) test/mpris-player$(EXEEXT) \
@TEST_TRUE@	$(am__EXEEXT_12)
@TOOLS_TRUE@am__EXEEXT_14 = tools/hciattach$(EXEEXT) \
@TOOLS_TRUE@	tools/hciconfig$(EXEEXT)
@BCCMD_TRUE@am__EXEEXT_15 = tools/bccmd$(EXEEXT)
@TEST_TRUE@am__EXEEXT_16 = test/hciemu$(EXEEXT)
PROGRAMS = $(bin_PROGRAMS) $(cups_PROGRAMS) $(noinst_PROGRAMS) \
	$(sbin_PROGRAMS) $(udev_PROGRAMS)
am__attrib_gatttool_SOURCES_DIST = attrib/gatttool.c attrib/att.c \
	attrib/gatt.c attrib/gattrib.c btio/btio.c attrib/gatttool.h \
	attrib/interactive.c attrib/utils.c src/log.c
@READLINE_TRUE@@TOOLS_TRUE@am_attrib_gatttool_OBJECTS =  \
@READLINE_TRUE@@TOOLS_TRUE@	attrib/gatttool.$(OBJEXT) \
@READLINE_TRUE@@TOOLS_TRUE@	attrib/att.$(OBJEXT) \
@READLINE_TRUE@@TOOLS_TRUE@	attrib/gatt.$(OBJEXT) \
@READLINE_TRUE@@TOOLS_TRUE@	attrib/gattrib.$(OBJEXT) \
@READLINE_TRUE@@TOOLS_TRUE@	btio/btio.$(OBJEXT) \
@READLINE_TRUE@@TOOLS_TRUE@	attrib/interactive.$(OBJEXT) \
@READLINE_TRUE@@TOOLS_TRUE@	attrib/utils.$(OBJEXT) \
@READLINE_TRUE@@TOOLS_TRUE@	src/log.$(OBJEXT)
attrib_gatttool_OBJECTS = $(am_attrib_gatttool_OBJECTS)
@READLINE_TRUE@@TOOLS_TRUE@attrib_gatttool_DEPENDENCIES =  \
@READLINE_TRUE@@TOOLS_TRUE@	lib/libbluetooth-private.la
am__compat_dund_SOURCES_DIST = compat/dund.c compat/dund.h \
	compat/lib.h compat/sdp.h compat/sdp.c compat/dun.c \
	compat/msdun.c src/textfile.h src/textfile.c
@DUND_TRUE@am_compat_dund_OBJECTS = compat/dund.$(OBJEXT) \
@DUND_TRUE@	compat/sdp.$(OBJEXT) compat/dun.$(OBJEXT) \
@DUND_TRUE@	compat/msdun.$(OBJEXT) src/textfile.$(OBJEXT)
compat_dund_OBJECTS = $(am_compat_dund_OBJECTS)
@DUND_TRUE@compat_dund_DEPENDENCIES = lib/libbluetooth-private.la
am__compat_hidd_SOURCES_DIST = compat/hidd.c compat/hidd.h \
	src/uinput.h compat/sdp.h compat/sdp.c compat/fakehid.c \
	src/textfile.h src/textfile.c
@HIDD_TRUE@am_compat_hidd_OBJECTS = compat/hidd.$(OBJEXT) \
@HIDD_TRUE@	compat/sdp.$(OBJEXT) compat/fakehid.$(OBJEXT) \
@HIDD_TRUE@	src/textfile.$(OBJEXT)
compat_hidd_OBJECTS = $(am_compat_hidd_OBJECTS)
@HIDD_TRUE@compat_hidd_DEPENDENCIES = lib/libbluetooth-private.la
am__compat_pand_SOURCES_DIST = compat/pand.c compat/pand.h \
	compat/bnep.c compat/sdp.h compat/sdp.c src/textfile.h \
	src/textfile.c
@PAND_TRUE@am_compat_pand_OBJECTS = compat/pand.$(OBJEXT) \
@PAND_TRUE@	compat/bnep.$(OBJEXT) compat/sdp.$(OBJEXT) \
@PAND_TRUE@	src/textfile.$(OBJEXT)
compat_pand_OBJECTS = $(am_compat_pand_OBJECTS)
@PAND_TRUE@compat_pand_DEPENDENCIES = lib/libbluetooth-private.la
am__cups_bluetooth_SOURCES_DIST = gdbus/gdbus.h gdbus/mainloop.c \
	gdbus/watch.c gdbus/object.c gdbus/polkit.c cups/main.c \
	cups/cups.h cups/sdp.c cups/spp.c cups/hcrp.c
am__objects_3 = gdbus/mainloop.$(OBJEXT) gdbus/watch.$(OBJEXT) \
	gdbus/object.$(OBJEXT) gdbus/polkit.$(OBJEXT)
@CUPS_TRUE@am_cups_bluetooth_OBJECTS = $(am__objects_3) \
@CUPS_TRUE@	cups/main.$(OBJEXT) cups/sdp.$(OBJEXT) \
@CUPS_TRUE@	cups/spp.$(OBJEXT) cups/hcrp.$(OBJEXT)
cups_bluetooth_OBJECTS = $(am_cups_bluetooth_OBJECTS)
@CUPS_TRUE@cups_bluetooth_DEPENDENCIES = lib/libbluetooth-private.la
am__emulator_btvirt_SOURCES_DIST = emulator/main.c monitor/bt.h \
	monitor/mainloop.h monitor/mainloop.c emulator/server.h \
	emulator/server.c emulator/vhci.h emulator/vhci.c \
	emulator/btdev.h emulator/btdev.c
@TOOLS_TRUE@am_emulator_btvirt_OBJECTS = emulator/main.$(OBJEXT) \
@TOOLS_TRUE@	monitor/mainloop.$(OBJEXT) \
@TOOLS_TRUE@	emulator/server.$(OBJEXT) emulator/vhci.$(OBJEXT) \
@TOOLS_TRUE@	emulator/btdev.$(OBJEXT)
emulator_btvirt_OBJECTS = $(am_emulator_btvirt_OBJECTS)
emulator_btvirt_LDADD = $(LDADD)
am__mgmt_btmgmt_SOURCES_DIST = mgmt/main.c src/glib-helper.c
@TOOLS_TRUE@am_mgmt_btmgmt_OBJECTS = mgmt/main.$(OBJEXT) \
@TOOLS_TRUE@	src/glib-helper.$(OBJEXT)
mgmt_btmgmt_OBJECTS = $(am_mgmt_btmgmt_OBJECTS)
@TOOLS_TRUE@mgmt_btmgmt_DEPENDENCIES = lib/libbluetooth-private.la
am__monitor_btmon_SOURCES_DIST = monitor/main.c monitor/bt.h \
	monitor/mainloop.h monitor/mainloop.c monitor/hcidump.h \
	monitor/hcidump.c monitor/btsnoop.h monitor/btsnoop.c \
	monitor/control.h monitor/control.c monitor/packet.h \
	monitor/packet.c
@TOOLS_TRUE@am_monitor_btmon_OBJECTS = monitor/main.$(OBJEXT) \
@TOOLS_TRUE@	monitor/mainloop.$(OBJEXT) \
@TOOLS_TRUE@	monitor/hcidump.$(OBJEXT) \
@TOOLS_TRUE@	monitor/btsnoop.$(OBJEXT) \
@TOOLS_TRUE@	monitor/control.$(OBJEXT) monitor/packet.$(OBJEXT)
monitor_btmon_OBJECTS = $(am_monitor_btmon_OBJECTS)
@TOOLS_TRUE@monitor_btmon_DEPENDENCIES = lib/libbluetooth-private.la
am__sbc_sbcdec_SOURCES_DIST = sbc/sbcdec.c sbc/formats.h
@SBC_TRUE@am_sbc_sbcdec_OBJECTS = sbc/sbcdec.$(OBJEXT)
sbc_sbcdec_OBJECTS = $(am_sbc_sbcdec_OBJECTS)
@SBC_TRUE@sbc_sbcdec_DEPENDENCIES = sbc/libsbc.la
am__sbc_sbcenc_SOURCES_DIST = sbc/sbcenc.c sbc/formats.h
@SBC_TRUE@am_sbc_sbcenc_OBJECTS = sbc/sbcenc.$(OBJEXT)
sbc_sbcenc_OBJECTS = $(am_sbc_sbcenc_OBJECTS)
@SBC_TRUE@sbc_sbcenc_DEPENDENCIES = sbc/libsbc.la
sbc_sbcinfo_SOURCES = sbc/sbcinfo.c
sbc_sbcinfo_OBJECTS = sbc/sbcinfo.$(OBJEXT)
sbc_sbcinfo_LDADD = $(LDADD)
sbc_sbctester_SOURCES = sbc/sbctester.c
sbc_sbctester_OBJECTS = sbc/sbctester.$(OBJEXT)
sbc_sbctester_DEPENDENCIES =
am__src_bluetoothd_SOURCES_DIST = gdbus/gdbus.h gdbus/mainloop.c \
	gdbus/watch.c gdbus/object.c gdbus/polkit.c plugins/pnat.c \
	audio/main.c audio/manager.h audio/manager.c audio/gateway.h \
	audio/gateway.c audio/headset.h audio/headset.c \
	audio/control.h audio/control.c audio/avctp.h audio/avctp.c \
	audio/avrcp.h audio/avrcp.c audio/device.h audio/device.c \
	audio/source.h audio/source.c audio/sink.h audio/sink.c \
	audio/a2dp.h audio/a2dp.c audio/avdtp.h audio/avdtp.c \
	audio/ipc.h audio/ipc.c audio/unix.h audio/unix.c \
	audio/media.h audio/media.c audio/transport.h \
	audio/transport.c audio/telephony.h audio/a2dp-codecs.h \
	sap/main.c sap/manager.h sap/manager.c sap/server.h \
	sap/server.c sap/sap.h input/main.c input/manager.h \
	input/manager.c input/server.h input/server.c input/device.h \
	input/device.c input/fakehid.c input/fakehid.h serial/main.c \
	serial/manager.h serial/manager.c serial/proxy.h \
	serial/proxy.c serial/port.h serial/port.c network/main.c \
	network/manager.h network/manager.c network/common.h \
	network/common.c network/server.h network/server.c \
	network/connection.h network/connection.c plugins/service.c \
	health/hdp_main.c health/hdp_types.h health/hdp_manager.h \
	health/hdp_manager.c health/hdp.h health/hdp.c \
	health/hdp_util.h health/hdp_util.c thermometer/main.c \
	thermometer/manager.h thermometer/manager.c \
	thermometer/thermometer.h thermometer/thermometer.c \
	alert/main.c alert/server.h alert/server.c time/main.c \
	time/server.h time/server.c plugins/gatt-example.c \
	proximity/main.c proximity/manager.h proximity/manager.c \
	proximity/monitor.h proximity/monitor.c proximity/reporter.h \
	proximity/reporter.c proximity/linkloss.h proximity/linkloss.c \
	proximity/immalert.h proximity/immalert.c deviceinfo/main.c \
	deviceinfo/manager.h deviceinfo/manager.c \
	deviceinfo/deviceinfo.h deviceinfo/deviceinfo.c \
	plugins/hciops.c plugins/mgmtops.c plugins/hal.c \
	plugins/formfactor.c plugins/storage.c plugins/adaptername.c \
	plugins/wiimote.c plugins/maemo6.c plugins/dbusoob.c \
	attrib/att.h attrib/att-database.h attrib/att.c attrib/gatt.h \
	attrib/gatt.c attrib/gattrib.h attrib/gattrib.c \
	attrib/client.h attrib/client.c attrib/gatt-service.h \
	attrib/gatt-service.c btio/btio.h btio/btio.c \
	health/mcap_lib.h health/mcap_internal.h health/mcap.h \
	health/mcap.c health/mcap_sync.c src/bluetooth.ver src/main.c \
	src/log.h src/log.c src/rfkill.c src/hcid.h src/sdpd.h \
	src/sdpd-server.c src/sdpd-request.c src/sdpd-service.c \
	src/sdpd-database.c src/attrib-server.h src/attrib-server.c \
	src/sdp-xml.h src/sdp-xml.c src/sdp-client.h src/sdp-client.c \
	src/textfile.h src/textfile.c src/glib-helper.h \
	src/glib-helper.c src/oui.h src/oui.c src/uinput.h src/ppoll.h \
	src/plugin.h src/plugin.c src/storage.h src/storage.c \
	src/agent.h src/agent.c src/error.h src/error.c src/manager.h \
	src/manager.c src/adapter.h src/adapter.c src/device.h \
	src/device.c src/attio.h src/dbus-common.c src/dbus-common.h \
	src/event.h src/event.c src/oob.h src/oob.c src/eir.h \
	src/eir.c
am__objects_4 = gdbus/bluetoothd-mainloop.$(OBJEXT) \
	gdbus/bluetoothd-watch.$(OBJEXT) \
	gdbus/bluetoothd-object.$(OBJEXT) \
	gdbus/bluetoothd-polkit.$(OBJEXT)
@PNATPLUGIN_TRUE@am__objects_5 = plugins/bluetoothd-pnat.$(OBJEXT)
@AUDIOPLUGIN_TRUE@am__objects_6 = audio/bluetoothd-main.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-manager.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-gateway.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-headset.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-control.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-avctp.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-avrcp.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-device.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-source.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-sink.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-a2dp.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-avdtp.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-ipc.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-unix.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-media.$(OBJEXT) \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-transport.$(OBJEXT)
@SAPPLUGIN_TRUE@am__objects_7 = sap/bluetoothd-main.$(OBJEXT) \
@SAPPLUGIN_TRUE@	sap/bluetoothd-manager.$(OBJEXT) \
@SAPPLUGIN_TRUE@	sap/bluetoothd-server.$(OBJEXT)
@INPUTPLUGIN_TRUE@am__objects_8 = input/bluetoothd-main.$(OBJEXT) \
@INPUTPLUGIN_TRUE@	input/bluetoothd-manager.$(OBJEXT) \
@INPUTPLUGIN_TRUE@	input/bluetoothd-server.$(OBJEXT) \
@INPUTPLUGIN_TRUE@	input/bluetoothd-device.$(OBJEXT) \
@INPUTPLUGIN_TRUE@	input/bluetoothd-fakehid.$(OBJEXT)
@SERIALPLUGIN_TRUE@am__objects_9 = serial/bluetoothd-main.$(OBJEXT) \
@SERIALPLUGIN_TRUE@	serial/bluetoothd-manager.$(OBJEXT) \
@SERIALPLUGIN_TRUE@	serial/bluetoothd-proxy.$(OBJEXT) \
@SERIALPLUGIN_TRUE@	serial/bluetoothd-port.$(OBJEXT)
@NETWORKPLUGIN_TRUE@am__objects_10 =  \
@NETWORKPLUGIN_TRUE@	network/bluetoothd-main.$(OBJEXT) \
@NETWORKPLUGIN_TRUE@	network/bluetoothd-manager.$(OBJEXT) \
@NETWORKPLUGIN_TRUE@	network/bluetoothd-common.$(OBJEXT) \
@NETWORKPLUGIN_TRUE@	network/bluetoothd-server.$(OBJEXT) \
@NETWORKPLUGIN_TRUE@	network/bluetoothd-connection.$(OBJEXT)
@SERVICEPLUGIN_TRUE@am__objects_11 =  \
@SERVICEPLUGIN_TRUE@	plugins/bluetoothd-service.$(OBJEXT)
@HEALTHPLUGIN_TRUE@am__objects_12 =  \
@HEALTHPLUGIN_TRUE@	health/bluetoothd-hdp_main.$(OBJEXT) \
@HEALTHPLUGIN_TRUE@	health/bluetoothd-hdp_manager.$(OBJEXT) \
@HEALTHPLUGIN_TRUE@	health/bluetoothd-hdp.$(OBJEXT) \
@HEALTHPLUGIN_TRUE@	health/bluetoothd-hdp_util.$(OBJEXT)
@GATTMODULES_TRUE@am__objects_13 =  \
@GATTMODULES_TRUE@	thermometer/bluetoothd-main.$(OBJEXT) \
@GATTMODULES_TRUE@	thermometer/bluetoothd-manager.$(OBJEXT) \
@GATTMODULES_TRUE@	thermometer/bluetoothd-thermometer.$(OBJEXT) \
@GATTMODULES_TRUE@	alert/bluetoothd-main.$(OBJEXT) \
@GATTMODULES_TRUE@	alert/bluetoothd-server.$(OBJEXT) \
@GATTMODULES_TRUE@	time/bluetoothd-main.$(OBJEXT) \
@GATTMODULES_TRUE@	time/bluetoothd-server.$(OBJEXT) \
@GATTMODULES_TRUE@	plugins/bluetoothd-gatt-example.$(OBJEXT) \
@GATTMODULES_TRUE@	proximity/bluetoothd-main.$(OBJEXT) \
@GATTMODULES_TRUE@	proximity/bluetoothd-manager.$(OBJEXT) \
@GATTMODULES_TRUE@	proximity/bluetoothd-monitor.$(OBJEXT) \
@GATTMODULES_TRUE@	proximity/bluetoothd-reporter.$(OBJEXT) \
@GATTMODULES_TRUE@	proximity/bluetoothd-linkloss.$(OBJEXT) \
@GATTMODULES_TRUE@	proximity/bluetoothd-immalert.$(OBJEXT) \
@GATTMODULES_TRUE@	deviceinfo/bluetoothd-main.$(OBJEXT) \
@GATTMODULES_TRUE@	deviceinfo/bluetoothd-manager.$(OBJEXT) \
@GATTMODULES_TRUE@	deviceinfo/bluetoothd-deviceinfo.$(OBJEXT)
@HAL_TRUE@am__objects_14 = plugins/bluetoothd-hal.$(OBJEXT)
@HAL_FALSE@am__objects_15 = plugins/bluetoothd-formfactor.$(OBJEXT)
@WIIMOTEPLUGIN_TRUE@am__objects_16 =  \
@WIIMOTEPLUGIN_TRUE@	plugins/bluetoothd-wiimote.$(OBJEXT)
@MAEMO6PLUGIN_TRUE@am__objects_17 =  \
@MAEMO6PLUGIN_TRUE@	plugins/bluetoothd-maemo6.$(OBJEXT)
@DBUSOOBPLUGIN_TRUE@am__objects_18 =  \
@DBUSOOBPLUGIN_TRUE@	plugins/bluetoothd-dbusoob.$(OBJEXT)
am__objects_19 = $(am__objects_5) $(am__objects_6) $(am__objects_7) \
	$(am__objects_8) $(am__objects_9) $(am__objects_10) \
	$(am__objects_11) $(am__objects_12) $(am__objects_13) \
	plugins/bluetoothd-hciops.$(OBJEXT) \
	plugins/bluetoothd-mgmtops.$(OBJEXT) $(am__objects_14) \
	$(am__objects_15) plugins/bluetoothd-storage.$(OBJEXT) \
	plugins/bluetoothd-adaptername.$(OBJEXT) $(am__objects_16) \
	$(am__objects_17) $(am__objects_18)
am__objects_20 = attrib/bluetoothd-att.$(OBJEXT) \
	attrib/bluetoothd-gatt.$(OBJEXT) \
	attrib/bluetoothd-gattrib.$(OBJEXT) \
	attrib/bluetoothd-client.$(OBJEXT) \
	attrib/bluetoothd-gatt-service.$(OBJEXT)
am__objects_21 = btio/bluetoothd-btio.$(OBJEXT)
@MCAP_TRUE@am__objects_22 = health/bluetoothd-mcap.$(OBJEXT) \
@MCAP_TRUE@	health/bluetoothd-mcap_sync.$(OBJEXT)
am__objects_23 = $(am__objects_22)
am_src_bluetoothd_OBJECTS = $(am__objects_4) $(am__objects_19) \
	$(am__objects_20) $(am__objects_21) $(am__objects_23) \
	src/bluetoothd-main.$(OBJEXT) src/bluetoothd-log.$(OBJEXT) \
	src/bluetoothd-rfkill.$(OBJEXT) \
	src/bluetoothd-sdpd-server.$(OBJEXT) \
	src/bluetoothd-sdpd-request.$(OBJEXT) \
	src/bluetoothd-sdpd-service.$(OBJEXT) \
	src/bluetoothd-sdpd-database.$(OBJEXT) \
	src/bluetoothd-attrib-server.$(OBJEXT) \
	src/bluetoothd-sdp-xml.$(OBJEXT) \
	src/bluetoothd-sdp-client.$(OBJEXT) \
	src/bluetoothd-textfile.$(OBJEXT) \
	src/bluetoothd-glib-helper.$(OBJEXT) \
	src/bluetoothd-oui.$(OBJEXT) src/bluetoothd-plugin.$(OBJEXT) \
	src/bluetoothd-storage.$(OBJEXT) \
	src/bluetoothd-agent.$(OBJEXT) src/bluetoothd-error.$(OBJEXT) \
	src/bluetoothd-manager.$(OBJEXT) \
	src/bluetoothd-adapter.$(OBJEXT) \
	src/bluetoothd-device.$(OBJEXT) \
	src/bluetoothd-dbus-common.$(OBJEXT) \
	src/bluetoothd-event.$(OBJEXT) src/bluetoothd-oob.$(OBJEXT) \
	src/bluetoothd-eir.$(OBJEXT)
@AUDIOPLUGIN_TRUE@am__objects_24 =  \
@AUDIOPLUGIN_TRUE@	audio/bluetoothd-telephony.$(OBJEXT)
@SAPPLUGIN_TRUE@am__objects_25 = sap/bluetoothd-sap.$(OBJEXT)
am__objects_26 = $(am__objects_24) $(am__objects_25)
am__objects_27 = $(am__objects_26)
nodist_src_bluetoothd_OBJECTS = $(am__objects_27)
src_bluetoothd_OBJECTS = $(am_src_bluetoothd_OBJECTS) \
	$(nodist_src_bluetoothd_OBJECTS)
src_bluetoothd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(src_bluetoothd_CFLAGS) $(CFLAGS) $(src_bluetoothd_LDFLAGS) \
	$(LDFLAGS) -o $@
test_agent_SOURCES = test/agent.c
test_agent_OBJECTS = test/agent.$(OBJEXT)
test_agent_DEPENDENCIES =
test_attest_SOURCES = test/attest.c
test_attest_OBJECTS = test/attest.$(OBJEXT)
@TEST_TRUE@test_attest_DEPENDENCIES = lib/libbluetooth-private.la
test_avtest_SOURCES = test/avtest.c
test_avtest_OBJECTS = test/avtest.$(OBJEXT)
@TEST_TRUE@test_avtest_DEPENDENCIES = lib/libbluetooth-private.la
am__test_bdaddr_SOURCES_DIST = test/bdaddr.c src/oui.h src/oui.c
@TEST_TRUE@am_test_bdaddr_OBJECTS = test/bdaddr.$(OBJEXT) \
@TEST_TRUE@	src/oui.$(OBJEXT)
test_bdaddr_OBJECTS = $(am_test_bdaddr_OBJECTS)
@TEST_TRUE@test_bdaddr_DEPENDENCIES = lib/libbluetooth-private.la
am__test_btiotest_SOURCES_DIST = test/btiotest.c btio/btio.h \
	btio/btio.c
@TEST_TRUE@am_test_btiotest_OBJECTS = test/btiotest.$(OBJEXT) \
@TEST_TRUE@	btio/btio.$(OBJEXT)
test_btiotest_OBJECTS = $(am_test_btiotest_OBJECTS)
@TEST_TRUE@test_btiotest_DEPENDENCIES = lib/libbluetooth-private.la
test_gaptest_SOURCES = test/gaptest.c
test_gaptest_OBJECTS = test/gaptest.$(OBJEXT)
test_gaptest_DEPENDENCIES =
test_hciemu_SOURCES = test/hciemu.c
test_hciemu_OBJECTS = test/hciemu.$(OBJEXT)
@TEST_TRUE@test_hciemu_DEPENDENCIES = lib/libbluetooth-private.la
test_hstest_SOURCES = test/hstest.c
test_hstest_OBJECTS = test/hstest.$(OBJEXT)
@TEST_TRUE@test_hstest_DEPENDENCIES = lib/libbluetooth-private.la
am__test_ipctest_SOURCES_DIST = test/ipctest.c audio/ipc.h audio/ipc.c
@TEST_TRUE@am_test_ipctest_OBJECTS = test/ipctest.$(OBJEXT) \
@TEST_TRUE@	audio/ipc.$(OBJEXT)
test_ipctest_OBJECTS = $(am_test_ipctest_OBJECTS)
@TEST_TRUE@test_ipctest_DEPENDENCIES = sbc/libsbc.la
test_l2test_SOURCES = test/l2test.c
test_l2test_OBJECTS = test/l2test.$(OBJEXT)
@TEST_TRUE@test_l2test_DEPENDENCIES = lib/libbluetooth-private.la
test_lmptest_SOURCES = test/lmptest.c
test_lmptest_OBJECTS = test/lmptest.$(OBJEXT)
@TEST_TRUE@test_lmptest_DEPENDENCIES = lib/libbluetooth-private.la
am__test_mpris_player_SOURCES_DIST = test/mpris-player.c
@TEST_TRUE@am_test_mpris_player_OBJECTS = test/mpris-player.$(OBJEXT)
test_mpris_player_OBJECTS = $(am_test_mpris_player_OBJECTS)
test_mpris_player_DEPENDENCIES =
test_rctest_SOURCES = test/rctest.c
test_rctest_OBJECTS = test/rctest.$(OBJEXT)
@TEST_TRUE@test_rctest_DEPENDENCIES = lib/libbluetooth-private.la
test_scotest_SOURCES = test/scotest.c
test_scotest_OBJECTS = test/scotest.$(OBJEXT)
@TEST_TRUE@test_scotest_DEPENDENCIES = lib/libbluetooth-private.la
test_sdptest_SOURCES = test/sdptest.c
test_sdptest_OBJECTS = test/sdptest.$(OBJEXT)
@TEST_TRUE@test_sdptest_DEPENDENCIES = lib/libbluetooth-private.la
am__test_test_textfile_SOURCES_DIST = test/test-textfile.c \
	src/textfile.h src/textfile.c
@TEST_TRUE@am_test_test_textfile_OBJECTS =  \
@TEST_TRUE@	test/test-textfile.$(OBJEXT) src/textfile.$(OBJEXT)
test_test_textfile_OBJECTS = $(am_test_test_textfile_OBJECTS)
test_test_textfile_LDADD = $(LDADD)
am__test_uuidtest_SOURCES_DIST = test/uuidtest.c
@TEST_TRUE@am_test_uuidtest_OBJECTS = test/uuidtest.$(OBJEXT)
test_uuidtest_OBJECTS = $(am_test_uuidtest_OBJECTS)
@TEST_TRUE@test_uuidtest_DEPENDENCIES = lib/libbluetooth-private.la
tools_avctrl_SOURCES = tools/avctrl.c
tools_avctrl_OBJECTS = tools/avctrl.$(OBJEXT)
tools_avctrl_DEPENDENCIES =
tools_avinfo_SOURCES = tools/avinfo.c
tools_avinfo_OBJECTS = tools/avinfo.$(OBJEXT)
@TOOLS_TRUE@tools_avinfo_DEPENDENCIES = lib/libbluetooth-private.la
am__tools_bccmd_SOURCES_DIST = tools/bccmd.c tools/csr.h tools/csr.c \
	tools/csr_hci.c tools/csr_h4.c tools/csr_3wire.c \
	tools/csr_bcsp.c tools/ubcsp.h tools/ubcsp.c tools/csr_usb.c
@BCCMD_TRUE@@USB_TRUE@am__objects_28 = tools/csr_usb.$(OBJEXT)
@BCCMD_TRUE@am_tools_bccmd_OBJECTS = tools/bccmd.$(OBJEXT) \
@BCCMD_TRUE@	tools/csr.$(OBJEXT) tools/csr_hci.$(OBJEXT) \
@BCCMD_TRUE@	tools/csr_h4.$(OBJEXT) tools/csr_3wire.$(OBJEXT) \
@BCCMD_TRUE@	tools/csr_bcsp.$(OBJEXT) tools/ubcsp.$(OBJEXT) \
@BCCMD_TRUE@	$(am__objects_28)
tools_bccmd_OBJECTS = $(am_tools_bccmd_OBJECTS)
am__DEPENDENCIES_1 =
@BCCMD_TRUE@tools_bccmd_DEPENDENCIES = lib/libbluetooth-private.la \
@BCCMD_TRUE@	$(am__DEPENDENCIES_1)
tools_ciptool_SOURCES = tools/ciptool.c
tools_ciptool_OBJECTS = tools/ciptool.$(OBJEXT)
@TOOLS_TRUE@tools_ciptool_DEPENDENCIES = lib/libbluetooth-private.la
tools_dfubabel_SOURCES = tools/dfubabel.c
tools_dfubabel_OBJECTS = tools/dfubabel.$(OBJEXT)
tools_dfubabel_DEPENDENCIES =
am__tools_dfutool_SOURCES_DIST = tools/dfutool.c tools/dfu.h \
	tools/dfu.c
@DFUTOOL_TRUE@am_tools_dfutool_OBJECTS = tools/dfutool.$(OBJEXT) \
@DFUTOOL_TRUE@	tools/dfu.$(OBJEXT)
tools_dfutool_OBJECTS = $(am_tools_dfutool_OBJECTS)
tools_dfutool_DEPENDENCIES =
am__tools_hciattach_SOURCES_DIST = tools/hciattach.c tools/hciattach.h \
	tools/hciattach_st.c tools/hciattach_ti.c \
	tools/hciattach_tialt.c tools/hciattach_ath3k.c \
	tools/hciattach_qualcomm.c tools/hciattach_intel.c
@TOOLS_TRUE@am_tools_hciattach_OBJECTS = tools/hciattach.$(OBJEXT) \
@TOOLS_TRUE@	tools/hciattach_st.$(OBJEXT) \
@TOOLS_TRUE@	tools/hciattach_ti.$(OBJEXT) \
@TOOLS_TRUE@	tools/hciattach_tialt.$(OBJEXT) \
@TOOLS_TRUE@	tools/hciattach_ath3k.$(OBJEXT) \
@TOOLS_TRUE@	tools/hciattach_qualcomm.$(OBJEXT) \
@TOOLS_TRUE@	tools/hciattach_intel.$(OBJEXT)
tools_hciattach_OBJECTS = $(am_tools_hciattach_OBJECTS)
@TOOLS_TRUE@tools_hciattach_DEPENDENCIES =  \
@TOOLS_TRUE@	lib/libbluetooth-private.la
am__tools_hciconfig_SOURCES_DIST = tools/hciconfig.c tools/csr.h \
	tools/csr.c src/textfile.h src/textfile.c
@TOOLS_TRUE@am_tools_hciconfig_OBJECTS = tools/hciconfig.$(OBJEXT) \
@TOOLS_TRUE@	tools/csr.$(OBJEXT) src/textfile.$(OBJEXT)
tools_hciconfig_OBJECTS = $(am_tools_hciconfig_OBJECTS)
@TOOLS_TRUE@tools_hciconfig_DEPENDENCIES =  \
@TOOLS_TRUE@	lib/libbluetooth-private.la
tools_hcieventmask_SOURCES = tools/hcieventmask.c
tools_hcieventmask_OBJECTS = tools/hcieventmask.$(OBJEXT)
@TOOLS_TRUE@tools_hcieventmask_DEPENDENCIES =  \
@TOOLS_TRUE@	lib/libbluetooth-private.la
tools_hcisecfilter_SOURCES = tools/hcisecfilter.c
tools_hcisecfilter_OBJECTS = tools/hcisecfilter.$(OBJEXT)
tools_hcisecfilter_LDADD = $(LDADD)
am__tools_hcitool_SOURCES_DIST = tools/hcitool.c src/oui.h src/oui.c \
	src/textfile.h src/textfile.c
@TOOLS_TRUE@am_tools_hcitool_OBJECTS = tools/hcitool.$(OBJEXT) \
@TOOLS_TRUE@	src/oui.$(OBJEXT) src/textfile.$(OBJEXT)
tools_hcitool_OBJECTS = $(am_tools_hcitool_OBJECTS)
@TOOLS_TRUE@tools_hcitool_DEPENDENCIES = lib/libbluetooth-private.la
tools_hid2hci_SOURCES = tools/hid2hci.c
tools_hid2hci_OBJECTS = tools/hid2hci.$(OBJEXT)
tools_hid2hci_DEPENDENCIES =
tools_l2ping_SOURCES = tools/l2ping.c
tools_l2ping_OBJECTS = tools/l2ping.$(OBJEXT)
@TOOLS_TRUE@tools_l2ping_DEPENDENCIES = lib/libbluetooth-private.la
tools_ppporc_SOURCES = tools/ppporc.c
tools_ppporc_OBJECTS = tools/ppporc.$(OBJEXT)
@TOOLS_TRUE@tools_ppporc_DEPENDENCIES = lib/libbluetooth-private.la
am__tools_rfcomm_SOURCES_DIST = tools/rfcomm.c tools/parser.y \
	tools/lexer.l tools/kword.h tools/kword.c
@TOOLS_TRUE@am_tools_rfcomm_OBJECTS = tools/rfcomm.$(OBJEXT) \
@TOOLS_TRUE@	tools/parser.$(OBJEXT) tools/lexer.$(OBJEXT) \
@TOOLS_TRUE@	tools/kword.$(OBJEXT)
am__EXTRA_tools_rfcomm_SOURCES_DIST = tools/parser.h tools/parser.c \
	tools/lexer.c
tools_rfcomm_OBJECTS = $(am_tools_rfcomm_OBJECTS)
@TOOLS_TRUE@tools_rfcomm_DEPENDENCIES = lib/libbluetooth-private.la
am__tools_sdptool_SOURCES_DIST = tools/sdptool.c src/sdp-xml.h \
	src/sdp-xml.c
@TOOLS_TRUE@am_tools_sdptool_OBJECTS = tools/sdptool.$(OBJEXT) \
@TOOLS_TRUE@	src/sdp-xml.$(OBJEXT)
tools_sdptool_OBJECTS = $(am_tools_sdptool_OBJECTS)
@TOOLS_TRUE@tools_sdptool_DEPENDENCIES = lib/libbluetooth-private.la
am__unit_test_eir_SOURCES_DIST = unit/test-eir.c src/eir.c \
	src/glib-helper.c
@TEST_TRUE@am_unit_test_eir_OBJECTS =  \
@TEST_TRUE@	unit/unit_test_eir-test-eir.$(OBJEXT) \
@TEST_TRUE@	src/unit_test_eir-eir.$(OBJEXT) \
@TEST_TRUE@	src/unit_test_eir-glib-helper.$(OBJEXT)
unit_test_eir_OBJECTS = $(am_unit_test_eir_OBJECTS)
@TEST_TRUE@unit_test_eir_DEPENDENCIES = lib/libbluetooth-private.la
unit_test_eir_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(unit_test_eir_CFLAGS) \
	$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am__dist_udev_SCRIPTS_DIST = scripts/bluetooth_serial
SCRIPTS = $(dist_udev_SCRIPTS)
DEFAULT_INCLUDES = -I.@am__isrc@
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_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo "  CC    " $@;
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo "  CCLD  " $@;
@MAINTAINER_MODE_FALSE@am__skiplex = test -f $@ ||
LEXCOMPILE = $(LEX) $(AM_LFLAGS) $(LFLAGS)
LTLEXCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(LEX) $(AM_LFLAGS) $(LFLAGS)
AM_V_LEX = $(am__v_LEX_@AM_V@)
am__v_LEX_ = $(am__v_LEX_@AM_DEFAULT_V@)
am__v_LEX_0 = @echo "  LEX   " $@;
YLWRAP = $(top_srcdir)/ylwrap
@MAINTAINER_MODE_FALSE@am__skipyacc = test -f $@ ||
YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS)
LTYACCCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(YACC) $(AM_YFLAGS) $(YFLAGS)
AM_V_YACC = $(am__v_YACC_@AM_V@)
am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@)
am__v_YACC_0 = @echo "  YACC  " $@;
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo "  GEN   " $@;
SOURCES = $(audio_libtelephony_a_SOURCES) $(sap_libsap_a_SOURCES) \
	$(audio_libasound_module_ctl_bluetooth_la_SOURCES) \
	$(audio_libasound_module_pcm_bluetooth_la_SOURCES) \
	$(audio_libgstbluetooth_la_SOURCES) \
	$(lib_libbluetooth_private_la_SOURCES) \
	$(lib_libbluetooth_la_SOURCES) \
	$(plugins_external_dummy_la_SOURCES) $(sbc_libsbc_la_SOURCES) \
	$(attrib_gatttool_SOURCES) $(compat_dund_SOURCES) \
	$(compat_hidd_SOURCES) $(compat_pand_SOURCES) \
	$(cups_bluetooth_SOURCES) $(emulator_btvirt_SOURCES) \
	$(mgmt_btmgmt_SOURCES) $(monitor_btmon_SOURCES) \
	$(sbc_sbcdec_SOURCES) $(sbc_sbcenc_SOURCES) sbc/sbcinfo.c \
	sbc/sbctester.c $(src_bluetoothd_SOURCES) \
	$(nodist_src_bluetoothd_SOURCES) test/agent.c test/attest.c \
	test/avtest.c $(test_bdaddr_SOURCES) $(test_btiotest_SOURCES) \
	test/gaptest.c test/hciemu.c test/hstest.c \
	$(test_ipctest_SOURCES) test/l2test.c test/lmptest.c \
	$(test_mpris_player_SOURCES) test/rctest.c test/scotest.c \
	test/sdptest.c $(test_test_textfile_SOURCES) \
	$(test_uuidtest_SOURCES) tools/avctrl.c tools/avinfo.c \
	$(tools_bccmd_SOURCES) tools/ciptool.c tools/dfubabel.c \
	$(tools_dfutool_SOURCES) $(tools_hciattach_SOURCES) \
	$(tools_hciconfig_SOURCES) tools/hcieventmask.c \
	tools/hcisecfilter.c $(tools_hcitool_SOURCES) tools/hid2hci.c \
	tools/l2ping.c tools/ppporc.c $(tools_rfcomm_SOURCES) \
	$(EXTRA_tools_rfcomm_SOURCES) $(tools_sdptool_SOURCES) \
	$(unit_test_eir_SOURCES)
DIST_SOURCES = $(am__audio_libtelephony_a_SOURCES_DIST) \
	$(am__sap_libsap_a_SOURCES_DIST) \
	$(am__audio_libasound_module_ctl_bluetooth_la_SOURCES_DIST) \
	$(am__audio_libasound_module_pcm_bluetooth_la_SOURCES_DIST) \
	$(am__audio_libgstbluetooth_la_SOURCES_DIST) \
	$(lib_libbluetooth_private_la_SOURCES) \
	$(lib_libbluetooth_la_SOURCES) \
	$(am__plugins_external_dummy_la_SOURCES_DIST) \
	$(am__sbc_libsbc_la_SOURCES_DIST) \
	$(am__attrib_gatttool_SOURCES_DIST) \
	$(am__compat_dund_SOURCES_DIST) \
	$(am__compat_hidd_SOURCES_DIST) \
	$(am__compat_pand_SOURCES_DIST) \
	$(am__cups_bluetooth_SOURCES_DIST) \
	$(am__emulator_btvirt_SOURCES_DIST) \
	$(am__mgmt_btmgmt_SOURCES_DIST) \
	$(am__monitor_btmon_SOURCES_DIST) \
	$(am__sbc_sbcdec_SOURCES_DIST) $(am__sbc_sbcenc_SOURCES_DIST) \
	sbc/sbcinfo.c sbc/sbctester.c \
	$(am__src_bluetoothd_SOURCES_DIST) test/agent.c test/attest.c \
	test/avtest.c $(am__test_bdaddr_SOURCES_DIST) \
	$(am__test_btiotest_SOURCES_DIST) test/gaptest.c test/hciemu.c \
	test/hstest.c $(am__test_ipctest_SOURCES_DIST) test/l2test.c \
	test/lmptest.c $(am__test_mpris_player_SOURCES_DIST) \
	test/rctest.c test/scotest.c test/sdptest.c \
	$(am__test_test_textfile_SOURCES_DIST) \
	$(am__test_uuidtest_SOURCES_DIST) tools/avctrl.c \
	tools/avinfo.c $(am__tools_bccmd_SOURCES_DIST) tools/ciptool.c \
	tools/dfubabel.c $(am__tools_dfutool_SOURCES_DIST) \
	$(am__tools_hciattach_SOURCES_DIST) \
	$(am__tools_hciconfig_SOURCES_DIST) tools/hcieventmask.c \
	tools/hcisecfilter.c $(am__tools_hcitool_SOURCES_DIST) \
	tools/hid2hci.c tools/l2ping.c tools/ppporc.c \
	$(am__tools_rfcomm_SOURCES_DIST) \
	$(am__EXTRA_tools_rfcomm_SOURCES_DIST) \
	$(am__tools_sdptool_SOURCES_DIST) \
	$(am__unit_test_eir_SOURCES_DIST)
man1dir = $(mandir)/man1
man8dir = $(mandir)/man8
NROFF = nroff
MANS = $(dist_man_MANS) $(man_MANS)
DATA = $(alsaconf_DATA) $(conf_DATA) $(dbus_DATA) $(dbusservice_DATA) \
	$(pkgconfig_DATA) $(rules_DATA) $(state_DATA) \
	$(systemdunit_DATA)
HEADERS = $(include_HEADERS)
ETAGS = etags
CTAGS = ctags
# If stdout is a non-dumb tty, use colors.  If test -t is not supported,
# then this fails; a conservative approach.  Of course do not redirect
# stdout here, just stderr.
am__tty_colors = \
red=; grn=; lgn=; blu=; std=; \
test "X$(AM_COLOR_TESTS)" != Xno \
&& test "X$$TERM" != Xdumb \
&& { test "X$(AM_COLOR_TESTS)" = Xalways || test -t 1 2>/dev/null; } \
&& { \
  red=''; \
  grn=''; \
  lgn=''; \
  blu=''; \
  std=''; \
}
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
  if test -d "$(distdir)"; then \
    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
      && rm -rf "$(distdir)" \
      || { sleep 5 && rm -rf "$(distdir)"; }; \
  else :; fi
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
ALSA_CFLAGS = @ALSA_CFLAGS@
ALSA_LIBS = @ALSA_LIBS@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CHECK_CFLAGS = @CHECK_CFLAGS@
CHECK_LIBS = @CHECK_LIBS@
CONFIGDIR = @CONFIGDIR@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_LIBS = @GLIB_LIBS@
GREP = @GREP@
GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@
GSTREAMER_LIBS = @GSTREAMER_LIBS@
GSTREAMER_PLUGINSDIR = @GSTREAMER_PLUGINSDIR@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MISC_CFLAGS = @MISC_CFLAGS@
MISC_LDFLAGS = @MISC_LDFLAGS@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
RANLIB = @RANLIB@
READLINE_LIBS = @READLINE_LIBS@
SAP_DRIVER = @SAP_DRIVER@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SNDFILE_CFLAGS = @SNDFILE_CFLAGS@
SNDFILE_LIBS = @SNDFILE_LIBS@
STORAGEDIR = @STORAGEDIR@
STRIP = @STRIP@
SYSTEMD_UNITDIR = @SYSTEMD_UNITDIR@
TELEPHONY_DRIVER = @TELEPHONY_DRIVER@
UDEV_CFLAGS = @UDEV_CFLAGS@
UDEV_DIR = @UDEV_DIR@
UDEV_LIBS = @UDEV_LIBS@
USB_CFLAGS = @USB_CFLAGS@
USB_LIBS = @USB_LIBS@
VERSION = @VERSION@
WARNING_CFLAGS = @WARNING_CFLAGS@
YACC = @YACC@
YFLAGS = @YFLAGS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@/bluetooth
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AM_MAKEFLAGS = --no-print-directory
lib_LTLIBRARIES = lib/libbluetooth.la
noinst_LIBRARIES = $(am__append_10) $(am__append_14)
noinst_LTLIBRARIES = lib/libbluetooth-private.la $(am__append_1)
dist_man_MANS = $(am__append_43) $(am__append_48) $(am__append_50) \
	$(am__append_53) $(am__append_59) $(am__append_63) \
	$(am__append_66) $(am__append_69)
dist_noinst_MANS = 
CLEANFILES = $(builtin_files) tools/lexer.c tools/parser.c \
	tools/parser.h $(rules_DATA)
EXTRA_DIST = plugins/hal.c plugins/formfactor.c src/genbuiltin \
	src/bluetooth.conf src/org.bluez.service src/main.conf \
	network/network.conf input/input.conf serial/serial.conf \
	audio/audio.conf audio/telephony-dummy.c \
	audio/telephony-maemo5.c audio/telephony-ofono.c \
	audio/telephony-maemo6.c sap/sap-dummy.c sap/sap-u8500.c \
	proximity/proximity.conf audio/bluetooth.conf $(am__append_44) \
	tools/rfcomm.conf $(am__append_49) $(am__append_51) \
	$(am__append_54) tools/dfubabel.1 tools/avctrl.8 \
	$(am__append_60) $(am__append_61) test/sap-client test/hsplay \
	test/hsmicro test/dbusdef.py test/monitor-bluetooth \
	test/list-devices test/test-discovery test/test-manager \
	test/test-adapter test/test-device test/test-service \
	test/test-serial test/test-telephony test/test-network \
	test/simple-agent test/simple-service test/simple-endpoint \
	test/test-audio test/test-input test/test-sap-server \
	test/test-oob test/test-attrib test/test-proximity \
	test/test-thermometer test/test-serial-proxy test/test-health \
	test/test-health-sink test/service-record.dtd \
	test/service-did.xml test/service-spp.xml test/service-opp.xml \
	test/service-ftp.xml test/simple-player test/test-nap \
	$(am__append_64) $(am__append_67) $(am__append_70) \
	scripts/bluetooth-hid2hci.rules scripts/bluetooth-serial.rules \
	doc/manager-api.txt doc/adapter-api.txt doc/device-api.txt \
	doc/service-api.txt doc/agent-api.txt doc/attribute-api.txt \
	doc/serial-api.txt doc/network-api.txt doc/input-api.txt \
	doc/audio-api.txt doc/control-api.txt doc/hfp-api.txt \
	doc/health-api.txt doc/sap-api.txt doc/media-api.txt \
	doc/assigned-numbers.txt
include_HEADERS = $(lib_headers)
AM_CFLAGS = $(WARNING_CFLAGS) $(MISC_CFLAGS) @DBUS_CFLAGS@ \
	@GLIB_CFLAGS@ $(am__empty)
AM_LDFLAGS = $(MISC_LDFLAGS)
@DATAFILES_TRUE@dbusdir = $(sysconfdir)/dbus-1/system.d
@DATAFILES_TRUE@dbusservicedir = $(datadir)/dbus-1/system-services
@DATAFILES_TRUE@dbus_DATA = src/bluetooth.conf
@DATAFILES_TRUE@dbusservice_DATA = src/org.bluez.service
@DATAFILES_TRUE@confdir = $(sysconfdir)/bluetooth
@DATAFILES_TRUE@conf_DATA = src/main.conf $(am__append_38)
@DATAFILES_TRUE@statedir = $(localstatedir)/lib/bluetooth
@DATAFILES_TRUE@state_DATA = 
@DATAFILES_TRUE@@SYSTEMD_TRUE@systemdunitdir = @SYSTEMD_UNITDIR@
@DATAFILES_TRUE@@SYSTEMD_TRUE@systemdunit_DATA = src/bluetooth.service
plugindir = $(libdir)/bluetooth/plugins
@MAINTAINER_MODE_FALSE@build_plugindir = $(plugindir)
@MAINTAINER_MODE_TRUE@build_plugindir = $(abs_top_srcdir)/plugins/.libs
plugin_LTLIBRARIES = $(am__append_37)
lib_headers = lib/bluetooth.h lib/hci.h lib/hci_lib.h lib/mgmt.h \
		lib/sco.h lib/l2cap.h lib/sdp.h lib/sdp_lib.h lib/uuid.h \
		lib/rfcomm.h lib/bnep.h lib/cmtp.h lib/hidp.h lib/a2mp.h

local_headers = $(foreach file,$(lib_headers), lib/bluetooth/$(notdir $(file)))
BUILT_SOURCES = $(local_headers) src/builtin.h
lib_libbluetooth_la_SOURCES = $(lib_headers) \
				lib/bluetooth.c lib/hci.c lib/sdp.c lib/uuid.c

lib_libbluetooth_la_LDFLAGS = $(AM_LDFLAGS) -version-info 16:0:13
lib_libbluetooth_la_DEPENDENCIES = $(local_headers)
lib_libbluetooth_private_la_SOURCES = $(lib_libbluetooth_la_SOURCES)
@SBC_TRUE@sbc_libsbc_la_SOURCES = sbc/sbc.h sbc/sbc.c sbc/sbc_math.h sbc/sbc_tables.h \
@SBC_TRUE@			sbc/sbc_primitives.h sbc/sbc_primitives.c \
@SBC_TRUE@			sbc/sbc_primitives_mmx.h sbc/sbc_primitives_mmx.c \
@SBC_TRUE@			sbc/sbc_primitives_iwmmxt.h sbc/sbc_primitives_iwmmxt.c \
@SBC_TRUE@			sbc/sbc_primitives_neon.h sbc/sbc_primitives_neon.c \
@SBC_TRUE@			sbc/sbc_primitives_armv6.h sbc/sbc_primitives_armv6.c

@SBC_TRUE@sbc_libsbc_la_CFLAGS = $(AM_CFLAGS) -finline-functions -fgcse-after-reload \
@SBC_TRUE@					-funswitch-loops -funroll-loops

@SBC_TRUE@sbc_sbcdec_SOURCES = sbc/sbcdec.c sbc/formats.h
@SBC_TRUE@sbc_sbcdec_LDADD = sbc/libsbc.la
@SBC_TRUE@sbc_sbcenc_SOURCES = sbc/sbcenc.c sbc/formats.h
@SBC_TRUE@sbc_sbcenc_LDADD = sbc/libsbc.la
@SBC_TRUE@@SNDFILE_TRUE@sbc_sbctester_LDADD = @SNDFILE_LIBS@ -lm
@SBC_TRUE@@SNDFILE_TRUE@sbc_sbctest_CFLAGS = $(AM_CFLAGS) @SNDFILE_CFLAGS@
attrib_sources = attrib/att.h attrib/att-database.h attrib/att.c \
		attrib/gatt.h attrib/gatt.c \
		attrib/gattrib.h attrib/gattrib.c attrib/client.h \
		attrib/client.c attrib/gatt-service.h attrib/gatt-service.c

gdbus_sources = gdbus/gdbus.h gdbus/mainloop.c gdbus/watch.c \
					gdbus/object.c gdbus/polkit.c

btio_sources = btio/btio.h btio/btio.c
builtin_modules = $(am__append_5) $(am__append_7) $(am__append_11) \
	$(am__append_15) $(am__append_17) $(am__append_19) \
	$(am__append_21) $(am__append_23) $(am__append_25) hciops \
	mgmtops $(am__append_27) $(am__append_29) storage adaptername \
	$(am__append_31) $(am__append_33) $(am__append_35)
builtin_sources = $(am__append_6) $(am__append_8) $(am__append_12) \
	$(am__append_16) $(am__append_18) $(am__append_20) \
	$(am__append_22) $(am__append_24) $(am__append_26) \
	plugins/hciops.c plugins/mgmtops.c $(am__append_28) \
	$(am__append_30) plugins/storage.c plugins/adaptername.c \
	$(am__append_32) $(am__append_34) $(am__append_36)
builtin_nodist = $(am__append_9) $(am__append_13)
mcap_sources = $(am__append_4)
@AUDIOPLUGIN_TRUE@audio_libtelephony_a_SOURCES = audio/telephony.h audio/telephony-dummy.c \
@AUDIOPLUGIN_TRUE@				audio/telephony-maemo5.c audio/telephony-ofono.c \
@AUDIOPLUGIN_TRUE@				audio/telephony-maemo6.c

@SAPPLUGIN_TRUE@sap_libsap_a_SOURCES = sap/sap.h sap/sap-dummy.c sap/sap-u8500.c
@MAINTAINER_MODE_TRUE@plugins_external_dummy_la_SOURCES = plugins/external-dummy.c
@MAINTAINER_MODE_TRUE@plugins_external_dummy_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version \
@MAINTAINER_MODE_TRUE@				    -no-undefined

@MAINTAINER_MODE_TRUE@plugins_external_dummy_la_CFLAGS = $(AM_CFLAGS) -fvisibility=hidden
src_bluetoothd_SOURCES = $(gdbus_sources) $(builtin_sources) \
			$(attrib_sources) $(btio_sources) \
			$(mcap_sources) src/bluetooth.ver \
			src/main.c src/log.h src/log.c \
			src/rfkill.c src/hcid.h src/sdpd.h \
			src/sdpd-server.c src/sdpd-request.c \
			src/sdpd-service.c src/sdpd-database.c \
			src/attrib-server.h src/attrib-server.c \
			src/sdp-xml.h src/sdp-xml.c \
			src/sdp-client.h src/sdp-client.c \
			src/textfile.h src/textfile.c \
			src/glib-helper.h src/glib-helper.c \
			src/oui.h src/oui.c src/uinput.h src/ppoll.h \
			src/plugin.h src/plugin.c \
			src/storage.h src/storage.c \
			src/agent.h src/agent.c \
			src/error.h src/error.c \
			src/manager.h src/manager.c \
			src/adapter.h src/adapter.c \
			src/device.h src/device.c src/attio.h \
			src/dbus-common.c src/dbus-common.h \
			src/event.h src/event.c \
			src/oob.h src/oob.c src/eir.h src/eir.c

src_bluetoothd_LDADD = lib/libbluetooth-private.la @GLIB_LIBS@ @DBUS_LIBS@ \
								-ldl -lrt

src_bluetoothd_LDFLAGS = $(AM_LDFLAGS) -Wl,--export-dynamic \
				-Wl,--version-script=$(srcdir)/src/bluetooth.ver

src_bluetoothd_DEPENDENCIES = lib/libbluetooth-private.la
src_bluetoothd_CFLAGS = $(AM_CFLAGS) -DBLUETOOTH_PLUGIN_BUILTIN \
					-DPLUGINDIR=\""$(build_plugindir)"\"

src_bluetoothd_SHORTNAME = bluetoothd
builtin_files = src/builtin.h $(builtin_nodist)
nodist_src_bluetoothd_SOURCES = $(builtin_files)
man_MANS = src/bluetoothd.8
@ALSA_TRUE@alsadir = $(libdir)/alsa-lib
@ALSA_TRUE@alsa_LTLIBRARIES = audio/libasound_module_pcm_bluetooth.la \
@ALSA_TRUE@				audio/libasound_module_ctl_bluetooth.la

@ALSA_TRUE@audio_libasound_module_pcm_bluetooth_la_SOURCES = audio/pcm_bluetooth.c \
@ALSA_TRUE@					audio/rtp.h audio/ipc.h audio/ipc.c

@ALSA_TRUE@audio_libasound_module_pcm_bluetooth_la_LDFLAGS = $(AM_LDFLAGS) -module \
@ALSA_TRUE@						  -avoid-version

@ALSA_TRUE@audio_libasound_module_pcm_bluetooth_la_LIBADD = sbc/libsbc.la \
@ALSA_TRUE@					lib/libbluetooth-private.la @ALSA_LIBS@

@ALSA_TRUE@audio_libasound_module_pcm_bluetooth_la_CFLAGS = $(AM_CFLAGS) @ALSA_CFLAGS@
@ALSA_TRUE@audio_libasound_module_ctl_bluetooth_la_SOURCES = audio/ctl_bluetooth.c \
@ALSA_TRUE@					audio/rtp.h audio/ipc.h audio/ipc.c

@ALSA_TRUE@audio_libasound_module_ctl_bluetooth_la_LDFLAGS = $(AM_LDFLAGS) -module \
@ALSA_TRUE@						  -avoid-version

@ALSA_TRUE@audio_libasound_module_ctl_bluetooth_la_LIBADD = \
@ALSA_TRUE@					lib/libbluetooth-private.la @ALSA_LIBS@

@ALSA_TRUE@audio_libasound_module_ctl_bluetooth_la_CFLAGS = $(AM_CFLAGS) @ALSA_CFLAGS@
@ALSA_TRUE@@DATAFILES_TRUE@alsaconfdir = $(datadir)/alsa
@ALSA_TRUE@@DATAFILES_TRUE@alsaconf_DATA = audio/bluetooth.conf
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@gstreamerdir = $(libdir)/gstreamer-0.10
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@gstreamer_LTLIBRARIES = audio/libgstbluetooth.la
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@audio_libgstbluetooth_la_SOURCES = audio/gstbluetooth.c audio/gstpragma.h \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/gstsbcenc.h audio/gstsbcenc.c \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/gstsbcdec.h audio/gstsbcdec.c \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/gstsbcparse.h audio/gstsbcparse.c \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/gstavdtpsink.h audio/gstavdtpsink.c \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/gsta2dpsink.h audio/gsta2dpsink.c \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/gstsbcutil.h audio/gstsbcutil.c \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/gstrtpsbcpay.h audio/gstrtpsbcpay.c \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@				audio/rtp.h audio/ipc.h audio/ipc.c

@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@audio_libgstbluetooth_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@audio_libgstbluetooth_la_LIBADD = sbc/libsbc.la lib/libbluetooth-private.la \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@						@DBUS_LIBS@ @GSTREAMER_LIBS@ \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@						-lgstaudio-0.10 -lgstrtp-0.10

@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@audio_libgstbluetooth_la_CFLAGS = -fvisibility=hidden -fno-strict-aliasing \
@AUDIOPLUGIN_TRUE@@GSTREAMER_TRUE@                               $(AM_CFLAGS) @DBUS_CFLAGS@ @GSTREAMER_CFLAGS@

@TOOLS_TRUE@tools_rfcomm_SOURCES = tools/rfcomm.c tools/parser.y tools/lexer.l \
@TOOLS_TRUE@					tools/kword.h tools/kword.c

@TOOLS_TRUE@EXTRA_tools_rfcomm_SOURCES = tools/parser.h tools/parser.c \
@TOOLS_TRUE@							tools/lexer.c

@TOOLS_TRUE@tools_rfcomm_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_l2ping_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_hciattach_SOURCES = tools/hciattach.c tools/hciattach.h \
@TOOLS_TRUE@						tools/hciattach_st.c \
@TOOLS_TRUE@						tools/hciattach_ti.c \
@TOOLS_TRUE@						tools/hciattach_tialt.c \
@TOOLS_TRUE@						tools/hciattach_ath3k.c \
@TOOLS_TRUE@						tools/hciattach_qualcomm.c \
@TOOLS_TRUE@						tools/hciattach_intel.c

@TOOLS_TRUE@tools_hciattach_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_hciconfig_SOURCES = tools/hciconfig.c tools/csr.h tools/csr.c \
@TOOLS_TRUE@						src/textfile.h src/textfile.c

@TOOLS_TRUE@tools_hciconfig_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_hcitool_SOURCES = tools/hcitool.c src/oui.h src/oui.c \
@TOOLS_TRUE@						src/textfile.h src/textfile.c

@TOOLS_TRUE@tools_hcitool_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_sdptool_SOURCES = tools/sdptool.c src/sdp-xml.h src/sdp-xml.c
@TOOLS_TRUE@tools_sdptool_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_ciptool_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_avinfo_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_ppporc_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@tools_hcieventmask_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@mgmt_btmgmt_SOURCES = mgmt/main.c src/glib-helper.c
@TOOLS_TRUE@mgmt_btmgmt_LDADD = lib/libbluetooth-private.la @GLIB_LIBS@
@TOOLS_TRUE@monitor_btmon_SOURCES = monitor/main.c monitor/bt.h \
@TOOLS_TRUE@					monitor/mainloop.h monitor/mainloop.c \
@TOOLS_TRUE@					monitor/hcidump.h monitor/hcidump.c \
@TOOLS_TRUE@					monitor/btsnoop.h monitor/btsnoop.c \
@TOOLS_TRUE@					monitor/control.h monitor/control.c \
@TOOLS_TRUE@					monitor/packet.h monitor/packet.c

@TOOLS_TRUE@monitor_btmon_LDADD = lib/libbluetooth-private.la
@TOOLS_TRUE@emulator_btvirt_SOURCES = emulator/main.c monitor/bt.h \
@TOOLS_TRUE@					monitor/mainloop.h monitor/mainloop.c \
@TOOLS_TRUE@					emulator/server.h emulator/server.c \
@TOOLS_TRUE@					emulator/vhci.h emulator/vhci.c \
@TOOLS_TRUE@					emulator/btdev.h emulator/btdev.c

@READLINE_TRUE@@TOOLS_TRUE@attrib_gatttool_SOURCES = attrib/gatttool.c attrib/att.c attrib/gatt.c \
@READLINE_TRUE@@TOOLS_TRUE@				attrib/gattrib.c btio/btio.c \
@READLINE_TRUE@@TOOLS_TRUE@				attrib/gatttool.h attrib/interactive.c \
@READLINE_TRUE@@TOOLS_TRUE@				attrib/utils.c src/log.c

@READLINE_TRUE@@TOOLS_TRUE@attrib_gatttool_LDADD = lib/libbluetooth-private.la @GLIB_LIBS@ @READLINE_LIBS@
@BCCMD_TRUE@tools_bccmd_SOURCES = tools/bccmd.c tools/csr.h \
@BCCMD_TRUE@	tools/csr.c tools/csr_hci.c tools/csr_h4.c \
@BCCMD_TRUE@	tools/csr_3wire.c tools/csr_bcsp.c tools/ubcsp.h \
@BCCMD_TRUE@	tools/ubcsp.c $(am__append_46)
@BCCMD_TRUE@tools_bccmd_LDADD = lib/libbluetooth-private.la \
@BCCMD_TRUE@	$(am__append_47)
@DATAFILES_TRUE@@PCMCIA_TRUE@udevdir = @UDEV_DIR@
@HID2HCI_TRUE@udevdir = @UDEV_DIR@
@HID2HCI_TRUE@tools_hid2hci_LDADD = @USB_LIBS@ @UDEV_LIBS@
@DFUTOOL_TRUE@tools_dfutool_SOURCES = tools/dfutool.c tools/dfu.h tools/dfu.c
@DFUTOOL_TRUE@tools_dfutool_LDADD = @USB_LIBS@
@USB_TRUE@tools_dfubabel_LDADD = @USB_LIBS@
@USB_TRUE@tools_avctrl_LDADD = @USB_LIBS@
@CUPS_TRUE@cupsdir = $(libdir)/cups/backend
@CUPS_TRUE@cups_bluetooth_SOURCES = $(gdbus_sources) cups/main.c cups/cups.h \
@CUPS_TRUE@					cups/sdp.c cups/spp.c cups/hcrp.c

@CUPS_TRUE@cups_bluetooth_LDADD = @GLIB_LIBS@ @DBUS_LIBS@ lib/libbluetooth-private.la
@TEST_TRUE@test_hciemu_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_l2test_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_rctest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_gaptest_LDADD = @DBUS_LIBS@
@TEST_TRUE@test_sdptest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_scotest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_attest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_hstest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_avtest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_lmptest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_ipctest_SOURCES = test/ipctest.c audio/ipc.h audio/ipc.c
@TEST_TRUE@test_ipctest_LDADD = @GLIB_LIBS@ sbc/libsbc.la
@TEST_TRUE@test_bdaddr_SOURCES = test/bdaddr.c src/oui.h src/oui.c
@TEST_TRUE@test_bdaddr_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_agent_LDADD = @DBUS_LIBS@
@TEST_TRUE@test_btiotest_SOURCES = test/btiotest.c btio/btio.h btio/btio.c
@TEST_TRUE@test_btiotest_LDADD = @GLIB_LIBS@ lib/libbluetooth-private.la
@TEST_TRUE@test_uuidtest_SOURCES = test/uuidtest.c
@TEST_TRUE@test_uuidtest_LDADD = lib/libbluetooth-private.la
@TEST_TRUE@test_mpris_player_SOURCES = test/mpris-player.c
@TEST_TRUE@test_mpris_player_LDADD = @DBUS_LIBS@ @GLIB_LIBS@
@TEST_TRUE@test_test_textfile_SOURCES = test/test-textfile.c src/textfile.h src/textfile.c
@HIDD_TRUE@compat_hidd_SOURCES = compat/hidd.c compat/hidd.h src/uinput.h \
@HIDD_TRUE@				compat/sdp.h compat/sdp.c compat/fakehid.c \
@HIDD_TRUE@						src/textfile.h src/textfile.c

@HIDD_TRUE@compat_hidd_LDADD = -lm lib/libbluetooth-private.la
@PAND_TRUE@compat_pand_SOURCES = compat/pand.c compat/pand.h \
@PAND_TRUE@				compat/bnep.c compat/sdp.h compat/sdp.c \
@PAND_TRUE@						src/textfile.h src/textfile.c

@PAND_TRUE@compat_pand_LDADD = lib/libbluetooth-private.la
@DUND_TRUE@compat_dund_SOURCES = compat/dund.c compat/dund.h compat/lib.h \
@DUND_TRUE@			compat/sdp.h compat/sdp.c compat/dun.c compat/msdun.c \
@DUND_TRUE@						src/textfile.h src/textfile.c

@DUND_TRUE@compat_dund_LDADD = lib/libbluetooth-private.la
@DATAFILES_TRUE@rulesdir = @UDEV_DIR@/rules.d
@DATAFILES_TRUE@udev_files = $(am__append_71) $(am__append_72)
@DATAFILES_TRUE@@PCMCIA_TRUE@dist_udev_SCRIPTS = scripts/bluetooth_serial
@DATAFILES_TRUE@rules_DATA = $(foreach file,$(udev_files), scripts/97-$(notdir $(file)))
AM_YFLAGS = -d
INCLUDES = -I$(builddir)/lib -I$(builddir)/src -I$(srcdir)/src \
	-I$(srcdir)/audio -I$(srcdir)/sbc -I$(srcdir)/gdbus \
	-I$(srcdir)/attrib -I$(srcdir)/btio -I$(srcdir)/tools \
	-I$(builddir)/tools -I$(srcdir)/monitor $(am__append_73)
unit_objects = $(am__append_74)
@TEST_FALSE@unit_tests = 
@TEST_TRUE@unit_tests = unit/test-eir
@TEST_TRUE@unit_test_eir_SOURCES = unit/test-eir.c src/eir.c src/glib-helper.c
@TEST_TRUE@unit_test_eir_LDADD = lib/libbluetooth-private.la @GLIB_LIBS@ @CHECK_LIBS@
@TEST_TRUE@unit_test_eir_CFLAGS = $(AM_CFLAGS) @CHECK_CFLAGS@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = bluez.pc
DISTCHECK_CONFIGURE_FLAGS = --disable-datafiles
DISTCLEANFILES = $(pkgconfig_DATA)
MAINTAINERCLEANFILES = Makefile.in \
	aclocal.m4 configure config.h.in config.sub config.guess \
	ltmain.sh depcomp compile missing install-sh mkinstalldirs ylwrap

all: $(BUILT_SOURCES) config.h
	$(MAKE) $(AM_MAKEFLAGS) all-am

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

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

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

config.h: stamp-h1
	@if test ! -f $@; then rm -f stamp-h1; else :; fi
	@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi

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

distclean-hdr:
	-rm -f config.h stamp-h1
doc/version.xml: $(top_builddir)/config.status $(top_srcdir)/doc/version.xml.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
src/bluetoothd.8: $(top_builddir)/config.status $(top_srcdir)/src/bluetoothd.8.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
src/bluetooth.service: $(top_builddir)/config.status $(top_srcdir)/src/bluetooth.service.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
bluez.pc: $(top_builddir)/config.status $(srcdir)/bluez.pc.in
	cd $(top_builddir) && $(SHELL) ./config.status $@

clean-noinstLIBRARIES:
	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
audio/$(am__dirstamp):
	@$(MKDIR_P) audio
	@: > audio/$(am__dirstamp)
audio/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) audio/$(DEPDIR)
	@: > audio/$(DEPDIR)/$(am__dirstamp)
audio/telephony-dummy.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/telephony-maemo5.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/telephony-ofono.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/telephony-maemo6.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/libtelephony.a: $(audio_libtelephony_a_OBJECTS) $(audio_libtelephony_a_DEPENDENCIES) $(EXTRA_audio_libtelephony_a_DEPENDENCIES) audio/$(am__dirstamp)
	$(AM_V_at)-rm -f audio/libtelephony.a
	$(AM_V_AR)$(audio_libtelephony_a_AR) audio/libtelephony.a $(audio_libtelephony_a_OBJECTS) $(audio_libtelephony_a_LIBADD)
	$(AM_V_at)$(RANLIB) audio/libtelephony.a
sap/$(am__dirstamp):
	@$(MKDIR_P) sap
	@: > sap/$(am__dirstamp)
sap/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) sap/$(DEPDIR)
	@: > sap/$(DEPDIR)/$(am__dirstamp)
sap/sap-dummy.$(OBJEXT): sap/$(am__dirstamp) \
	sap/$(DEPDIR)/$(am__dirstamp)
sap/sap-u8500.$(OBJEXT): sap/$(am__dirstamp) \
	sap/$(DEPDIR)/$(am__dirstamp)
sap/libsap.a: $(sap_libsap_a_OBJECTS) $(sap_libsap_a_DEPENDENCIES) $(EXTRA_sap_libsap_a_DEPENDENCIES) sap/$(am__dirstamp)
	$(AM_V_at)-rm -f sap/libsap.a
	$(AM_V_AR)$(sap_libsap_a_AR) sap/libsap.a $(sap_libsap_a_OBJECTS) $(sap_libsap_a_LIBADD)
	$(AM_V_at)$(RANLIB) sap/libsap.a
install-alsaLTLIBRARIES: $(alsa_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(alsadir)" || $(MKDIR_P) "$(DESTDIR)$(alsadir)"
	@list='$(alsa_LTLIBRARIES)'; test -n "$(alsadir)" || 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)$(alsadir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(alsadir)"; \
	}

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

clean-alsaLTLIBRARIES:
	-test -z "$(alsa_LTLIBRARIES)" || rm -f $(alsa_LTLIBRARIES)
	@list='$(alsa_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
install-gstreamerLTLIBRARIES: $(gstreamer_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(gstreamerdir)" || $(MKDIR_P) "$(DESTDIR)$(gstreamerdir)"
	@list='$(gstreamer_LTLIBRARIES)'; test -n "$(gstreamerdir)" || 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)$(gstreamerdir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(gstreamerdir)"; \
	}

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

clean-gstreamerLTLIBRARIES:
	-test -z "$(gstreamer_LTLIBRARIES)" || rm -f $(gstreamer_LTLIBRARIES)
	@list='$(gstreamer_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
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
	@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || 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)$(libdir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
	}

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

clean-libLTLIBRARIES:
	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
	@list='$(lib_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

clean-noinstLTLIBRARIES:
	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
	@list='$(noinst_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
install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)"
	@list='$(plugin_LTLIBRARIES)'; test -n "$(plugindir)" || 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)$(plugindir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(plugindir)"; \
	}

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

clean-pluginLTLIBRARIES:
	-test -z "$(plugin_LTLIBRARIES)" || rm -f $(plugin_LTLIBRARIES)
	@list='$(plugin_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
audio/audio_libasound_module_ctl_bluetooth_la-ctl_bluetooth.lo:  \
	audio/$(am__dirstamp) audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libasound_module_ctl_bluetooth_la-ipc.lo:  \
	audio/$(am__dirstamp) audio/$(DEPDIR)/$(am__dirstamp)
audio/libasound_module_ctl_bluetooth.la: $(audio_libasound_module_ctl_bluetooth_la_OBJECTS) $(audio_libasound_module_ctl_bluetooth_la_DEPENDENCIES) $(EXTRA_audio_libasound_module_ctl_bluetooth_la_DEPENDENCIES) audio/$(am__dirstamp)
	$(AM_V_CCLD)$(audio_libasound_module_ctl_bluetooth_la_LINK) $(am_audio_libasound_module_ctl_bluetooth_la_rpath) $(audio_libasound_module_ctl_bluetooth_la_OBJECTS) $(audio_libasound_module_ctl_bluetooth_la_LIBADD) $(LIBS)
audio/audio_libasound_module_pcm_bluetooth_la-pcm_bluetooth.lo:  \
	audio/$(am__dirstamp) audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libasound_module_pcm_bluetooth_la-ipc.lo:  \
	audio/$(am__dirstamp) audio/$(DEPDIR)/$(am__dirstamp)
audio/libasound_module_pcm_bluetooth.la: $(audio_libasound_module_pcm_bluetooth_la_OBJECTS) $(audio_libasound_module_pcm_bluetooth_la_DEPENDENCIES) $(EXTRA_audio_libasound_module_pcm_bluetooth_la_DEPENDENCIES) audio/$(am__dirstamp)
	$(AM_V_CCLD)$(audio_libasound_module_pcm_bluetooth_la_LINK) $(am_audio_libasound_module_pcm_bluetooth_la_rpath) $(audio_libasound_module_pcm_bluetooth_la_OBJECTS) $(audio_libasound_module_pcm_bluetooth_la_LIBADD) $(LIBS)
audio/audio_libgstbluetooth_la-gstbluetooth.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-gstsbcenc.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-gstsbcdec.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-gstsbcparse.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-gstavdtpsink.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-gsta2dpsink.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-gstsbcutil.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-gstrtpsbcpay.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/audio_libgstbluetooth_la-ipc.lo: audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/libgstbluetooth.la: $(audio_libgstbluetooth_la_OBJECTS) $(audio_libgstbluetooth_la_DEPENDENCIES) $(EXTRA_audio_libgstbluetooth_la_DEPENDENCIES) audio/$(am__dirstamp)
	$(AM_V_CCLD)$(audio_libgstbluetooth_la_LINK) $(am_audio_libgstbluetooth_la_rpath) $(audio_libgstbluetooth_la_OBJECTS) $(audio_libgstbluetooth_la_LIBADD) $(LIBS)
lib/$(am__dirstamp):
	@$(MKDIR_P) lib
	@: > lib/$(am__dirstamp)
lib/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) lib/$(DEPDIR)
	@: > lib/$(DEPDIR)/$(am__dirstamp)
lib/bluetooth.lo: lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
lib/hci.lo: lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
lib/sdp.lo: lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
lib/uuid.lo: lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
lib/libbluetooth-private.la: $(lib_libbluetooth_private_la_OBJECTS) $(lib_libbluetooth_private_la_DEPENDENCIES) $(EXTRA_lib_libbluetooth_private_la_DEPENDENCIES) lib/$(am__dirstamp)
	$(AM_V_CCLD)$(LINK)  $(lib_libbluetooth_private_la_OBJECTS) $(lib_libbluetooth_private_la_LIBADD) $(LIBS)
lib/libbluetooth.la: $(lib_libbluetooth_la_OBJECTS) $(lib_libbluetooth_la_DEPENDENCIES) $(EXTRA_lib_libbluetooth_la_DEPENDENCIES) lib/$(am__dirstamp)
	$(AM_V_CCLD)$(lib_libbluetooth_la_LINK) -rpath $(libdir) $(lib_libbluetooth_la_OBJECTS) $(lib_libbluetooth_la_LIBADD) $(LIBS)
plugins/$(am__dirstamp):
	@$(MKDIR_P) plugins
	@: > plugins/$(am__dirstamp)
plugins/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) plugins/$(DEPDIR)
	@: > plugins/$(DEPDIR)/$(am__dirstamp)
plugins/plugins_external_dummy_la-external-dummy.lo:  \
	plugins/$(am__dirstamp) plugins/$(DEPDIR)/$(am__dirstamp)
plugins/external-dummy.la: $(plugins_external_dummy_la_OBJECTS) $(plugins_external_dummy_la_DEPENDENCIES) $(EXTRA_plugins_external_dummy_la_DEPENDENCIES) plugins/$(am__dirstamp)
	$(AM_V_CCLD)$(plugins_external_dummy_la_LINK) $(am_plugins_external_dummy_la_rpath) $(plugins_external_dummy_la_OBJECTS) $(plugins_external_dummy_la_LIBADD) $(LIBS)
sbc/$(am__dirstamp):
	@$(MKDIR_P) sbc
	@: > sbc/$(am__dirstamp)
sbc/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) sbc/$(DEPDIR)
	@: > sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbc_libsbc_la-sbc.lo: sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbc_libsbc_la-sbc_primitives.lo: sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbc_libsbc_la-sbc_primitives_mmx.lo: sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbc_libsbc_la-sbc_primitives_iwmmxt.lo: sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbc_libsbc_la-sbc_primitives_neon.lo: sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbc_libsbc_la-sbc_primitives_armv6.lo: sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/libsbc.la: $(sbc_libsbc_la_OBJECTS) $(sbc_libsbc_la_DEPENDENCIES) $(EXTRA_sbc_libsbc_la_DEPENDENCIES) sbc/$(am__dirstamp)
	$(AM_V_CCLD)$(sbc_libsbc_la_LINK) $(am_sbc_libsbc_la_rpath) $(sbc_libsbc_la_OBJECTS) $(sbc_libsbc_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
install-cupsPROGRAMS: $(cups_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(cupsdir)" || $(MKDIR_P) "$(DESTDIR)$(cupsdir)"
	@list='$(cups_PROGRAMS)'; test -n "$(cupsdir)" || 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)$(cupsdir)$$dir'"; \
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(cupsdir)$$dir" || exit $$?; \
	    } \
	; done

uninstall-cupsPROGRAMS:
	@$(NORMAL_UNINSTALL)
	@list='$(cups_PROGRAMS)'; test -n "$(cupsdir)" || 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)$(cupsdir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(cupsdir)" && rm -f $$files

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

clean-noinstPROGRAMS:
	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
	echo " rm -f" $$list; \
	rm -f $$list || exit $$?; \
	test -n "$(EXEEXT)" || exit 0; \
	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
	echo " rm -f" $$list; \
	rm -f $$list
install-sbinPROGRAMS: $(sbin_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || 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)$(sbindir)$$dir'"; \
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
	    } \
	; done

uninstall-sbinPROGRAMS:
	@$(NORMAL_UNINSTALL)
	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || 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)$(sbindir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(sbindir)" && rm -f $$files

clean-sbinPROGRAMS:
	@list='$(sbin_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
install-udevPROGRAMS: $(udev_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(udevdir)" || $(MKDIR_P) "$(DESTDIR)$(udevdir)"
	@list='$(udev_PROGRAMS)'; test -n "$(udevdir)" || 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)$(udevdir)$$dir'"; \
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(udevdir)$$dir" || exit $$?; \
	    } \
	; done

uninstall-udevPROGRAMS:
	@$(NORMAL_UNINSTALL)
	@list='$(udev_PROGRAMS)'; test -n "$(udevdir)" || 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)$(udevdir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(udevdir)" && rm -f $$files

clean-udevPROGRAMS:
	@list='$(udev_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
attrib/$(am__dirstamp):
	@$(MKDIR_P) attrib
	@: > attrib/$(am__dirstamp)
attrib/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) attrib/$(DEPDIR)
	@: > attrib/$(DEPDIR)/$(am__dirstamp)
attrib/gatttool.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/att.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/gatt.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/gattrib.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
btio/$(am__dirstamp):
	@$(MKDIR_P) btio
	@: > btio/$(am__dirstamp)
btio/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) btio/$(DEPDIR)
	@: > btio/$(DEPDIR)/$(am__dirstamp)
btio/btio.$(OBJEXT): btio/$(am__dirstamp) \
	btio/$(DEPDIR)/$(am__dirstamp)
attrib/interactive.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/utils.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
src/$(am__dirstamp):
	@$(MKDIR_P) src
	@: > src/$(am__dirstamp)
src/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/$(DEPDIR)
	@: > src/$(DEPDIR)/$(am__dirstamp)
src/log.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
attrib/gatttool$(EXEEXT): $(attrib_gatttool_OBJECTS) $(attrib_gatttool_DEPENDENCIES) $(EXTRA_attrib_gatttool_DEPENDENCIES) attrib/$(am__dirstamp)
	@rm -f attrib/gatttool$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(attrib_gatttool_OBJECTS) $(attrib_gatttool_LDADD) $(LIBS)
compat/$(am__dirstamp):
	@$(MKDIR_P) compat
	@: > compat/$(am__dirstamp)
compat/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) compat/$(DEPDIR)
	@: > compat/$(DEPDIR)/$(am__dirstamp)
compat/dund.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
compat/sdp.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
compat/dun.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
compat/msdun.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
src/textfile.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
compat/dund$(EXEEXT): $(compat_dund_OBJECTS) $(compat_dund_DEPENDENCIES) $(EXTRA_compat_dund_DEPENDENCIES) compat/$(am__dirstamp)
	@rm -f compat/dund$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(compat_dund_OBJECTS) $(compat_dund_LDADD) $(LIBS)
compat/hidd.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
compat/fakehid.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
compat/hidd$(EXEEXT): $(compat_hidd_OBJECTS) $(compat_hidd_DEPENDENCIES) $(EXTRA_compat_hidd_DEPENDENCIES) compat/$(am__dirstamp)
	@rm -f compat/hidd$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(compat_hidd_OBJECTS) $(compat_hidd_LDADD) $(LIBS)
compat/pand.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
compat/bnep.$(OBJEXT): compat/$(am__dirstamp) \
	compat/$(DEPDIR)/$(am__dirstamp)
compat/pand$(EXEEXT): $(compat_pand_OBJECTS) $(compat_pand_DEPENDENCIES) $(EXTRA_compat_pand_DEPENDENCIES) compat/$(am__dirstamp)
	@rm -f compat/pand$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(compat_pand_OBJECTS) $(compat_pand_LDADD) $(LIBS)
gdbus/$(am__dirstamp):
	@$(MKDIR_P) gdbus
	@: > gdbus/$(am__dirstamp)
gdbus/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) gdbus/$(DEPDIR)
	@: > gdbus/$(DEPDIR)/$(am__dirstamp)
gdbus/mainloop.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
gdbus/watch.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
gdbus/object.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
gdbus/polkit.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
cups/$(am__dirstamp):
	@$(MKDIR_P) cups
	@: > cups/$(am__dirstamp)
cups/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) cups/$(DEPDIR)
	@: > cups/$(DEPDIR)/$(am__dirstamp)
cups/main.$(OBJEXT): cups/$(am__dirstamp) \
	cups/$(DEPDIR)/$(am__dirstamp)
cups/sdp.$(OBJEXT): cups/$(am__dirstamp) \
	cups/$(DEPDIR)/$(am__dirstamp)
cups/spp.$(OBJEXT): cups/$(am__dirstamp) \
	cups/$(DEPDIR)/$(am__dirstamp)
cups/hcrp.$(OBJEXT): cups/$(am__dirstamp) \
	cups/$(DEPDIR)/$(am__dirstamp)
cups/bluetooth$(EXEEXT): $(cups_bluetooth_OBJECTS) $(cups_bluetooth_DEPENDENCIES) $(EXTRA_cups_bluetooth_DEPENDENCIES) cups/$(am__dirstamp)
	@rm -f cups/bluetooth$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(cups_bluetooth_OBJECTS) $(cups_bluetooth_LDADD) $(LIBS)
emulator/$(am__dirstamp):
	@$(MKDIR_P) emulator
	@: > emulator/$(am__dirstamp)
emulator/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) emulator/$(DEPDIR)
	@: > emulator/$(DEPDIR)/$(am__dirstamp)
emulator/main.$(OBJEXT): emulator/$(am__dirstamp) \
	emulator/$(DEPDIR)/$(am__dirstamp)
monitor/$(am__dirstamp):
	@$(MKDIR_P) monitor
	@: > monitor/$(am__dirstamp)
monitor/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) monitor/$(DEPDIR)
	@: > monitor/$(DEPDIR)/$(am__dirstamp)
monitor/mainloop.$(OBJEXT): monitor/$(am__dirstamp) \
	monitor/$(DEPDIR)/$(am__dirstamp)
emulator/server.$(OBJEXT): emulator/$(am__dirstamp) \
	emulator/$(DEPDIR)/$(am__dirstamp)
emulator/vhci.$(OBJEXT): emulator/$(am__dirstamp) \
	emulator/$(DEPDIR)/$(am__dirstamp)
emulator/btdev.$(OBJEXT): emulator/$(am__dirstamp) \
	emulator/$(DEPDIR)/$(am__dirstamp)
emulator/btvirt$(EXEEXT): $(emulator_btvirt_OBJECTS) $(emulator_btvirt_DEPENDENCIES) $(EXTRA_emulator_btvirt_DEPENDENCIES) emulator/$(am__dirstamp)
	@rm -f emulator/btvirt$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(emulator_btvirt_OBJECTS) $(emulator_btvirt_LDADD) $(LIBS)
mgmt/$(am__dirstamp):
	@$(MKDIR_P) mgmt
	@: > mgmt/$(am__dirstamp)
mgmt/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) mgmt/$(DEPDIR)
	@: > mgmt/$(DEPDIR)/$(am__dirstamp)
mgmt/main.$(OBJEXT): mgmt/$(am__dirstamp) \
	mgmt/$(DEPDIR)/$(am__dirstamp)
src/glib-helper.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
mgmt/btmgmt$(EXEEXT): $(mgmt_btmgmt_OBJECTS) $(mgmt_btmgmt_DEPENDENCIES) $(EXTRA_mgmt_btmgmt_DEPENDENCIES) mgmt/$(am__dirstamp)
	@rm -f mgmt/btmgmt$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(mgmt_btmgmt_OBJECTS) $(mgmt_btmgmt_LDADD) $(LIBS)
monitor/main.$(OBJEXT): monitor/$(am__dirstamp) \
	monitor/$(DEPDIR)/$(am__dirstamp)
monitor/hcidump.$(OBJEXT): monitor/$(am__dirstamp) \
	monitor/$(DEPDIR)/$(am__dirstamp)
monitor/btsnoop.$(OBJEXT): monitor/$(am__dirstamp) \
	monitor/$(DEPDIR)/$(am__dirstamp)
monitor/control.$(OBJEXT): monitor/$(am__dirstamp) \
	monitor/$(DEPDIR)/$(am__dirstamp)
monitor/packet.$(OBJEXT): monitor/$(am__dirstamp) \
	monitor/$(DEPDIR)/$(am__dirstamp)
monitor/btmon$(EXEEXT): $(monitor_btmon_OBJECTS) $(monitor_btmon_DEPENDENCIES) $(EXTRA_monitor_btmon_DEPENDENCIES) monitor/$(am__dirstamp)
	@rm -f monitor/btmon$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(monitor_btmon_OBJECTS) $(monitor_btmon_LDADD) $(LIBS)
sbc/sbcdec.$(OBJEXT): sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbcdec$(EXEEXT): $(sbc_sbcdec_OBJECTS) $(sbc_sbcdec_DEPENDENCIES) $(EXTRA_sbc_sbcdec_DEPENDENCIES) sbc/$(am__dirstamp)
	@rm -f sbc/sbcdec$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(sbc_sbcdec_OBJECTS) $(sbc_sbcdec_LDADD) $(LIBS)
sbc/sbcenc.$(OBJEXT): sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbcenc$(EXEEXT): $(sbc_sbcenc_OBJECTS) $(sbc_sbcenc_DEPENDENCIES) $(EXTRA_sbc_sbcenc_DEPENDENCIES) sbc/$(am__dirstamp)
	@rm -f sbc/sbcenc$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(sbc_sbcenc_OBJECTS) $(sbc_sbcenc_LDADD) $(LIBS)
sbc/sbcinfo.$(OBJEXT): sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbcinfo$(EXEEXT): $(sbc_sbcinfo_OBJECTS) $(sbc_sbcinfo_DEPENDENCIES) $(EXTRA_sbc_sbcinfo_DEPENDENCIES) sbc/$(am__dirstamp)
	@rm -f sbc/sbcinfo$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(sbc_sbcinfo_OBJECTS) $(sbc_sbcinfo_LDADD) $(LIBS)
sbc/sbctester.$(OBJEXT): sbc/$(am__dirstamp) \
	sbc/$(DEPDIR)/$(am__dirstamp)
sbc/sbctester$(EXEEXT): $(sbc_sbctester_OBJECTS) $(sbc_sbctester_DEPENDENCIES) $(EXTRA_sbc_sbctester_DEPENDENCIES) sbc/$(am__dirstamp)
	@rm -f sbc/sbctester$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(sbc_sbctester_OBJECTS) $(sbc_sbctester_LDADD) $(LIBS)
gdbus/bluetoothd-mainloop.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
gdbus/bluetoothd-watch.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
gdbus/bluetoothd-object.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
gdbus/bluetoothd-polkit.$(OBJEXT): gdbus/$(am__dirstamp) \
	gdbus/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-pnat.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-main.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-manager.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-gateway.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-headset.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-control.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-avctp.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-avrcp.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-device.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-source.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-sink.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-a2dp.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-avdtp.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-ipc.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-unix.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-media.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-transport.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
sap/bluetoothd-main.$(OBJEXT): sap/$(am__dirstamp) \
	sap/$(DEPDIR)/$(am__dirstamp)
sap/bluetoothd-manager.$(OBJEXT): sap/$(am__dirstamp) \
	sap/$(DEPDIR)/$(am__dirstamp)
sap/bluetoothd-server.$(OBJEXT): sap/$(am__dirstamp) \
	sap/$(DEPDIR)/$(am__dirstamp)
input/$(am__dirstamp):
	@$(MKDIR_P) input
	@: > input/$(am__dirstamp)
input/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) input/$(DEPDIR)
	@: > input/$(DEPDIR)/$(am__dirstamp)
input/bluetoothd-main.$(OBJEXT): input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/bluetoothd-manager.$(OBJEXT): input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/bluetoothd-server.$(OBJEXT): input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/bluetoothd-device.$(OBJEXT): input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/bluetoothd-fakehid.$(OBJEXT): input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
serial/$(am__dirstamp):
	@$(MKDIR_P) serial
	@: > serial/$(am__dirstamp)
serial/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) serial/$(DEPDIR)
	@: > serial/$(DEPDIR)/$(am__dirstamp)
serial/bluetoothd-main.$(OBJEXT): serial/$(am__dirstamp) \
	serial/$(DEPDIR)/$(am__dirstamp)
serial/bluetoothd-manager.$(OBJEXT): serial/$(am__dirstamp) \
	serial/$(DEPDIR)/$(am__dirstamp)
serial/bluetoothd-proxy.$(OBJEXT): serial/$(am__dirstamp) \
	serial/$(DEPDIR)/$(am__dirstamp)
serial/bluetoothd-port.$(OBJEXT): serial/$(am__dirstamp) \
	serial/$(DEPDIR)/$(am__dirstamp)
network/$(am__dirstamp):
	@$(MKDIR_P) network
	@: > network/$(am__dirstamp)
network/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) network/$(DEPDIR)
	@: > network/$(DEPDIR)/$(am__dirstamp)
network/bluetoothd-main.$(OBJEXT): network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/bluetoothd-manager.$(OBJEXT): network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/bluetoothd-common.$(OBJEXT): network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/bluetoothd-server.$(OBJEXT): network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/bluetoothd-connection.$(OBJEXT): network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-service.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
health/$(am__dirstamp):
	@$(MKDIR_P) health
	@: > health/$(am__dirstamp)
health/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) health/$(DEPDIR)
	@: > health/$(DEPDIR)/$(am__dirstamp)
health/bluetoothd-hdp_main.$(OBJEXT): health/$(am__dirstamp) \
	health/$(DEPDIR)/$(am__dirstamp)
health/bluetoothd-hdp_manager.$(OBJEXT): health/$(am__dirstamp) \
	health/$(DEPDIR)/$(am__dirstamp)
health/bluetoothd-hdp.$(OBJEXT): health/$(am__dirstamp) \
	health/$(DEPDIR)/$(am__dirstamp)
health/bluetoothd-hdp_util.$(OBJEXT): health/$(am__dirstamp) \
	health/$(DEPDIR)/$(am__dirstamp)
thermometer/$(am__dirstamp):
	@$(MKDIR_P) thermometer
	@: > thermometer/$(am__dirstamp)
thermometer/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) thermometer/$(DEPDIR)
	@: > thermometer/$(DEPDIR)/$(am__dirstamp)
thermometer/bluetoothd-main.$(OBJEXT): thermometer/$(am__dirstamp) \
	thermometer/$(DEPDIR)/$(am__dirstamp)
thermometer/bluetoothd-manager.$(OBJEXT): thermometer/$(am__dirstamp) \
	thermometer/$(DEPDIR)/$(am__dirstamp)
thermometer/bluetoothd-thermometer.$(OBJEXT):  \
	thermometer/$(am__dirstamp) \
	thermometer/$(DEPDIR)/$(am__dirstamp)
alert/$(am__dirstamp):
	@$(MKDIR_P) alert
	@: > alert/$(am__dirstamp)
alert/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) alert/$(DEPDIR)
	@: > alert/$(DEPDIR)/$(am__dirstamp)
alert/bluetoothd-main.$(OBJEXT): alert/$(am__dirstamp) \
	alert/$(DEPDIR)/$(am__dirstamp)
alert/bluetoothd-server.$(OBJEXT): alert/$(am__dirstamp) \
	alert/$(DEPDIR)/$(am__dirstamp)
time/$(am__dirstamp):
	@$(MKDIR_P) time
	@: > time/$(am__dirstamp)
time/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) time/$(DEPDIR)
	@: > time/$(DEPDIR)/$(am__dirstamp)
time/bluetoothd-main.$(OBJEXT): time/$(am__dirstamp) \
	time/$(DEPDIR)/$(am__dirstamp)
time/bluetoothd-server.$(OBJEXT): time/$(am__dirstamp) \
	time/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-gatt-example.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
proximity/$(am__dirstamp):
	@$(MKDIR_P) proximity
	@: > proximity/$(am__dirstamp)
proximity/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) proximity/$(DEPDIR)
	@: > proximity/$(DEPDIR)/$(am__dirstamp)
proximity/bluetoothd-main.$(OBJEXT): proximity/$(am__dirstamp) \
	proximity/$(DEPDIR)/$(am__dirstamp)
proximity/bluetoothd-manager.$(OBJEXT): proximity/$(am__dirstamp) \
	proximity/$(DEPDIR)/$(am__dirstamp)
proximity/bluetoothd-monitor.$(OBJEXT): proximity/$(am__dirstamp) \
	proximity/$(DEPDIR)/$(am__dirstamp)
proximity/bluetoothd-reporter.$(OBJEXT): proximity/$(am__dirstamp) \
	proximity/$(DEPDIR)/$(am__dirstamp)
proximity/bluetoothd-linkloss.$(OBJEXT): proximity/$(am__dirstamp) \
	proximity/$(DEPDIR)/$(am__dirstamp)
proximity/bluetoothd-immalert.$(OBJEXT): proximity/$(am__dirstamp) \
	proximity/$(DEPDIR)/$(am__dirstamp)
deviceinfo/$(am__dirstamp):
	@$(MKDIR_P) deviceinfo
	@: > deviceinfo/$(am__dirstamp)
deviceinfo/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) deviceinfo/$(DEPDIR)
	@: > deviceinfo/$(DEPDIR)/$(am__dirstamp)
deviceinfo/bluetoothd-main.$(OBJEXT): deviceinfo/$(am__dirstamp) \
	deviceinfo/$(DEPDIR)/$(am__dirstamp)
deviceinfo/bluetoothd-manager.$(OBJEXT): deviceinfo/$(am__dirstamp) \
	deviceinfo/$(DEPDIR)/$(am__dirstamp)
deviceinfo/bluetoothd-deviceinfo.$(OBJEXT):  \
	deviceinfo/$(am__dirstamp) \
	deviceinfo/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-hciops.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-mgmtops.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-hal.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-formfactor.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-storage.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-adaptername.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-wiimote.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-maemo6.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
plugins/bluetoothd-dbusoob.$(OBJEXT): plugins/$(am__dirstamp) \
	plugins/$(DEPDIR)/$(am__dirstamp)
attrib/bluetoothd-att.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/bluetoothd-gatt.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/bluetoothd-gattrib.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/bluetoothd-client.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
attrib/bluetoothd-gatt-service.$(OBJEXT): attrib/$(am__dirstamp) \
	attrib/$(DEPDIR)/$(am__dirstamp)
btio/bluetoothd-btio.$(OBJEXT): btio/$(am__dirstamp) \
	btio/$(DEPDIR)/$(am__dirstamp)
health/bluetoothd-mcap.$(OBJEXT): health/$(am__dirstamp) \
	health/$(DEPDIR)/$(am__dirstamp)
health/bluetoothd-mcap_sync.$(OBJEXT): health/$(am__dirstamp) \
	health/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-main.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-log.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-rfkill.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-sdpd-server.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-sdpd-request.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-sdpd-service.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-sdpd-database.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-attrib-server.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-sdp-xml.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-sdp-client.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-textfile.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-glib-helper.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-oui.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-plugin.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-storage.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-agent.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-error.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-manager.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-adapter.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-device.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-dbus-common.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-event.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-oob.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd-eir.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
audio/bluetoothd-telephony.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
sap/bluetoothd-sap.$(OBJEXT): sap/$(am__dirstamp) \
	sap/$(DEPDIR)/$(am__dirstamp)
src/bluetoothd$(EXEEXT): $(src_bluetoothd_OBJECTS) $(src_bluetoothd_DEPENDENCIES) $(EXTRA_src_bluetoothd_DEPENDENCIES) src/$(am__dirstamp)
	@rm -f src/bluetoothd$(EXEEXT)
	$(AM_V_CCLD)$(src_bluetoothd_LINK) $(src_bluetoothd_OBJECTS) $(src_bluetoothd_LDADD) $(LIBS)
test/$(am__dirstamp):
	@$(MKDIR_P) test
	@: > test/$(am__dirstamp)
test/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) test/$(DEPDIR)
	@: > test/$(DEPDIR)/$(am__dirstamp)
test/agent.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/agent$(EXEEXT): $(test_agent_OBJECTS) $(test_agent_DEPENDENCIES) $(EXTRA_test_agent_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/agent$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_agent_OBJECTS) $(test_agent_LDADD) $(LIBS)
test/attest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/attest$(EXEEXT): $(test_attest_OBJECTS) $(test_attest_DEPENDENCIES) $(EXTRA_test_attest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/attest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_attest_OBJECTS) $(test_attest_LDADD) $(LIBS)
test/avtest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/avtest$(EXEEXT): $(test_avtest_OBJECTS) $(test_avtest_DEPENDENCIES) $(EXTRA_test_avtest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/avtest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_avtest_OBJECTS) $(test_avtest_LDADD) $(LIBS)
test/bdaddr.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
src/oui.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
test/bdaddr$(EXEEXT): $(test_bdaddr_OBJECTS) $(test_bdaddr_DEPENDENCIES) $(EXTRA_test_bdaddr_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/bdaddr$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_bdaddr_OBJECTS) $(test_bdaddr_LDADD) $(LIBS)
test/btiotest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/btiotest$(EXEEXT): $(test_btiotest_OBJECTS) $(test_btiotest_DEPENDENCIES) $(EXTRA_test_btiotest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/btiotest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_btiotest_OBJECTS) $(test_btiotest_LDADD) $(LIBS)
test/gaptest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/gaptest$(EXEEXT): $(test_gaptest_OBJECTS) $(test_gaptest_DEPENDENCIES) $(EXTRA_test_gaptest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/gaptest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_gaptest_OBJECTS) $(test_gaptest_LDADD) $(LIBS)
test/hciemu.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/hciemu$(EXEEXT): $(test_hciemu_OBJECTS) $(test_hciemu_DEPENDENCIES) $(EXTRA_test_hciemu_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/hciemu$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_hciemu_OBJECTS) $(test_hciemu_LDADD) $(LIBS)
test/hstest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/hstest$(EXEEXT): $(test_hstest_OBJECTS) $(test_hstest_DEPENDENCIES) $(EXTRA_test_hstest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/hstest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_hstest_OBJECTS) $(test_hstest_LDADD) $(LIBS)
test/ipctest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
audio/ipc.$(OBJEXT): audio/$(am__dirstamp) \
	audio/$(DEPDIR)/$(am__dirstamp)
test/ipctest$(EXEEXT): $(test_ipctest_OBJECTS) $(test_ipctest_DEPENDENCIES) $(EXTRA_test_ipctest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/ipctest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_ipctest_OBJECTS) $(test_ipctest_LDADD) $(LIBS)
test/l2test.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/l2test$(EXEEXT): $(test_l2test_OBJECTS) $(test_l2test_DEPENDENCIES) $(EXTRA_test_l2test_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/l2test$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_l2test_OBJECTS) $(test_l2test_LDADD) $(LIBS)
test/lmptest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/lmptest$(EXEEXT): $(test_lmptest_OBJECTS) $(test_lmptest_DEPENDENCIES) $(EXTRA_test_lmptest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/lmptest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_lmptest_OBJECTS) $(test_lmptest_LDADD) $(LIBS)
test/mpris-player.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/mpris-player$(EXEEXT): $(test_mpris_player_OBJECTS) $(test_mpris_player_DEPENDENCIES) $(EXTRA_test_mpris_player_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/mpris-player$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_mpris_player_OBJECTS) $(test_mpris_player_LDADD) $(LIBS)
test/rctest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/rctest$(EXEEXT): $(test_rctest_OBJECTS) $(test_rctest_DEPENDENCIES) $(EXTRA_test_rctest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/rctest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_rctest_OBJECTS) $(test_rctest_LDADD) $(LIBS)
test/scotest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/scotest$(EXEEXT): $(test_scotest_OBJECTS) $(test_scotest_DEPENDENCIES) $(EXTRA_test_scotest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/scotest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_scotest_OBJECTS) $(test_scotest_LDADD) $(LIBS)
test/sdptest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/sdptest$(EXEEXT): $(test_sdptest_OBJECTS) $(test_sdptest_DEPENDENCIES) $(EXTRA_test_sdptest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/sdptest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_sdptest_OBJECTS) $(test_sdptest_LDADD) $(LIBS)
test/test-textfile.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/test-textfile$(EXEEXT): $(test_test_textfile_OBJECTS) $(test_test_textfile_DEPENDENCIES) $(EXTRA_test_test_textfile_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/test-textfile$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_test_textfile_OBJECTS) $(test_test_textfile_LDADD) $(LIBS)
test/uuidtest.$(OBJEXT): test/$(am__dirstamp) \
	test/$(DEPDIR)/$(am__dirstamp)
test/uuidtest$(EXEEXT): $(test_uuidtest_OBJECTS) $(test_uuidtest_DEPENDENCIES) $(EXTRA_test_uuidtest_DEPENDENCIES) test/$(am__dirstamp)
	@rm -f test/uuidtest$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(test_uuidtest_OBJECTS) $(test_uuidtest_LDADD) $(LIBS)
tools/$(am__dirstamp):
	@$(MKDIR_P) tools
	@: > tools/$(am__dirstamp)
tools/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) tools/$(DEPDIR)
	@: > tools/$(DEPDIR)/$(am__dirstamp)
tools/avctrl.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/avctrl$(EXEEXT): $(tools_avctrl_OBJECTS) $(tools_avctrl_DEPENDENCIES) $(EXTRA_tools_avctrl_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/avctrl$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_avctrl_OBJECTS) $(tools_avctrl_LDADD) $(LIBS)
tools/avinfo.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/avinfo$(EXEEXT): $(tools_avinfo_OBJECTS) $(tools_avinfo_DEPENDENCIES) $(EXTRA_tools_avinfo_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/avinfo$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_avinfo_OBJECTS) $(tools_avinfo_LDADD) $(LIBS)
tools/bccmd.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/csr.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/csr_hci.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/csr_h4.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/csr_3wire.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/csr_bcsp.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/ubcsp.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/csr_usb.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/bccmd$(EXEEXT): $(tools_bccmd_OBJECTS) $(tools_bccmd_DEPENDENCIES) $(EXTRA_tools_bccmd_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/bccmd$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_bccmd_OBJECTS) $(tools_bccmd_LDADD) $(LIBS)
tools/ciptool.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/ciptool$(EXEEXT): $(tools_ciptool_OBJECTS) $(tools_ciptool_DEPENDENCIES) $(EXTRA_tools_ciptool_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/ciptool$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_ciptool_OBJECTS) $(tools_ciptool_LDADD) $(LIBS)
tools/dfubabel.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/dfubabel$(EXEEXT): $(tools_dfubabel_OBJECTS) $(tools_dfubabel_DEPENDENCIES) $(EXTRA_tools_dfubabel_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/dfubabel$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_dfubabel_OBJECTS) $(tools_dfubabel_LDADD) $(LIBS)
tools/dfutool.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/dfu.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/dfutool$(EXEEXT): $(tools_dfutool_OBJECTS) $(tools_dfutool_DEPENDENCIES) $(EXTRA_tools_dfutool_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/dfutool$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_dfutool_OBJECTS) $(tools_dfutool_LDADD) $(LIBS)
tools/hciattach.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciattach_st.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciattach_ti.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciattach_tialt.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciattach_ath3k.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciattach_qualcomm.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciattach_intel.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciattach$(EXEEXT): $(tools_hciattach_OBJECTS) $(tools_hciattach_DEPENDENCIES) $(EXTRA_tools_hciattach_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/hciattach$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_hciattach_OBJECTS) $(tools_hciattach_LDADD) $(LIBS)
tools/hciconfig.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hciconfig$(EXEEXT): $(tools_hciconfig_OBJECTS) $(tools_hciconfig_DEPENDENCIES) $(EXTRA_tools_hciconfig_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/hciconfig$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_hciconfig_OBJECTS) $(tools_hciconfig_LDADD) $(LIBS)
tools/hcieventmask.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hcieventmask$(EXEEXT): $(tools_hcieventmask_OBJECTS) $(tools_hcieventmask_DEPENDENCIES) $(EXTRA_tools_hcieventmask_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/hcieventmask$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_hcieventmask_OBJECTS) $(tools_hcieventmask_LDADD) $(LIBS)
tools/hcisecfilter.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hcisecfilter$(EXEEXT): $(tools_hcisecfilter_OBJECTS) $(tools_hcisecfilter_DEPENDENCIES) $(EXTRA_tools_hcisecfilter_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/hcisecfilter$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_hcisecfilter_OBJECTS) $(tools_hcisecfilter_LDADD) $(LIBS)
tools/hcitool.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hcitool$(EXEEXT): $(tools_hcitool_OBJECTS) $(tools_hcitool_DEPENDENCIES) $(EXTRA_tools_hcitool_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/hcitool$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_hcitool_OBJECTS) $(tools_hcitool_LDADD) $(LIBS)
tools/hid2hci.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/hid2hci$(EXEEXT): $(tools_hid2hci_OBJECTS) $(tools_hid2hci_DEPENDENCIES) $(EXTRA_tools_hid2hci_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/hid2hci$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_hid2hci_OBJECTS) $(tools_hid2hci_LDADD) $(LIBS)
tools/l2ping.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/l2ping$(EXEEXT): $(tools_l2ping_OBJECTS) $(tools_l2ping_DEPENDENCIES) $(EXTRA_tools_l2ping_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/l2ping$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_l2ping_OBJECTS) $(tools_l2ping_LDADD) $(LIBS)
tools/ppporc.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/ppporc$(EXEEXT): $(tools_ppporc_OBJECTS) $(tools_ppporc_DEPENDENCIES) $(EXTRA_tools_ppporc_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/ppporc$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_ppporc_OBJECTS) $(tools_ppporc_LDADD) $(LIBS)
tools/rfcomm.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/parser.h: tools/parser.c
	@if test ! -f $@; then rm -f tools/parser.c; else :; fi
	@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) tools/parser.c; else :; fi
tools/parser.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/lexer.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/kword.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
tools/rfcomm$(EXEEXT): $(tools_rfcomm_OBJECTS) $(tools_rfcomm_DEPENDENCIES) $(EXTRA_tools_rfcomm_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/rfcomm$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_rfcomm_OBJECTS) $(tools_rfcomm_LDADD) $(LIBS)
tools/sdptool.$(OBJEXT): tools/$(am__dirstamp) \
	tools/$(DEPDIR)/$(am__dirstamp)
src/sdp-xml.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
tools/sdptool$(EXEEXT): $(tools_sdptool_OBJECTS) $(tools_sdptool_DEPENDENCIES) $(EXTRA_tools_sdptool_DEPENDENCIES) tools/$(am__dirstamp)
	@rm -f tools/sdptool$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(tools_sdptool_OBJECTS) $(tools_sdptool_LDADD) $(LIBS)
unit/$(am__dirstamp):
	@$(MKDIR_P) unit
	@: > unit/$(am__dirstamp)
unit/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) unit/$(DEPDIR)
	@: > unit/$(DEPDIR)/$(am__dirstamp)
unit/unit_test_eir-test-eir.$(OBJEXT): unit/$(am__dirstamp) \
	unit/$(DEPDIR)/$(am__dirstamp)
src/unit_test_eir-eir.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
src/unit_test_eir-glib-helper.$(OBJEXT): src/$(am__dirstamp) \
	src/$(DEPDIR)/$(am__dirstamp)
unit/test-eir$(EXEEXT): $(unit_test_eir_OBJECTS) $(unit_test_eir_DEPENDENCIES) $(EXTRA_unit_test_eir_DEPENDENCIES) unit/$(am__dirstamp)
	@rm -f unit/test-eir$(EXEEXT)
	$(AM_V_CCLD)$(unit_test_eir_LINK) $(unit_test_eir_OBJECTS) $(unit_test_eir_LDADD) $(LIBS)
install-dist_udevSCRIPTS: $(dist_udev_SCRIPTS)
	@$(NORMAL_INSTALL)
	test -z "$(udevdir)" || $(MKDIR_P) "$(DESTDIR)$(udevdir)"
	@list='$(dist_udev_SCRIPTS)'; test -n "$(udevdir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n' \
	    -e 'h;s|.*|.|' \
	    -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) { files[d] = files[d] " " $$1; \
	      if (++n[d] == $(am__install_max)) { \
		print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
	    else { print "f", d "/" $$4, $$1 } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	     if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	     test -z "$$files" || { \
	       echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(udevdir)$$dir'"; \
	       $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(udevdir)$$dir" || exit $$?; \
	     } \
	; done

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

mostlyclean-compile:
	-rm -f *.$(OBJEXT)
	-rm -f alert/bluetoothd-main.$(OBJEXT)
	-rm -f alert/bluetoothd-server.$(OBJEXT)
	-rm -f attrib/att.$(OBJEXT)
	-rm -f attrib/bluetoothd-att.$(OBJEXT)
	-rm -f attrib/bluetoothd-client.$(OBJEXT)
	-rm -f attrib/bluetoothd-gatt-service.$(OBJEXT)
	-rm -f attrib/bluetoothd-gatt.$(OBJEXT)
	-rm -f attrib/bluetoothd-gattrib.$(OBJEXT)
	-rm -f attrib/gatt.$(OBJEXT)
	-rm -f attrib/gattrib.$(OBJEXT)
	-rm -f attrib/gatttool.$(OBJEXT)
	-rm -f attrib/interactive.$(OBJEXT)
	-rm -f attrib/utils.$(OBJEXT)
	-rm -f audio/audio_libasound_module_ctl_bluetooth_la-ctl_bluetooth.$(OBJEXT)
	-rm -f audio/audio_libasound_module_ctl_bluetooth_la-ctl_bluetooth.lo
	-rm -f audio/audio_libasound_module_ctl_bluetooth_la-ipc.$(OBJEXT)
	-rm -f audio/audio_libasound_module_ctl_bluetooth_la-ipc.lo
	-rm -f audio/audio_libasound_module_pcm_bluetooth_la-ipc.$(OBJEXT)
	-rm -f audio/audio_libasound_module_pcm_bluetooth_la-ipc.lo
	-rm -f audio/audio_libasound_module_pcm_bluetooth_la-pcm_bluetooth.$(OBJEXT)
	-rm -f audio/audio_libasound_module_pcm_bluetooth_la-pcm_bluetooth.lo
	-rm -f audio/audio_libgstbluetooth_la-gsta2dpsink.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gsta2dpsink.lo
	-rm -f audio/audio_libgstbluetooth_la-gstavdtpsink.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gstavdtpsink.lo
	-rm -f audio/audio_libgstbluetooth_la-gstbluetooth.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gstbluetooth.lo
	-rm -f audio/audio_libgstbluetooth_la-gstrtpsbcpay.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gstrtpsbcpay.lo
	-rm -f audio/audio_libgstbluetooth_la-gstsbcdec.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gstsbcdec.lo
	-rm -f audio/audio_libgstbluetooth_la-gstsbcenc.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gstsbcenc.lo
	-rm -f audio/audio_libgstbluetooth_la-gstsbcparse.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gstsbcparse.lo
	-rm -f audio/audio_libgstbluetooth_la-gstsbcutil.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-gstsbcutil.lo
	-rm -f audio/audio_libgstbluetooth_la-ipc.$(OBJEXT)
	-rm -f audio/audio_libgstbluetooth_la-ipc.lo
	-rm -f audio/bluetoothd-a2dp.$(OBJEXT)
	-rm -f audio/bluetoothd-avctp.$(OBJEXT)
	-rm -f audio/bluetoothd-avdtp.$(OBJEXT)
	-rm -f audio/bluetoothd-avrcp.$(OBJEXT)
	-rm -f audio/bluetoothd-control.$(OBJEXT)
	-rm -f audio/bluetoothd-device.$(OBJEXT)
	-rm -f audio/bluetoothd-gateway.$(OBJEXT)
	-rm -f audio/bluetoothd-headset.$(OBJEXT)
	-rm -f audio/bluetoothd-ipc.$(OBJEXT)
	-rm -f audio/bluetoothd-main.$(OBJEXT)
	-rm -f audio/bluetoothd-manager.$(OBJEXT)
	-rm -f audio/bluetoothd-media.$(OBJEXT)
	-rm -f audio/bluetoothd-sink.$(OBJEXT)
	-rm -f audio/bluetoothd-source.$(OBJEXT)
	-rm -f audio/bluetoothd-telephony.$(OBJEXT)
	-rm -f audio/bluetoothd-transport.$(OBJEXT)
	-rm -f audio/bluetoothd-unix.$(OBJEXT)
	-rm -f audio/ipc.$(OBJEXT)
	-rm -f audio/telephony-dummy.$(OBJEXT)
	-rm -f audio/telephony-maemo5.$(OBJEXT)
	-rm -f audio/telephony-maemo6.$(OBJEXT)
	-rm -f audio/telephony-ofono.$(OBJEXT)
	-rm -f btio/bluetoothd-btio.$(OBJEXT)
	-rm -f btio/btio.$(OBJEXT)
	-rm -f compat/bnep.$(OBJEXT)
	-rm -f compat/dun.$(OBJEXT)
	-rm -f compat/dund.$(OBJEXT)
	-rm -f compat/fakehid.$(OBJEXT)
	-rm -f compat/hidd.$(OBJEXT)
	-rm -f compat/msdun.$(OBJEXT)
	-rm -f compat/pand.$(OBJEXT)
	-rm -f compat/sdp.$(OBJEXT)
	-rm -f cups/hcrp.$(OBJEXT)
	-rm -f cups/main.$(OBJEXT)
	-rm -f cups/sdp.$(OBJEXT)
	-rm -f cups/spp.$(OBJEXT)
	-rm -f deviceinfo/bluetoothd-deviceinfo.$(OBJEXT)
	-rm -f deviceinfo/bluetoothd-main.$(OBJEXT)
	-rm -f deviceinfo/bluetoothd-manager.$(OBJEXT)
	-rm -f emulator/btdev.$(OBJEXT)
	-rm -f emulator/main.$(OBJEXT)
	-rm -f emulator/server.$(OBJEXT)
	-rm -f emulator/vhci.$(OBJEXT)
	-rm -f gdbus/bluetoothd-mainloop.$(OBJEXT)
	-rm -f gdbus/bluetoothd-object.$(OBJEXT)
	-rm -f gdbus/bluetoothd-polkit.$(OBJEXT)
	-rm -f gdbus/bluetoothd-watch.$(OBJEXT)
	-rm -f gdbus/mainloop.$(OBJEXT)
	-rm -f gdbus/object.$(OBJEXT)
	-rm -f gdbus/polkit.$(OBJEXT)
	-rm -f gdbus/watch.$(OBJEXT)
	-rm -f health/bluetoothd-hdp.$(OBJEXT)
	-rm -f health/bluetoothd-hdp_main.$(OBJEXT)
	-rm -f health/bluetoothd-hdp_manager.$(OBJEXT)
	-rm -f health/bluetoothd-hdp_util.$(OBJEXT)
	-rm -f health/bluetoothd-mcap.$(OBJEXT)
	-rm -f health/bluetoothd-mcap_sync.$(OBJEXT)
	-rm -f input/bluetoothd-device.$(OBJEXT)
	-rm -f input/bluetoothd-fakehid.$(OBJEXT)
	-rm -f input/bluetoothd-main.$(OBJEXT)
	-rm -f input/bluetoothd-manager.$(OBJEXT)
	-rm -f input/bluetoothd-server.$(OBJEXT)
	-rm -f lib/bluetooth.$(OBJEXT)
	-rm -f lib/bluetooth.lo
	-rm -f lib/hci.$(OBJEXT)
	-rm -f lib/hci.lo
	-rm -f lib/sdp.$(OBJEXT)
	-rm -f lib/sdp.lo
	-rm -f lib/uuid.$(OBJEXT)
	-rm -f lib/uuid.lo
	-rm -f mgmt/main.$(OBJEXT)
	-rm -f monitor/btsnoop.$(OBJEXT)
	-rm -f monitor/control.$(OBJEXT)
	-rm -f monitor/hcidump.$(OBJEXT)
	-rm -f monitor/main.$(OBJEXT)
	-rm -f monitor/mainloop.$(OBJEXT)
	-rm -f monitor/packet.$(OBJEXT)
	-rm -f network/bluetoothd-common.$(OBJEXT)
	-rm -f network/bluetoothd-connection.$(OBJEXT)
	-rm -f network/bluetoothd-main.$(OBJEXT)
	-rm -f network/bluetoothd-manager.$(OBJEXT)
	-rm -f network/bluetoothd-server.$(OBJEXT)
	-rm -f plugins/bluetoothd-adaptername.$(OBJEXT)
	-rm -f plugins/bluetoothd-dbusoob.$(OBJEXT)
	-rm -f plugins/bluetoothd-formfactor.$(OBJEXT)
	-rm -f plugins/bluetoothd-gatt-example.$(OBJEXT)
	-rm -f plugins/bluetoothd-hal.$(OBJEXT)
	-rm -f plugins/bluetoothd-hciops.$(OBJEXT)
	-rm -f plugins/bluetoothd-maemo6.$(OBJEXT)
	-rm -f plugins/bluetoothd-mgmtops.$(OBJEXT)
	-rm -f plugins/bluetoothd-pnat.$(OBJEXT)
	-rm -f plugins/bluetoothd-service.$(OBJEXT)
	-rm -f plugins/bluetoothd-storage.$(OBJEXT)
	-rm -f plugins/bluetoothd-wiimote.$(OBJEXT)
	-rm -f plugins/plugins_external_dummy_la-external-dummy.$(OBJEXT)
	-rm -f plugins/plugins_external_dummy_la-external-dummy.lo
	-rm -f proximity/bluetoothd-immalert.$(OBJEXT)
	-rm -f proximity/bluetoothd-linkloss.$(OBJEXT)
	-rm -f proximity/bluetoothd-main.$(OBJEXT)
	-rm -f proximity/bluetoothd-manager.$(OBJEXT)
	-rm -f proximity/bluetoothd-monitor.$(OBJEXT)
	-rm -f proximity/bluetoothd-reporter.$(OBJEXT)
	-rm -f sap/bluetoothd-main.$(OBJEXT)
	-rm -f sap/bluetoothd-manager.$(OBJEXT)
	-rm -f sap/bluetoothd-sap.$(OBJEXT)
	-rm -f sap/bluetoothd-server.$(OBJEXT)
	-rm -f sap/sap-dummy.$(OBJEXT)
	-rm -f sap/sap-u8500.$(OBJEXT)
	-rm -f sbc/sbc_libsbc_la-sbc.$(OBJEXT)
	-rm -f sbc/sbc_libsbc_la-sbc.lo
	-rm -f sbc/sbc_libsbc_la-sbc_primitives.$(OBJEXT)
	-rm -f sbc/sbc_libsbc_la-sbc_primitives.lo
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_armv6.$(OBJEXT)
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_armv6.lo
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_iwmmxt.$(OBJEXT)
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_iwmmxt.lo
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_mmx.$(OBJEXT)
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_mmx.lo
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_neon.$(OBJEXT)
	-rm -f sbc/sbc_libsbc_la-sbc_primitives_neon.lo
	-rm -f sbc/sbcdec.$(OBJEXT)
	-rm -f sbc/sbcenc.$(OBJEXT)
	-rm -f sbc/sbcinfo.$(OBJEXT)
	-rm -f sbc/sbctester.$(OBJEXT)
	-rm -f serial/bluetoothd-main.$(OBJEXT)
	-rm -f serial/bluetoothd-manager.$(OBJEXT)
	-rm -f serial/bluetoothd-port.$(OBJEXT)
	-rm -f serial/bluetoothd-proxy.$(OBJEXT)
	-rm -f src/bluetoothd-adapter.$(OBJEXT)
	-rm -f src/bluetoothd-agent.$(OBJEXT)
	-rm -f src/bluetoothd-attrib-server.$(OBJEXT)
	-rm -f src/bluetoothd-dbus-common.$(OBJEXT)
	-rm -f src/bluetoothd-device.$(OBJEXT)
	-rm -f src/bluetoothd-eir.$(OBJEXT)
	-rm -f src/bluetoothd-error.$(OBJEXT)
	-rm -f src/bluetoothd-event.$(OBJEXT)
	-rm -f src/bluetoothd-glib-helper.$(OBJEXT)
	-rm -f src/bluetoothd-log.$(OBJEXT)
	-rm -f src/bluetoothd-main.$(OBJEXT)
	-rm -f src/bluetoothd-manager.$(OBJEXT)
	-rm -f src/bluetoothd-oob.$(OBJEXT)
	-rm -f src/bluetoothd-oui.$(OBJEXT)
	-rm -f src/bluetoothd-plugin.$(OBJEXT)
	-rm -f src/bluetoothd-rfkill.$(OBJEXT)
	-rm -f src/bluetoothd-sdp-client.$(OBJEXT)
	-rm -f src/bluetoothd-sdp-xml.$(OBJEXT)
	-rm -f src/bluetoothd-sdpd-database.$(OBJEXT)
	-rm -f src/bluetoothd-sdpd-request.$(OBJEXT)
	-rm -f src/bluetoothd-sdpd-server.$(OBJEXT)
	-rm -f src/bluetoothd-sdpd-service.$(OBJEXT)
	-rm -f src/bluetoothd-storage.$(OBJEXT)
	-rm -f src/bluetoothd-textfile.$(OBJEXT)
	-rm -f src/glib-helper.$(OBJEXT)
	-rm -f src/log.$(OBJEXT)
	-rm -f src/oui.$(OBJEXT)
	-rm -f src/sdp-xml.$(OBJEXT)
	-rm -f src/textfile.$(OBJEXT)
	-rm -f src/unit_test_eir-eir.$(OBJEXT)
	-rm -f src/unit_test_eir-glib-helper.$(OBJEXT)
	-rm -f test/agent.$(OBJEXT)
	-rm -f test/attest.$(OBJEXT)
	-rm -f test/avtest.$(OBJEXT)
	-rm -f test/bdaddr.$(OBJEXT)
	-rm -f test/btiotest.$(OBJEXT)
	-rm -f test/gaptest.$(OBJEXT)
	-rm -f test/hciemu.$(OBJEXT)
	-rm -f test/hstest.$(OBJEXT)
	-rm -f test/ipctest.$(OBJEXT)
	-rm -f test/l2test.$(OBJEXT)
	-rm -f test/lmptest.$(OBJEXT)
	-rm -f test/mpris-player.$(OBJEXT)
	-rm -f test/rctest.$(OBJEXT)
	-rm -f test/scotest.$(OBJEXT)
	-rm -f test/sdptest.$(OBJEXT)
	-rm -f test/test-textfile.$(OBJEXT)
	-rm -f test/uuidtest.$(OBJEXT)
	-rm -f thermometer/bluetoothd-main.$(OBJEXT)
	-rm -f thermometer/bluetoothd-manager.$(OBJEXT)
	-rm -f thermometer/bluetoothd-thermometer.$(OBJEXT)
	-rm -f time/bluetoothd-main.$(OBJEXT)
	-rm -f time/bluetoothd-server.$(OBJEXT)
	-rm -f tools/avctrl.$(OBJEXT)
	-rm -f tools/avinfo.$(OBJEXT)
	-rm -f tools/bccmd.$(OBJEXT)
	-rm -f tools/ciptool.$(OBJEXT)
	-rm -f tools/csr.$(OBJEXT)
	-rm -f tools/csr_3wire.$(OBJEXT)
	-rm -f tools/csr_bcsp.$(OBJEXT)
	-rm -f tools/csr_h4.$(OBJEXT)
	-rm -f tools/csr_hci.$(OBJEXT)
	-rm -f tools/csr_usb.$(OBJEXT)
	-rm -f tools/dfu.$(OBJEXT)
	-rm -f tools/dfubabel.$(OBJEXT)
	-rm -f tools/dfutool.$(OBJEXT)
	-rm -f tools/hciattach.$(OBJEXT)
	-rm -f tools/hciattach_ath3k.$(OBJEXT)
	-rm -f tools/hciattach_intel.$(OBJEXT)
	-rm -f tools/hciattach_qualcomm.$(OBJEXT)
	-rm -f tools/hciattach_st.$(OBJEXT)
	-rm -f tools/hciattach_ti.$(OBJEXT)
	-rm -f tools/hciattach_tialt.$(OBJEXT)
	-rm -f tools/hciconfig.$(OBJEXT)
	-rm -f tools/hcieventmask.$(OBJEXT)
	-rm -f tools/hcisecfilter.$(OBJEXT)
	-rm -f tools/hcitool.$(OBJEXT)
	-rm -f tools/hid2hci.$(OBJEXT)
	-rm -f tools/kword.$(OBJEXT)
	-rm -f tools/l2ping.$(OBJEXT)
	-rm -f tools/lexer.$(OBJEXT)
	-rm -f tools/parser.$(OBJEXT)
	-rm -f tools/ppporc.$(OBJEXT)
	-rm -f tools/rfcomm.$(OBJEXT)
	-rm -f tools/sdptool.$(OBJEXT)
	-rm -f tools/ubcsp.$(OBJEXT)
	-rm -f unit/unit_test_eir-test-eir.$(OBJEXT)

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

@AMDEP_TRUE@@am__include@ @am__quote@alert/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@alert/$(DEPDIR)/bluetoothd-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/att.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/bluetoothd-att.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/bluetoothd-client.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/bluetoothd-gatt-service.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/bluetoothd-gatt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/bluetoothd-gattrib.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/gatt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/gattrib.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/gatttool.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/interactive.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@attrib/$(DEPDIR)/utils.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libasound_module_ctl_bluetooth_la-ctl_bluetooth.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libasound_module_ctl_bluetooth_la-ipc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libasound_module_pcm_bluetooth_la-ipc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libasound_module_pcm_bluetooth_la-pcm_bluetooth.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gsta2dpsink.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gstavdtpsink.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gstbluetooth.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gstrtpsbcpay.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gstsbcdec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gstsbcenc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gstsbcparse.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-gstsbcutil.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/audio_libgstbluetooth_la-ipc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-a2dp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-avctp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-avdtp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-avrcp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-control.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-device.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-gateway.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-headset.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-ipc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-media.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-sink.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-source.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-telephony.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-transport.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/bluetoothd-unix.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/ipc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/telephony-dummy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/telephony-maemo5.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/telephony-maemo6.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio/$(DEPDIR)/telephony-ofono.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@btio/$(DEPDIR)/bluetoothd-btio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@btio/$(DEPDIR)/btio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/bnep.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/dun.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/dund.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/fakehid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/hidd.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/msdun.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/pand.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@compat/$(DEPDIR)/sdp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@cups/$(DEPDIR)/hcrp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@cups/$(DEPDIR)/main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@cups/$(DEPDIR)/sdp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@cups/$(DEPDIR)/spp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@deviceinfo/$(DEPDIR)/bluetoothd-deviceinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@deviceinfo/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@deviceinfo/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@emulator/$(DEPDIR)/btdev.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@emulator/$(DEPDIR)/main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@emulator/$(DEPDIR)/server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@emulator/$(DEPDIR)/vhci.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/bluetoothd-mainloop.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/bluetoothd-object.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/bluetoothd-polkit.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/bluetoothd-watch.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/mainloop.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/object.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/polkit.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@gdbus/$(DEPDIR)/watch.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@health/$(DEPDIR)/bluetoothd-hdp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@health/$(DEPDIR)/bluetoothd-hdp_main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@health/$(DEPDIR)/bluetoothd-hdp_manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@health/$(DEPDIR)/bluetoothd-hdp_util.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@health/$(DEPDIR)/bluetoothd-mcap.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@health/$(DEPDIR)/bluetoothd-mcap_sync.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/bluetoothd-device.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/bluetoothd-fakehid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/bluetoothd-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/bluetooth.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/hci.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/sdp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/uuid.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@mgmt/$(DEPDIR)/main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@monitor/$(DEPDIR)/btsnoop.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@monitor/$(DEPDIR)/control.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@monitor/$(DEPDIR)/hcidump.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@monitor/$(DEPDIR)/main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@monitor/$(DEPDIR)/mainloop.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@monitor/$(DEPDIR)/packet.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/bluetoothd-common.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/bluetoothd-connection.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/bluetoothd-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-adaptername.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-dbusoob.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-formfactor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-gatt-example.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-hal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-hciops.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-maemo6.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-mgmtops.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-pnat.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-service.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-storage.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/bluetoothd-wiimote.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/plugins_external_dummy_la-external-dummy.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@proximity/$(DEPDIR)/bluetoothd-immalert.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@proximity/$(DEPDIR)/bluetoothd-linkloss.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@proximity/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@proximity/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@proximity/$(DEPDIR)/bluetoothd-monitor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@proximity/$(DEPDIR)/bluetoothd-reporter.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sap/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sap/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sap/$(DEPDIR)/bluetoothd-sap.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sap/$(DEPDIR)/bluetoothd-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sap/$(DEPDIR)/sap-dummy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sap/$(DEPDIR)/sap-u8500.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbc_libsbc_la-sbc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbc_libsbc_la-sbc_primitives.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbc_libsbc_la-sbc_primitives_armv6.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbc_libsbc_la-sbc_primitives_iwmmxt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbc_libsbc_la-sbc_primitives_mmx.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbc_libsbc_la-sbc_primitives_neon.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbcdec.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbcenc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbcinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sbc/$(DEPDIR)/sbctester.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@serial/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@serial/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@serial/$(DEPDIR)/bluetoothd-port.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@serial/$(DEPDIR)/bluetoothd-proxy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-adapter.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-agent.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-attrib-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-dbus-common.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-device.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-eir.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-error.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-event.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-glib-helper.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-log.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-oob.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-oui.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-plugin.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-rfkill.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-sdp-client.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-sdp-xml.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-sdpd-database.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-sdpd-request.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-sdpd-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-sdpd-service.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-storage.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/bluetoothd-textfile.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/glib-helper.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/log.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/oui.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/sdp-xml.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/textfile.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/unit_test_eir-eir.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/unit_test_eir-glib-helper.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/agent.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/attest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/avtest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/bdaddr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/btiotest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/gaptest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/hciemu.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/hstest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/ipctest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/l2test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/lmptest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/mpris-player.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/rctest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/scotest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/sdptest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test-textfile.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/uuidtest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@thermometer/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@thermometer/$(DEPDIR)/bluetoothd-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@thermometer/$(DEPDIR)/bluetoothd-thermometer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@time/$(DEPDIR)/bluetoothd-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@time/$(DEPDIR)/bluetoothd-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/avctrl.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/avinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/bccmd.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/ciptool.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/csr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/csr_3wire.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/csr_bcsp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/csr_h4.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/csr_hci.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/csr_usb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/dfu.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/dfubabel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/dfutool.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciattach.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciattach_ath3k.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciattach_intel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciattach_qualcomm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciattach_st.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciattach_ti.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciattach_tialt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hciconfig.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hcieventmask.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hcisecfilter.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hcitool.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/hid2hci.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/kword.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/l2ping.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/lexer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/parser.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/ppporc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/rfcomm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/sdptool.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/ubcsp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@unit/$(DEPDIR)/unit_test_eir-test-eir.Po@am__quote@

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l.c:
	$(AM_V_LEX)$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE)

.y.c:
	$(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE)

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs
	-rm -rf attrib/.libs attrib/_libs
	-rm -rf audio/.libs audio/_libs
	-rm -rf compat/.libs compat/_libs
	-rm -rf cups/.libs cups/_libs
	-rm -rf emulator/.libs emulator/_libs
	-rm -rf lib/.libs lib/_libs
	-rm -rf mgmt/.libs mgmt/_libs
	-rm -rf monitor/.libs monitor/_libs
	-rm -rf plugins/.libs plugins/_libs
	-rm -rf sbc/.libs sbc/_libs
	-rm -rf src/.libs src/_libs
	-rm -rf test/.libs test/_libs
	-rm -rf tools/.libs tools/_libs
	-rm -rf unit/.libs unit/_libs

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

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

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

uninstall-alsaconfDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(alsaconf_DATA)'; test -n "$(alsaconfdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(alsaconfdir)'; $(am__uninstall_files_from_dir)
install-confDATA: $(conf_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(confdir)" || $(MKDIR_P) "$(DESTDIR)$(confdir)"
	@list='$(conf_DATA)'; test -n "$(confdir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(confdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(confdir)" || exit $$?; \
	done

uninstall-confDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(conf_DATA)'; test -n "$(confdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(confdir)'; $(am__uninstall_files_from_dir)
install-dbusDATA: $(dbus_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(dbusdir)" || $(MKDIR_P) "$(DESTDIR)$(dbusdir)"
	@list='$(dbus_DATA)'; test -n "$(dbusdir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dbusdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dbusdir)" || exit $$?; \
	done

uninstall-dbusDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dbus_DATA)'; test -n "$(dbusdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(dbusdir)'; $(am__uninstall_files_from_dir)
install-dbusserviceDATA: $(dbusservice_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(dbusservicedir)" || $(MKDIR_P) "$(DESTDIR)$(dbusservicedir)"
	@list='$(dbusservice_DATA)'; test -n "$(dbusservicedir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dbusservicedir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dbusservicedir)" || exit $$?; \
	done

uninstall-dbusserviceDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(dbusservice_DATA)'; test -n "$(dbusservicedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(dbusservicedir)'; $(am__uninstall_files_from_dir)
install-pkgconfigDATA: $(pkgconfig_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
	done

uninstall-pkgconfigDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
install-rulesDATA: $(rules_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(rulesdir)" || $(MKDIR_P) "$(DESTDIR)$(rulesdir)"
	@list='$(rules_DATA)'; test -n "$(rulesdir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(rulesdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(rulesdir)" || exit $$?; \
	done

uninstall-rulesDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(rules_DATA)'; test -n "$(rulesdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(rulesdir)'; $(am__uninstall_files_from_dir)
install-stateDATA: $(state_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(statedir)" || $(MKDIR_P) "$(DESTDIR)$(statedir)"
	@list='$(state_DATA)'; test -n "$(statedir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(statedir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(statedir)" || exit $$?; \
	done

uninstall-stateDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(state_DATA)'; test -n "$(statedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(statedir)'; $(am__uninstall_files_from_dir)
install-systemdunitDATA: $(systemdunit_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(systemdunitdir)" || $(MKDIR_P) "$(DESTDIR)$(systemdunitdir)"
	@list='$(systemdunit_DATA)'; test -n "$(systemdunitdir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(systemdunitdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(systemdunitdir)" || exit $$?; \
	done

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

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

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) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	set x; \
	here=`pwd`; \
	list='$(SOURCES) $(HEADERS) config.h.in $(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) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	list='$(SOURCES) $(HEADERS) config.h.in $(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

check-TESTS: $(TESTS)
	@failed=0; all=0; xfail=0; xpass=0; skip=0; \
	srcdir=$(srcdir); export srcdir; \
	list=' $(TESTS) '; \
	$(am__tty_colors); \
	if test -n "$$list"; then \
	  for tst in $$list; do \
	    if test -f ./$$tst; then dir=./; \
	    elif test -f $$tst; then dir=; \
	    else dir="$(srcdir)/"; fi; \
	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
	      all=`expr $$all + 1`; \
	      case " $(XFAIL_TESTS) " in \
	      *[\ \	]$$tst[\ \	]*) \
		xpass=`expr $$xpass + 1`; \
		failed=`expr $$failed + 1`; \
		col=$$red; res=XPASS; \
	      ;; \
	      *) \
		col=$$grn; res=PASS; \
	      ;; \
	      esac; \
	    elif test $$? -ne 77; then \
	      all=`expr $$all + 1`; \
	      case " $(XFAIL_TESTS) " in \
	      *[\ \	]$$tst[\ \	]*) \
		xfail=`expr $$xfail + 1`; \
		col=$$lgn; res=XFAIL; \
	      ;; \
	      *) \
		failed=`expr $$failed + 1`; \
		col=$$red; res=FAIL; \
	      ;; \
	      esac; \
	    else \
	      skip=`expr $$skip + 1`; \
	      col=$$blu; res=SKIP; \
	    fi; \
	    echo "$${col}$$res$${std}: $$tst"; \
	  done; \
	  if test "$$all" -eq 1; then \
	    tests="test"; \
	    All=""; \
	  else \
	    tests="tests"; \
	    All="All "; \
	  fi; \
	  if test "$$failed" -eq 0; then \
	    if test "$$xfail" -eq 0; then \
	      banner="$$All$$all $$tests passed"; \
	    else \
	      if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
	      banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
	    fi; \
	  else \
	    if test "$$xpass" -eq 0; then \
	      banner="$$failed of $$all $$tests failed"; \
	    else \
	      if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
	      banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
	    fi; \
	  fi; \
	  dashes="$$banner"; \
	  skipped=""; \
	  if test "$$skip" -ne 0; then \
	    if test "$$skip" -eq 1; then \
	      skipped="($$skip test was not run)"; \
	    else \
	      skipped="($$skip tests were not run)"; \
	    fi; \
	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
	      dashes="$$skipped"; \
	  fi; \
	  report=""; \
	  if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
	    report="Please report to $(PACKAGE_BUGREPORT)"; \
	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
	      dashes="$$report"; \
	  fi; \
	  dashes=`echo "$$dashes" | sed s/./=/g`; \
	  if test "$$failed" -eq 0; then \
	    col="$$grn"; \
	  else \
	    col="$$red"; \
	  fi; \
	  echo "$${col}$$dashes$${std}"; \
	  echo "$${col}$$banner$${std}"; \
	  test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
	  test -z "$$report" || echo "$${col}$$report$${std}"; \
	  echo "$${col}$$dashes$${std}"; \
	  test "$$failed" -eq 0; \
	else :; fi

distdir: $(DISTFILES)
	@list='$(MANS)'; if test -n "$$list"; then \
	  list=`for p in $$list; do \
	    if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	    if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
	  if test -n "$$list" && \
	    grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
	    echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
	    grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/         /' >&2; \
	    echo "       to fix them, install help2man, remove and regenerate the man pages;" >&2; \
	    echo "       typically \`make maintainer-clean' will remove them" >&2; \
	    exit 1; \
	  else :; fi; \
	else :; fi
	$(am__remove_distdir)
	test -d "$(distdir)" || mkdir "$(distdir)"
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
	-test -n "$(am__skip_mode_fix)" \
	|| find "$(distdir)" -type d ! -perm -755 \
		-exec chmod u+rwx,go+rx {} \; -o \
	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
	|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

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

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

dist-lzma: distdir
	tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
	$(am__remove_distdir)

dist-xz: distdir
	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
	$(am__remove_distdir)

dist-tarZ: distdir
	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
	$(am__remove_distdir)

dist-shar: distdir
	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
	$(am__remove_distdir)

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

dist dist-all: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

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

installdirs:
	for dir in "$(DESTDIR)$(alsadir)" "$(DESTDIR)$(gstreamerdir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(cupsdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(udevdir)" "$(DESTDIR)$(udevdir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(alsaconfdir)" "$(DESTDIR)$(confdir)" "$(DESTDIR)$(dbusdir)" "$(DESTDIR)$(dbusservicedir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(rulesdir)" "$(DESTDIR)$(statedir)" "$(DESTDIR)$(systemdunitdir)" "$(DESTDIR)$(includedir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am

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

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

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

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
	-rm -f alert/$(DEPDIR)/$(am__dirstamp)
	-rm -f alert/$(am__dirstamp)
	-rm -f attrib/$(DEPDIR)/$(am__dirstamp)
	-rm -f attrib/$(am__dirstamp)
	-rm -f audio/$(DEPDIR)/$(am__dirstamp)
	-rm -f audio/$(am__dirstamp)
	-rm -f btio/$(DEPDIR)/$(am__dirstamp)
	-rm -f btio/$(am__dirstamp)
	-rm -f compat/$(DEPDIR)/$(am__dirstamp)
	-rm -f compat/$(am__dirstamp)
	-rm -f cups/$(DEPDIR)/$(am__dirstamp)
	-rm -f cups/$(am__dirstamp)
	-rm -f deviceinfo/$(DEPDIR)/$(am__dirstamp)
	-rm -f deviceinfo/$(am__dirstamp)
	-rm -f emulator/$(DEPDIR)/$(am__dirstamp)
	-rm -f emulator/$(am__dirstamp)
	-rm -f gdbus/$(DEPDIR)/$(am__dirstamp)
	-rm -f gdbus/$(am__dirstamp)
	-rm -f health/$(DEPDIR)/$(am__dirstamp)
	-rm -f health/$(am__dirstamp)
	-rm -f input/$(DEPDIR)/$(am__dirstamp)
	-rm -f input/$(am__dirstamp)
	-rm -f lib/$(DEPDIR)/$(am__dirstamp)
	-rm -f lib/$(am__dirstamp)
	-rm -f mgmt/$(DEPDIR)/$(am__dirstamp)
	-rm -f mgmt/$(am__dirstamp)
	-rm -f monitor/$(DEPDIR)/$(am__dirstamp)
	-rm -f monitor/$(am__dirstamp)
	-rm -f network/$(DEPDIR)/$(am__dirstamp)
	-rm -f network/$(am__dirstamp)
	-rm -f plugins/$(DEPDIR)/$(am__dirstamp)
	-rm -f plugins/$(am__dirstamp)
	-rm -f proximity/$(DEPDIR)/$(am__dirstamp)
	-rm -f proximity/$(am__dirstamp)
	-rm -f sap/$(DEPDIR)/$(am__dirstamp)
	-rm -f sap/$(am__dirstamp)
	-rm -f sbc/$(DEPDIR)/$(am__dirstamp)
	-rm -f sbc/$(am__dirstamp)
	-rm -f serial/$(DEPDIR)/$(am__dirstamp)
	-rm -f serial/$(am__dirstamp)
	-rm -f src/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/$(am__dirstamp)
	-rm -f test/$(DEPDIR)/$(am__dirstamp)
	-rm -f test/$(am__dirstamp)
	-rm -f thermometer/$(DEPDIR)/$(am__dirstamp)
	-rm -f thermometer/$(am__dirstamp)
	-rm -f time/$(DEPDIR)/$(am__dirstamp)
	-rm -f time/$(am__dirstamp)
	-rm -f tools/$(DEPDIR)/$(am__dirstamp)
	-rm -f tools/$(am__dirstamp)
	-rm -f unit/$(DEPDIR)/$(am__dirstamp)
	-rm -f unit/$(am__dirstamp)
	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
	-rm -f tools/lexer.c
	-rm -f tools/parser.c
	-rm -f tools/parser.h
	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-am

clean-am: clean-alsaLTLIBRARIES clean-binPROGRAMS clean-cupsPROGRAMS \
	clean-generic clean-gstreamerLTLIBRARIES clean-libLTLIBRARIES \
	clean-libtool clean-local clean-noinstLIBRARIES \
	clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
	clean-pluginLTLIBRARIES clean-sbinPROGRAMS clean-udevPROGRAMS \
	mostlyclean-am

distclean: distclean-am
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf alert/$(DEPDIR) attrib/$(DEPDIR) audio/$(DEPDIR) btio/$(DEPDIR) compat/$(DEPDIR) cups/$(DEPDIR) deviceinfo/$(DEPDIR) emulator/$(DEPDIR) gdbus/$(DEPDIR) health/$(DEPDIR) input/$(DEPDIR) lib/$(DEPDIR) mgmt/$(DEPDIR) monitor/$(DEPDIR) network/$(DEPDIR) plugins/$(DEPDIR) proximity/$(DEPDIR) sap/$(DEPDIR) sbc/$(DEPDIR) serial/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) thermometer/$(DEPDIR) time/$(DEPDIR) tools/$(DEPDIR) unit/$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-hdr distclean-libtool distclean-tags

dvi: dvi-am

dvi-am:

html: html-am

html-am:

info: info-am

info-am:

install-data-am: install-alsaLTLIBRARIES install-alsaconfDATA \
	install-confDATA install-cupsPROGRAMS install-dbusDATA \
	install-dbusserviceDATA install-dist_udevSCRIPTS \
	install-gstreamerLTLIBRARIES install-includeHEADERS \
	install-man install-pkgconfigDATA install-pluginLTLIBRARIES \
	install-rulesDATA install-stateDATA install-systemdunitDATA \
	install-udevPROGRAMS

install-dvi: install-dvi-am

install-dvi-am:

install-exec-am: install-binPROGRAMS install-libLTLIBRARIES \
	install-sbinPROGRAMS

install-html: install-html-am

install-html-am:

install-info: install-info-am

install-info-am:

install-man: install-man1 install-man8

install-pdf: install-pdf-am

install-pdf-am:

install-ps: install-ps-am

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-am
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf $(top_srcdir)/autom4te.cache
	-rm -rf alert/$(DEPDIR) attrib/$(DEPDIR) audio/$(DEPDIR) btio/$(DEPDIR) compat/$(DEPDIR) cups/$(DEPDIR) deviceinfo/$(DEPDIR) emulator/$(DEPDIR) gdbus/$(DEPDIR) health/$(DEPDIR) input/$(DEPDIR) lib/$(DEPDIR) mgmt/$(DEPDIR) monitor/$(DEPDIR) network/$(DEPDIR) plugins/$(DEPDIR) proximity/$(DEPDIR) sap/$(DEPDIR) sbc/$(DEPDIR) serial/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) thermometer/$(DEPDIR) time/$(DEPDIR) tools/$(DEPDIR) unit/$(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-alsaLTLIBRARIES uninstall-alsaconfDATA \
	uninstall-binPROGRAMS uninstall-confDATA \
	uninstall-cupsPROGRAMS uninstall-dbusDATA \
	uninstall-dbusserviceDATA uninstall-dist_udevSCRIPTS \
	uninstall-gstreamerLTLIBRARIES uninstall-includeHEADERS \
	uninstall-libLTLIBRARIES uninstall-man uninstall-pkgconfigDATA \
	uninstall-pluginLTLIBRARIES uninstall-rulesDATA \
	uninstall-sbinPROGRAMS uninstall-stateDATA \
	uninstall-systemdunitDATA uninstall-udevPROGRAMS

uninstall-man: uninstall-man1 uninstall-man8

.MAKE: all check check-am install install-am install-strip

.PHONY: CTAGS GTAGS all all-am am--refresh check check-TESTS check-am \
	clean clean-alsaLTLIBRARIES clean-binPROGRAMS \
	clean-cupsPROGRAMS clean-generic clean-gstreamerLTLIBRARIES \
	clean-libLTLIBRARIES clean-libtool clean-local \
	clean-noinstLIBRARIES clean-noinstLTLIBRARIES \
	clean-noinstPROGRAMS clean-pluginLTLIBRARIES \
	clean-sbinPROGRAMS clean-udevPROGRAMS ctags dist dist-all \
	dist-bzip2 dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ \
	dist-xz dist-zip distcheck distclean distclean-compile \
	distclean-generic distclean-hdr distclean-libtool \
	distclean-tags distcleancheck distdir distuninstallcheck dvi \
	dvi-am html html-am info info-am install \
	install-alsaLTLIBRARIES install-alsaconfDATA install-am \
	install-binPROGRAMS install-confDATA install-cupsPROGRAMS \
	install-data install-data-am install-dbusDATA \
	install-dbusserviceDATA install-dist_udevSCRIPTS install-dvi \
	install-dvi-am install-exec install-exec-am \
	install-gstreamerLTLIBRARIES install-html install-html-am \
	install-includeHEADERS install-info install-info-am \
	install-libLTLIBRARIES install-man install-man1 install-man8 \
	install-pdf install-pdf-am install-pkgconfigDATA \
	install-pluginLTLIBRARIES install-ps install-ps-am \
	install-rulesDATA install-sbinPROGRAMS install-stateDATA \
	install-strip install-systemdunitDATA install-udevPROGRAMS \
	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-alsaLTLIBRARIES \
	uninstall-alsaconfDATA uninstall-am uninstall-binPROGRAMS \
	uninstall-confDATA uninstall-cupsPROGRAMS uninstall-dbusDATA \
	uninstall-dbusserviceDATA uninstall-dist_udevSCRIPTS \
	uninstall-gstreamerLTLIBRARIES uninstall-includeHEADERS \
	uninstall-libLTLIBRARIES uninstall-man uninstall-man1 \
	uninstall-man8 uninstall-pkgconfigDATA \
	uninstall-pluginLTLIBRARIES uninstall-rulesDATA \
	uninstall-sbinPROGRAMS uninstall-stateDATA \
	uninstall-systemdunitDATA uninstall-udevPROGRAMS


@TOOLS_TRUE@tools/kword.c: tools/parser.h

src/builtin.h: src/genbuiltin $(builtin_sources)
	$(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@

audio/telephony.c: audio/@TELEPHONY_DRIVER@
	$(AM_V_GEN)$(LN_S) $(abs_top_builddir)/$< $@

sap/sap.c: sap/@SAP_DRIVER@
	$(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@

scripts/%.rules:
	$(AM_V_GEN)cp $(subst 97-,,$@) $@

$(lib_libbluetooth_la_OBJECTS): $(local_headers)

lib/bluetooth/%.h: lib/%.h
	$(AM_V_at)$(MKDIR_P) lib/bluetooth
	$(AM_V_GEN)$(LN_S) $(abs_top_builddir)/$< $@

clean-local:
	$(RM) -r lib/bluetooth

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