forked from luetzel/bluez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
9283 lines (8572 loc) · 712 KB
/
Makefile.in
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
# Makefile.in generated by automake 1.14.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
bin_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2) $(am__EXEEXT_3) \
$(am__EXEEXT_4)
noinst_PROGRAMS = $(am__EXEEXT_5) $(am__EXEEXT_6) $(am__EXEEXT_7) \
$(am__EXEEXT_8) $(am__EXEEXT_9) $(am__EXEEXT_13)
libexec_PROGRAMS = src/bluetoothd$(EXEEXT) obexd/src/obexd$(EXEEXT)
@LIBRARY_TRUE@am__append_1 = $(lib_headers)
@LIBRARY_TRUE@am__append_2 = lib/libbluetooth.la
DIST_COMMON = $(srcdir)/Makefile.plugins $(srcdir)/Makefile.tools \
$(srcdir)/Makefile.obexd $(srcdir)/android/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(top_srcdir)/configure $(am__configure_deps) \
$(srcdir)/config.h.in $(top_srcdir)/src/bluetoothd.8.in \
$(top_srcdir)/lib/bluez.pc.in depcomp $(dist_man_MANS) \
$(am__include_HEADERS_DIST) test-driver AUTHORS COPYING \
COPYING.LIB ChangeLog INSTALL NEWS README TODO compile \
config.guess config.sub install-sh missing ltmain.sh
@NFC_TRUE@am__append_3 = neard
@NFC_TRUE@am__append_4 = plugins/neard.c
@SAP_TRUE@am__append_5 = sap
@SAP_TRUE@am__append_6 = profiles/sap/main.c profiles/sap/manager.h \
@SAP_TRUE@ profiles/sap/manager.c profiles/sap/server.h \
@SAP_TRUE@ profiles/sap/server.c profiles/sap/sap.h \
@SAP_TRUE@ profiles/sap/sap-dummy.c
@SAP_TRUE@am__append_7 = profiles/sap/libsap.a
@A2DP_TRUE@am__append_8 = a2dp
@A2DP_TRUE@am__append_9 = profiles/audio/source.h profiles/audio/source.c \
@A2DP_TRUE@ profiles/audio/sink.h profiles/audio/sink.c \
@A2DP_TRUE@ profiles/audio/a2dp.h profiles/audio/a2dp.c \
@A2DP_TRUE@ profiles/audio/avdtp.h profiles/audio/avdtp.c \
@A2DP_TRUE@ profiles/audio/media.h profiles/audio/media.c \
@A2DP_TRUE@ profiles/audio/transport.h profiles/audio/transport.c \
@A2DP_TRUE@ profiles/audio/a2dp-codecs.h
@AVRCP_TRUE@am__append_10 = avrcp
@AVRCP_TRUE@am__append_11 = profiles/audio/control.h profiles/audio/control.c \
@AVRCP_TRUE@ profiles/audio/avctp.h profiles/audio/avctp.c \
@AVRCP_TRUE@ profiles/audio/avrcp.h profiles/audio/avrcp.c \
@AVRCP_TRUE@ profiles/audio/player.h profiles/audio/player.c
@NETWORK_TRUE@am__append_12 = network
@NETWORK_TRUE@am__append_13 = profiles/network/manager.c \
@NETWORK_TRUE@ profiles/network/bnep.h profiles/network/bnep.c \
@NETWORK_TRUE@ profiles/network/server.h profiles/network/server.c \
@NETWORK_TRUE@ profiles/network/connection.h \
@NETWORK_TRUE@ profiles/network/connection.c
@HID_TRUE@am__append_14 = input
@HID_TRUE@am__append_15 = profiles/input/manager.c \
@HID_TRUE@ profiles/input/server.h profiles/input/server.c \
@HID_TRUE@ profiles/input/device.h profiles/input/device.c \
@HID_TRUE@ profiles/input/hidp_defs.h
@HOG_TRUE@am__append_16 = hog
@HOG_TRUE@am__append_17 = profiles/input/hog.c profiles/input/uhid_copy.h \
@HOG_TRUE@ profiles/input/hog-lib.c profiles/input/hog-lib.h \
@HOG_TRUE@ profiles/deviceinfo/dis.c profiles/deviceinfo/dis.h \
@HOG_TRUE@ profiles/battery/bas.c profiles/battery/bas.h \
@HOG_TRUE@ profiles/scanparam/scpp.c profiles/scanparam/scpp.h \
@HOG_TRUE@ profiles/input/suspend.h profiles/input/suspend-none.c
@HOG_TRUE@am__append_18 = profiles/input/suspend-dummy.c
@HEALTH_TRUE@am__append_19 = health
@HEALTH_TRUE@am__append_20 = profiles/health/mcap.h profiles/health/mcap.c \
@HEALTH_TRUE@ profiles/health/hdp_main.c profiles/health/hdp_types.h \
@HEALTH_TRUE@ profiles/health/hdp_manager.h \
@HEALTH_TRUE@ profiles/health/hdp_manager.c \
@HEALTH_TRUE@ profiles/health/hdp.h profiles/health/hdp.c \
@HEALTH_TRUE@ profiles/health/hdp_util.h profiles/health/hdp_util.c
@MIDI_TRUE@am__append_21 = midi
@MIDI_TRUE@am__append_22 = profiles/midi/midi.c \
@MIDI_TRUE@ profiles/midi/libmidi.h \
@MIDI_TRUE@ profiles/midi/libmidi.c
@MIDI_TRUE@am__append_23 = @ALSA_LIBS@
@SIXAXIS_TRUE@am__append_24 = plugins/sixaxis.la
@MAINTAINER_MODE_TRUE@am__append_25 = plugins/external-dummy.la
@CLIENT_TRUE@am__append_26 = client/bluetoothctl
@MONITOR_TRUE@am__append_27 = monitor/btmon
@TESTING_TRUE@am__append_28 = emulator/btvirt emulator/b1ee emulator/hfp \
@TESTING_TRUE@ peripheral/btsensor tools/3dsp \
@TESTING_TRUE@ tools/mgmt-tester tools/gap-tester \
@TESTING_TRUE@ tools/l2cap-tester tools/sco-tester \
@TESTING_TRUE@ tools/smp-tester tools/hci-tester \
@TESTING_TRUE@ tools/rfcomm-tester tools/bnep-tester \
@TESTING_TRUE@ tools/userchan-tester
@TOOLS_TRUE@am__append_29 = tools/rctest tools/l2test tools/l2ping tools/bccmd \
@TOOLS_TRUE@ tools/bluemoon tools/hex2hcd tools/mpris-proxy \
@TOOLS_TRUE@ tools/btattach
@TOOLS_TRUE@am__append_30 = tools/bdaddr tools/avinfo tools/avtest \
@TOOLS_TRUE@ tools/scotest tools/amptest tools/hwdb \
@TOOLS_TRUE@ tools/hcieventmask tools/hcisecfilter \
@TOOLS_TRUE@ tools/btinfo \
@TOOLS_TRUE@ tools/btsnoop tools/btproxy \
@TOOLS_TRUE@ tools/btiotest tools/bneptest tools/mcaptest \
@TOOLS_TRUE@ tools/cltest tools/oobtest tools/seq2bseq \
@TOOLS_TRUE@ tools/nokfw tools/create-image \
@TOOLS_TRUE@ tools/eddystone tools/ibeacon \
@TOOLS_TRUE@ tools/btgatt-client tools/btgatt-server \
@TOOLS_TRUE@ tools/test-runner tools/check-selftest \
@TOOLS_TRUE@ tools/gatt-service profiles/iap/iapd
@TOOLS_TRUE@am__append_31 = tools/rctest.1 tools/l2ping.1 tools/bccmd.1 tools/btattach.1
@TOOLS_TRUE@am__append_32 = tools/bdaddr.1
@DEPRECATED_TRUE@@TOOLS_TRUE@am__append_33 = tools/hciattach tools/hciconfig tools/hcitool tools/hcidump \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/rfcomm tools/sdptool tools/ciptool
@DEPRECATED_TRUE@@TOOLS_TRUE@am__append_34 = tools/hciattach.1 tools/hciconfig.1 \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/hcitool.1 tools/hcidump.1 \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/rfcomm.1 tools/sdptool.1 tools/ciptool.1
@DEPRECATED_FALSE@@TOOLS_TRUE@am__append_35 = tools/hciattach.1 tools/hciconfig.1 \
@DEPRECATED_FALSE@@TOOLS_TRUE@ tools/hcitool.1 tools/hcidump.1 \
@DEPRECATED_FALSE@@TOOLS_TRUE@ tools/rfcomm.1 tools/sdptool.1 tools/ciptool.1
@TOOLS_FALSE@am__append_36 = tools/rctest.1 tools/l2ping.1 tools/bccmd.1 tools/btattach.1
@HID2HCI_TRUE@udev_PROGRAMS = tools/hid2hci$(EXEEXT)
@HID2HCI_TRUE@am__append_37 = tools/hid2hci.1
@HID2HCI_FALSE@am__append_38 = tools/hid2hci.1
@READLINE_TRUE@am__append_39 = tools/btmgmt tools/obex-client-tool tools/obex-server-tool \
@READLINE_TRUE@ tools/bluetooth-player tools/obexctl
@DEPRECATED_TRUE@@READLINE_TRUE@am__append_40 = attrib/gatttool
@CUPS_TRUE@cups_PROGRAMS = profiles/cups/bluetooth$(EXEEXT)
@EXPERIMENTAL_TRUE@am__append_41 = pcsuite
@EXPERIMENTAL_TRUE@am__append_42 = obexd/plugins/pcsuite.c
@OBEX_TRUE@am__append_43 = irmc pbap
@OBEX_TRUE@am__append_44 = obexd/plugins/irmc.c obexd/plugins/pbap.c \
@OBEX_TRUE@ obexd/plugins/vcard.h obexd/plugins/vcard.c \
@OBEX_TRUE@ obexd/plugins/phonebook.h \
@OBEX_TRUE@ obexd/plugins/phonebook-dummy.c
@ANDROID_TRUE@am__append_45 = -DANDROID_VERSION=0x050100
@ANDROID_TRUE@am__append_46 = android/system-emulator \
@ANDROID_TRUE@ android/bluetoothd-snoop android/bluetoothd \
@ANDROID_TRUE@ android/avdtptest android/haltest \
@ANDROID_TRUE@ android/android-tester android/ipc-tester
@ANDROID_TRUE@am__append_47 = android/bluetooth.default.la \
@ANDROID_TRUE@ android/audio.a2dp.default.la \
@ANDROID_TRUE@ android/audio.sco.default.la
@ANDROID_TRUE@am__append_48 = android/test-ipc
@HID2HCI_TRUE@am__append_49 = $(rules_DATA)
@MIDI_TRUE@am__append_50 = unit/test-midi
@MAINTAINER_MODE_TRUE@am__append_51 = $(unit_tests)
TESTS = $(am__EXEEXT_12)
@DBUS_RUN_SESSION_TRUE@am__append_52 = dbus-run-session --
@MANPAGES_TRUE@am__append_53 = $(manual_pages)
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 = src/bluetoothd.8 lib/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_AR_1 =
profiles_sap_libsap_a_AR = $(AR) $(ARFLAGS)
profiles_sap_libsap_a_LIBADD =
am__profiles_sap_libsap_a_SOURCES_DIST = profiles/sap/sap.h \
profiles/sap/sap-u8500.c
am__dirstamp = $(am__leading_dot)dirstamp
@SAP_TRUE@am_profiles_sap_libsap_a_OBJECTS = \
@SAP_TRUE@ profiles/sap/sap-u8500.$(OBJEXT)
profiles_sap_libsap_a_OBJECTS = $(am_profiles_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)$(libdir)" "$(DESTDIR)$(plugindir)" \
"$(DESTDIR)$(bindir)" "$(DESTDIR)$(cupsdir)" \
"$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(udevdir)" \
"$(DESTDIR)$(testdir)" "$(DESTDIR)$(man1dir)" \
"$(DESTDIR)$(man8dir)" "$(DESTDIR)$(confdir)" \
"$(DESTDIR)$(dbusdir)" "$(DESTDIR)$(dbussessionbusdir)" \
"$(DESTDIR)$(dbussystembusdir)" "$(DESTDIR)$(pkgconfigdir)" \
"$(DESTDIR)$(rulesdir)" "$(DESTDIR)$(statedir)" \
"$(DESTDIR)$(systemdsystemunitdir)" \
"$(DESTDIR)$(systemduserunitdir)" "$(DESTDIR)$(includedir)"
LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) \
$(plugin_LTLIBRARIES)
android_audio_a2dp_default_la_DEPENDENCIES =
am__android_audio_a2dp_default_la_SOURCES_DIST = android/audio-msg.h \
android/hal-msg.h android/hal-audio.h android/hal-audio.c \
android/hal-audio-sbc.c android/hal-audio-aptx.c \
android/hardware/audio.h android/hardware/audio_effect.h \
android/hardware/hardware.h android/system/audio.h
@ANDROID_TRUE@am_android_audio_a2dp_default_la_OBJECTS = android/android_audio_a2dp_default_la-hal-audio.lo \
@ANDROID_TRUE@ android/android_audio_a2dp_default_la-hal-audio-sbc.lo \
@ANDROID_TRUE@ android/android_audio_a2dp_default_la-hal-audio-aptx.lo
android_audio_a2dp_default_la_OBJECTS = \
$(am_android_audio_a2dp_default_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
android_audio_a2dp_default_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(android_audio_a2dp_default_la_CFLAGS) $(CFLAGS) \
$(android_audio_a2dp_default_la_LDFLAGS) $(LDFLAGS) -o $@
@ANDROID_TRUE@am_android_audio_a2dp_default_la_rpath = -rpath \
@ANDROID_TRUE@ $(plugindir)
android_audio_sco_default_la_DEPENDENCIES =
am__android_audio_sco_default_la_SOURCES_DIST = android/hal-log.h \
android/sco-msg.h android/hal-sco.c android/hardware/audio.h \
android/hardware/audio_effect.h android/hardware/hardware.h \
android/audio_utils/resampler.c \
android/audio_utils/resampler.h android/system/audio.h
@ANDROID_TRUE@am_android_audio_sco_default_la_OBJECTS = \
@ANDROID_TRUE@ android/android_audio_sco_default_la-hal-sco.lo \
@ANDROID_TRUE@ android/audio_utils/android_audio_sco_default_la-resampler.lo
android_audio_sco_default_la_OBJECTS = \
$(am_android_audio_sco_default_la_OBJECTS)
android_audio_sco_default_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(android_audio_sco_default_la_CFLAGS) $(CFLAGS) \
$(android_audio_sco_default_la_LDFLAGS) $(LDFLAGS) -o $@
@ANDROID_TRUE@am_android_audio_sco_default_la_rpath = -rpath \
@ANDROID_TRUE@ $(plugindir)
android_bluetooth_default_la_LIBADD =
am__android_bluetooth_default_la_SOURCES_DIST = android/hal.h \
android/hal-bluetooth.c android/hal-socket.c \
android/hal-hidhost.c android/hal-health.c android/hal-pan.c \
android/hal-a2dp.c android/hal-a2dp-sink.c android/hal-avrcp.c \
android/hal-avrcp-ctrl.c android/hal-handsfree.c \
android/hal-handsfree-client.c android/hal-gatt.c \
android/hal-map-client.c android/hardware/bluetooth.h \
android/hardware/bt_av.h android/hardware/bt_gatt.h \
android/hardware/bt_gatt_client.h \
android/hardware/bt_gatt_server.h \
android/hardware/bt_gatt_types.h android/hardware/bt_hf.h \
android/hardware/bt_hh.h android/hardware/bt_hl.h \
android/hardware/bt_pan.h android/hardware/bt_rc.h \
android/hardware/bt_sock.h android/hardware/bt_hf_client.h \
android/hardware/bt_mce.h android/hardware/hardware.h \
android/cutils/properties.h android/ipc-common.h \
android/hal-log.h android/hal-ipc.h android/hal-ipc.c \
android/hal-utils.h android/hal-utils.c
@ANDROID_TRUE@am_android_bluetooth_default_la_OBJECTS = android/android_bluetooth_default_la-hal-bluetooth.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-socket.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-hidhost.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-health.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-pan.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-a2dp.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-a2dp-sink.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-avrcp.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-avrcp-ctrl.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-handsfree.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-handsfree-client.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-gatt.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-map-client.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-ipc.lo \
@ANDROID_TRUE@ android/android_bluetooth_default_la-hal-utils.lo
android_bluetooth_default_la_OBJECTS = \
$(am_android_bluetooth_default_la_OBJECTS)
android_bluetooth_default_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(android_bluetooth_default_la_CFLAGS) $(CFLAGS) \
$(android_bluetooth_default_la_LDFLAGS) $(LDFLAGS) -o $@
@ANDROID_TRUE@am_android_bluetooth_default_la_rpath = -rpath \
@ANDROID_TRUE@ $(plugindir)
gdbus_libgdbus_internal_la_LIBADD =
am_gdbus_libgdbus_internal_la_OBJECTS = gdbus/mainloop.lo \
gdbus/watch.lo gdbus/object.lo gdbus/client.lo gdbus/polkit.lo
gdbus_libgdbus_internal_la_OBJECTS = \
$(am_gdbus_libgdbus_internal_la_OBJECTS)
lib_libbluetooth_internal_la_LIBADD =
am__objects_1 =
am__objects_2 = lib/bluetooth.lo lib/hci.lo lib/sdp.lo
am__objects_3 = lib/uuid.lo
am_lib_libbluetooth_internal_la_OBJECTS = $(am__objects_1) \
$(am__objects_2) $(am__objects_1) $(am__objects_3)
lib_libbluetooth_internal_la_OBJECTS = \
$(am_lib_libbluetooth_internal_la_OBJECTS)
lib_libbluetooth_la_LIBADD =
am__lib_libbluetooth_la_SOURCES_DIST = lib/bluetooth.h lib/hci.h \
lib/hci_lib.h lib/sco.h lib/l2cap.h lib/sdp.h lib/sdp_lib.h \
lib/rfcomm.h lib/bnep.h lib/cmtp.h lib/hidp.h lib/bluetooth.c \
lib/hci.c lib/sdp.c
@LIBRARY_TRUE@am_lib_libbluetooth_la_OBJECTS = $(am__objects_1) \
@LIBRARY_TRUE@ $(am__objects_2)
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 $@
@LIBRARY_TRUE@am_lib_libbluetooth_la_rpath = -rpath $(libdir)
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)
plugins_sixaxis_la_LIBADD =
am__plugins_sixaxis_la_SOURCES_DIST = plugins/sixaxis.c
@SIXAXIS_TRUE@am_plugins_sixaxis_la_OBJECTS = \
@SIXAXIS_TRUE@ plugins/plugins_sixaxis_la-sixaxis.lo
plugins_sixaxis_la_OBJECTS = $(am_plugins_sixaxis_la_OBJECTS)
plugins_sixaxis_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(plugins_sixaxis_la_CFLAGS) $(CFLAGS) \
$(plugins_sixaxis_la_LDFLAGS) $(LDFLAGS) -o $@
@SIXAXIS_TRUE@am_plugins_sixaxis_la_rpath = -rpath $(plugindir)
src_libshared_glib_la_LIBADD =
am__objects_4 = src/shared/queue.lo src/shared/util.lo \
src/shared/mgmt.lo src/shared/crypto.lo src/shared/ecc.lo \
src/shared/ringbuf.lo src/shared/tester.lo src/shared/hci.lo \
src/shared/hci-crypto.lo src/shared/hfp.lo src/shared/uhid.lo \
src/shared/pcap.lo src/shared/btsnoop.lo src/shared/ad.lo \
src/shared/att.lo src/shared/gatt-helpers.lo \
src/shared/gatt-client.lo src/shared/gatt-server.lo \
src/shared/gatt-db.lo src/shared/gap.lo
am_src_libshared_glib_la_OBJECTS = $(am__objects_4) \
src/shared/io-glib.lo src/shared/timeout-glib.lo
src_libshared_glib_la_OBJECTS = $(am_src_libshared_glib_la_OBJECTS)
src_libshared_mainloop_la_LIBADD =
am_src_libshared_mainloop_la_OBJECTS = $(am__objects_4) \
src/shared/io-mainloop.lo src/shared/timeout-mainloop.lo \
src/shared/mainloop.lo
src_libshared_mainloop_la_OBJECTS = \
$(am_src_libshared_mainloop_la_OBJECTS)
@CLIENT_TRUE@am__EXEEXT_1 = client/bluetoothctl$(EXEEXT)
@MONITOR_TRUE@am__EXEEXT_2 = monitor/btmon$(EXEEXT)
@TOOLS_TRUE@am__EXEEXT_3 = tools/rctest$(EXEEXT) tools/l2test$(EXEEXT) \
@TOOLS_TRUE@ tools/l2ping$(EXEEXT) tools/bccmd$(EXEEXT) \
@TOOLS_TRUE@ tools/bluemoon$(EXEEXT) tools/hex2hcd$(EXEEXT) \
@TOOLS_TRUE@ tools/mpris-proxy$(EXEEXT) tools/btattach$(EXEEXT)
@DEPRECATED_TRUE@@TOOLS_TRUE@am__EXEEXT_4 = tools/hciattach$(EXEEXT) \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/hciconfig$(EXEEXT) \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/hcitool$(EXEEXT) \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/hcidump$(EXEEXT) \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/rfcomm$(EXEEXT) \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/sdptool$(EXEEXT) \
@DEPRECATED_TRUE@@TOOLS_TRUE@ tools/ciptool$(EXEEXT)
@TESTING_TRUE@am__EXEEXT_5 = emulator/btvirt$(EXEEXT) \
@TESTING_TRUE@ emulator/b1ee$(EXEEXT) emulator/hfp$(EXEEXT) \
@TESTING_TRUE@ peripheral/btsensor$(EXEEXT) tools/3dsp$(EXEEXT) \
@TESTING_TRUE@ tools/mgmt-tester$(EXEEXT) \
@TESTING_TRUE@ tools/gap-tester$(EXEEXT) \
@TESTING_TRUE@ tools/l2cap-tester$(EXEEXT) \
@TESTING_TRUE@ tools/sco-tester$(EXEEXT) \
@TESTING_TRUE@ tools/smp-tester$(EXEEXT) \
@TESTING_TRUE@ tools/hci-tester$(EXEEXT) \
@TESTING_TRUE@ tools/rfcomm-tester$(EXEEXT) \
@TESTING_TRUE@ tools/bnep-tester$(EXEEXT) \
@TESTING_TRUE@ tools/userchan-tester$(EXEEXT)
@TOOLS_TRUE@am__EXEEXT_6 = tools/bdaddr$(EXEEXT) tools/avinfo$(EXEEXT) \
@TOOLS_TRUE@ tools/avtest$(EXEEXT) tools/scotest$(EXEEXT) \
@TOOLS_TRUE@ tools/amptest$(EXEEXT) tools/hwdb$(EXEEXT) \
@TOOLS_TRUE@ tools/hcieventmask$(EXEEXT) \
@TOOLS_TRUE@ tools/hcisecfilter$(EXEEXT) tools/btinfo$(EXEEXT) \
@TOOLS_TRUE@ tools/btsnoop$(EXEEXT) tools/btproxy$(EXEEXT) \
@TOOLS_TRUE@ tools/btiotest$(EXEEXT) tools/bneptest$(EXEEXT) \
@TOOLS_TRUE@ tools/mcaptest$(EXEEXT) tools/cltest$(EXEEXT) \
@TOOLS_TRUE@ tools/oobtest$(EXEEXT) tools/seq2bseq$(EXEEXT) \
@TOOLS_TRUE@ tools/nokfw$(EXEEXT) tools/create-image$(EXEEXT) \
@TOOLS_TRUE@ tools/eddystone$(EXEEXT) tools/ibeacon$(EXEEXT) \
@TOOLS_TRUE@ tools/btgatt-client$(EXEEXT) \
@TOOLS_TRUE@ tools/btgatt-server$(EXEEXT) \
@TOOLS_TRUE@ tools/test-runner$(EXEEXT) \
@TOOLS_TRUE@ tools/check-selftest$(EXEEXT) \
@TOOLS_TRUE@ tools/gatt-service$(EXEEXT) \
@TOOLS_TRUE@ profiles/iap/iapd$(EXEEXT)
@READLINE_TRUE@am__EXEEXT_7 = tools/btmgmt$(EXEEXT) \
@READLINE_TRUE@ tools/obex-client-tool$(EXEEXT) \
@READLINE_TRUE@ tools/obex-server-tool$(EXEEXT) \
@READLINE_TRUE@ tools/bluetooth-player$(EXEEXT) \
@READLINE_TRUE@ tools/obexctl$(EXEEXT)
@DEPRECATED_TRUE@@READLINE_TRUE@am__EXEEXT_8 = \
@DEPRECATED_TRUE@@READLINE_TRUE@ attrib/gatttool$(EXEEXT)
@ANDROID_TRUE@am__EXEEXT_9 = android/system-emulator$(EXEEXT) \
@ANDROID_TRUE@ android/bluetoothd-snoop$(EXEEXT) \
@ANDROID_TRUE@ android/bluetoothd$(EXEEXT) \
@ANDROID_TRUE@ android/avdtptest$(EXEEXT) \
@ANDROID_TRUE@ android/haltest$(EXEEXT) \
@ANDROID_TRUE@ android/android-tester$(EXEEXT) \
@ANDROID_TRUE@ android/ipc-tester$(EXEEXT)
@ANDROID_TRUE@am__EXEEXT_10 = android/test-ipc$(EXEEXT)
@MIDI_TRUE@am__EXEEXT_11 = unit/test-midi$(EXEEXT)
am__EXEEXT_12 = $(am__EXEEXT_10) unit/test-eir$(EXEEXT) \
unit/test-uuid$(EXEEXT) unit/test-textfile$(EXEEXT) \
unit/test-crc$(EXEEXT) unit/test-crypto$(EXEEXT) \
unit/test-ecc$(EXEEXT) unit/test-ringbuf$(EXEEXT) \
unit/test-queue$(EXEEXT) unit/test-mgmt$(EXEEXT) \
unit/test-uhid$(EXEEXT) unit/test-sdp$(EXEEXT) \
unit/test-avdtp$(EXEEXT) unit/test-avctp$(EXEEXT) \
unit/test-avrcp$(EXEEXT) unit/test-hfp$(EXEEXT) \
unit/test-gdbus-client$(EXEEXT) \
unit/test-gobex-header$(EXEEXT) \
unit/test-gobex-packet$(EXEEXT) unit/test-gobex$(EXEEXT) \
unit/test-gobex-transfer$(EXEEXT) \
unit/test-gobex-apparam$(EXEEXT) unit/test-lib$(EXEEXT) \
unit/test-gatt$(EXEEXT) unit/test-hog$(EXEEXT) \
unit/test-gattrib$(EXEEXT) $(am__EXEEXT_11)
@MAINTAINER_MODE_TRUE@am__EXEEXT_13 = $(am__EXEEXT_12)
PROGRAMS = $(bin_PROGRAMS) $(cups_PROGRAMS) $(libexec_PROGRAMS) \
$(noinst_PROGRAMS) $(udev_PROGRAMS)
am__android_android_tester_SOURCES_DIST = emulator/hciemu.h \
emulator/hciemu.c emulator/btdev.h emulator/btdev.c \
emulator/bthost.h emulator/bthost.c emulator/smp.c \
monitor/rfcomm.h android/hardware/hardware.c \
android/tester-bluetooth.c android/tester-socket.c \
android/tester-hidhost.c android/tester-pan.c \
android/tester-hdp.c android/tester-a2dp.c \
android/tester-avrcp.c android/tester-gatt.c \
android/tester-map-client.c android/tester-main.h \
android/tester-main.c
@ANDROID_TRUE@am_android_android_tester_OBJECTS = emulator/android_android_tester-hciemu.$(OBJEXT) \
@ANDROID_TRUE@ emulator/android_android_tester-btdev.$(OBJEXT) \
@ANDROID_TRUE@ emulator/android_android_tester-bthost.$(OBJEXT) \
@ANDROID_TRUE@ emulator/android_android_tester-smp.$(OBJEXT) \
@ANDROID_TRUE@ android/hardware/android_android_tester-hardware.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-bluetooth.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-socket.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-hidhost.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-pan.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-hdp.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-a2dp.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-avrcp.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-gatt.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-map-client.$(OBJEXT) \
@ANDROID_TRUE@ android/android_android_tester-tester-main.$(OBJEXT)
android_android_tester_OBJECTS = $(am_android_android_tester_OBJECTS)
@ANDROID_TRUE@android_android_tester_DEPENDENCIES = \
@ANDROID_TRUE@ lib/libbluetooth-internal.la \
@ANDROID_TRUE@ src/libshared-glib.la
android_android_tester_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(android_android_tester_CFLAGS) $(CFLAGS) \
$(android_android_tester_LDFLAGS) $(LDFLAGS) -o $@
am__android_avdtptest_SOURCES_DIST = android/avdtptest.c src/log.h \
src/log.c btio/btio.h btio/btio.c src/shared/util.h \
src/shared/util.c src/shared/queue.h src/shared/queue.c \
android/avdtp.h android/avdtp.c
@ANDROID_TRUE@am_android_avdtptest_OBJECTS = \
@ANDROID_TRUE@ android/android_avdtptest-avdtptest.$(OBJEXT) \
@ANDROID_TRUE@ src/android_avdtptest-log.$(OBJEXT) \
@ANDROID_TRUE@ btio/android_avdtptest-btio.$(OBJEXT) \
@ANDROID_TRUE@ src/shared/android_avdtptest-util.$(OBJEXT) \
@ANDROID_TRUE@ src/shared/android_avdtptest-queue.$(OBJEXT) \
@ANDROID_TRUE@ android/android_avdtptest-avdtp.$(OBJEXT)
android_avdtptest_OBJECTS = $(am_android_avdtptest_OBJECTS)
@ANDROID_TRUE@android_avdtptest_DEPENDENCIES = \
@ANDROID_TRUE@ lib/libbluetooth-internal.la
android_avdtptest_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(android_avdtptest_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
-o $@
am__android_bluetoothd_SOURCES_DIST = android/main.c src/log.c \
android/hal-msg.h android/audio-msg.h android/sco-msg.h \
android/utils.h src/sdpd-database.c src/sdpd-server.c \
src/sdpd-service.c src/sdpd-request.c src/uuid-helper.h \
src/uuid-helper.c src/eir.h src/eir.c android/bluetooth.h \
android/bluetooth.c android/hidhost.h android/hidhost.c \
profiles/scanparam/scpp.h profiles/scanparam/scpp.c \
profiles/deviceinfo/dis.h profiles/deviceinfo/dis.c \
profiles/battery/bas.h profiles/battery/bas.c \
profiles/input/hog-lib.h profiles/input/hog-lib.c \
android/ipc-common.h android/ipc.h android/ipc.c \
android/avdtp.h android/avdtp.c android/a2dp.h android/a2dp.c \
android/a2dp-sink.h android/a2dp-sink.c android/avctp.h \
android/avctp.c android/avrcp.h android/avrcp.c \
android/avrcp-lib.h android/avrcp-lib.c android/socket.h \
android/socket.c android/sco.h android/sco.c android/pan.h \
android/pan.c android/handsfree.h android/handsfree.c \
android/handsfree-client.c android/handsfree-client.h \
android/gatt.h android/gatt.c android/health.h \
android/health.c profiles/health/mcap.h profiles/health/mcap.c \
android/map-client.h android/map-client.c attrib/att.c \
attrib/att.h attrib/gatt.c attrib/gatt.h attrib/gattrib.c \
attrib/gattrib.h btio/btio.h btio/btio.c src/sdp-client.h \
src/sdp-client.c profiles/network/bnep.h \
profiles/network/bnep.c
@ANDROID_TRUE@am_android_bluetoothd_OBJECTS = android/main.$(OBJEXT) \
@ANDROID_TRUE@ src/log.$(OBJEXT) src/sdpd-database.$(OBJEXT) \
@ANDROID_TRUE@ src/sdpd-server.$(OBJEXT) \
@ANDROID_TRUE@ src/sdpd-service.$(OBJEXT) \
@ANDROID_TRUE@ src/sdpd-request.$(OBJEXT) \
@ANDROID_TRUE@ src/uuid-helper.$(OBJEXT) src/eir.$(OBJEXT) \
@ANDROID_TRUE@ android/bluetooth.$(OBJEXT) \
@ANDROID_TRUE@ android/hidhost.$(OBJEXT) \
@ANDROID_TRUE@ profiles/scanparam/scpp.$(OBJEXT) \
@ANDROID_TRUE@ profiles/deviceinfo/dis.$(OBJEXT) \
@ANDROID_TRUE@ profiles/battery/bas.$(OBJEXT) \
@ANDROID_TRUE@ profiles/input/hog-lib.$(OBJEXT) \
@ANDROID_TRUE@ android/ipc.$(OBJEXT) android/avdtp.$(OBJEXT) \
@ANDROID_TRUE@ android/a2dp.$(OBJEXT) \
@ANDROID_TRUE@ android/a2dp-sink.$(OBJEXT) \
@ANDROID_TRUE@ android/avctp.$(OBJEXT) android/avrcp.$(OBJEXT) \
@ANDROID_TRUE@ android/avrcp-lib.$(OBJEXT) \
@ANDROID_TRUE@ android/socket.$(OBJEXT) android/sco.$(OBJEXT) \
@ANDROID_TRUE@ android/pan.$(OBJEXT) \
@ANDROID_TRUE@ android/handsfree.$(OBJEXT) \
@ANDROID_TRUE@ android/handsfree-client.$(OBJEXT) \
@ANDROID_TRUE@ android/gatt.$(OBJEXT) android/health.$(OBJEXT) \
@ANDROID_TRUE@ profiles/health/mcap.$(OBJEXT) \
@ANDROID_TRUE@ android/map-client.$(OBJEXT) \
@ANDROID_TRUE@ attrib/att.$(OBJEXT) attrib/gatt.$(OBJEXT) \
@ANDROID_TRUE@ attrib/gattrib.$(OBJEXT) btio/btio.$(OBJEXT) \
@ANDROID_TRUE@ src/sdp-client.$(OBJEXT) \
@ANDROID_TRUE@ profiles/network/bnep.$(OBJEXT)
android_bluetoothd_OBJECTS = $(am_android_bluetoothd_OBJECTS)
@ANDROID_TRUE@android_bluetoothd_DEPENDENCIES = \
@ANDROID_TRUE@ lib/libbluetooth-internal.la \
@ANDROID_TRUE@ src/libshared-glib.la
am__android_bluetoothd_snoop_SOURCES_DIST = \
android/bluetoothd-snoop.c src/log.c
@ANDROID_TRUE@am_android_bluetoothd_snoop_OBJECTS = \
@ANDROID_TRUE@ android/bluetoothd-snoop.$(OBJEXT) \
@ANDROID_TRUE@ src/log.$(OBJEXT)
android_bluetoothd_snoop_OBJECTS = \
$(am_android_bluetoothd_snoop_OBJECTS)
@ANDROID_TRUE@android_bluetoothd_snoop_DEPENDENCIES = \
@ANDROID_TRUE@ src/libshared-mainloop.la
am__android_haltest_SOURCES_DIST = android/client/haltest.c \
android/client/pollhandler.h android/client/pollhandler.c \
android/client/terminal.h android/client/terminal.c \
android/client/history.h android/client/history.c \
android/client/tabcompletion.c android/client/if-main.h \
android/client/if-av.c android/client/if-av-sink.c \
android/client/if-rc.c android/client/if-rc-ctrl.c \
android/client/if-bt.c android/client/if-gatt.c \
android/client/if-hf.c android/client/if-hf-client.c \
android/client/if-hh.c android/client/if-pan.c \
android/client/if-hl.c android/client/if-sock.c \
android/client/if-audio.c android/client/if-sco.c \
android/client/if-mce.c android/hardware/hardware.c \
android/hal-utils.h android/hal-utils.c
@ANDROID_TRUE@am_android_haltest_OBJECTS = android/client/android_haltest-haltest.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-pollhandler.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-terminal.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-history.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-tabcompletion.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-av.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-av-sink.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-rc.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-rc-ctrl.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-bt.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-gatt.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-hf.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-hf-client.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-hh.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-pan.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-hl.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-sock.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-audio.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-sco.$(OBJEXT) \
@ANDROID_TRUE@ android/client/android_haltest-if-mce.$(OBJEXT) \
@ANDROID_TRUE@ android/hardware/android_haltest-hardware.$(OBJEXT) \
@ANDROID_TRUE@ android/android_haltest-hal-utils.$(OBJEXT)
android_haltest_OBJECTS = $(am_android_haltest_OBJECTS)
android_haltest_LDADD = $(LDADD)
android_haltest_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(android_haltest_CFLAGS) $(CFLAGS) $(android_haltest_LDFLAGS) \
$(LDFLAGS) -o $@
am__android_ipc_tester_SOURCES_DIST = emulator/hciemu.h \
emulator/hciemu.c emulator/btdev.h emulator/btdev.c \
emulator/bthost.h emulator/bthost.c emulator/smp.c \
android/hal-utils.h android/hal-utils.c android/ipc-common.h \
android/ipc-tester.c
@ANDROID_TRUE@am_android_ipc_tester_OBJECTS = \
@ANDROID_TRUE@ emulator/android_ipc_tester-hciemu.$(OBJEXT) \
@ANDROID_TRUE@ emulator/android_ipc_tester-btdev.$(OBJEXT) \
@ANDROID_TRUE@ emulator/android_ipc_tester-bthost.$(OBJEXT) \
@ANDROID_TRUE@ emulator/android_ipc_tester-smp.$(OBJEXT) \
@ANDROID_TRUE@ android/android_ipc_tester-hal-utils.$(OBJEXT) \
@ANDROID_TRUE@ android/android_ipc_tester-ipc-tester.$(OBJEXT)
android_ipc_tester_OBJECTS = $(am_android_ipc_tester_OBJECTS)
@ANDROID_TRUE@android_ipc_tester_DEPENDENCIES = \
@ANDROID_TRUE@ lib/libbluetooth-internal.la \
@ANDROID_TRUE@ src/libshared-glib.la
android_ipc_tester_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(android_ipc_tester_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
am__android_system_emulator_SOURCES_DIST = android/system-emulator.c
@ANDROID_TRUE@am_android_system_emulator_OBJECTS = \
@ANDROID_TRUE@ android/system-emulator.$(OBJEXT)
android_system_emulator_OBJECTS = \
$(am_android_system_emulator_OBJECTS)
@ANDROID_TRUE@android_system_emulator_DEPENDENCIES = \
@ANDROID_TRUE@ src/libshared-mainloop.la
am__android_test_ipc_SOURCES_DIST = android/test-ipc.c src/log.h \
src/log.c android/ipc-common.h android/ipc.c android/ipc.h
@ANDROID_TRUE@am_android_test_ipc_OBJECTS = \
@ANDROID_TRUE@ android/test-ipc.$(OBJEXT) src/log.$(OBJEXT) \
@ANDROID_TRUE@ android/ipc.$(OBJEXT)
android_test_ipc_OBJECTS = $(am_android_test_ipc_OBJECTS)
@ANDROID_TRUE@android_test_ipc_DEPENDENCIES = src/libshared-glib.la
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 client/display.c \
client/display.h
@DEPRECATED_TRUE@@READLINE_TRUE@am_attrib_gatttool_OBJECTS = \
@DEPRECATED_TRUE@@READLINE_TRUE@ attrib/gatttool.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ attrib/att.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ attrib/gatt.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ attrib/gattrib.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ btio/btio.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ attrib/interactive.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ attrib/utils.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ src/log.$(OBJEXT) \
@DEPRECATED_TRUE@@READLINE_TRUE@ client/display.$(OBJEXT)
attrib_gatttool_OBJECTS = $(am_attrib_gatttool_OBJECTS)
@DEPRECATED_TRUE@@READLINE_TRUE@attrib_gatttool_DEPENDENCIES = \
@DEPRECATED_TRUE@@READLINE_TRUE@ lib/libbluetooth-internal.la \
@DEPRECATED_TRUE@@READLINE_TRUE@ src/libshared-glib.la
am__client_bluetoothctl_SOURCES_DIST = client/main.c client/display.h \
client/display.c client/agent.h client/agent.c \
client/advertising.h client/advertising.c client/gatt.h \
client/gatt.c monitor/uuid.h monitor/uuid.c
@CLIENT_TRUE@am_client_bluetoothctl_OBJECTS = client/main.$(OBJEXT) \
@CLIENT_TRUE@ client/display.$(OBJEXT) client/agent.$(OBJEXT) \
@CLIENT_TRUE@ client/advertising.$(OBJEXT) \
@CLIENT_TRUE@ client/gatt.$(OBJEXT) monitor/uuid.$(OBJEXT)
client_bluetoothctl_OBJECTS = $(am_client_bluetoothctl_OBJECTS)
@CLIENT_TRUE@client_bluetoothctl_DEPENDENCIES = \
@CLIENT_TRUE@ gdbus/libgdbus-internal.la
am__emulator_b1ee_SOURCES_DIST = emulator/b1ee.c
@TESTING_TRUE@am_emulator_b1ee_OBJECTS = emulator/b1ee.$(OBJEXT)
emulator_b1ee_OBJECTS = $(am_emulator_b1ee_OBJECTS)
@TESTING_TRUE@emulator_b1ee_DEPENDENCIES = src/libshared-mainloop.la
am__emulator_btvirt_SOURCES_DIST = emulator/main.c monitor/bt.h \
emulator/serial.h emulator/serial.c emulator/server.h \
emulator/server.c emulator/vhci.h emulator/vhci.c \
emulator/btdev.h emulator/btdev.c emulator/bthost.h \
emulator/bthost.c emulator/smp.c emulator/phy.h emulator/phy.c \
emulator/amp.h emulator/amp.c emulator/le.h emulator/le.c
@TESTING_TRUE@am_emulator_btvirt_OBJECTS = emulator/main.$(OBJEXT) \
@TESTING_TRUE@ emulator/serial.$(OBJEXT) \
@TESTING_TRUE@ emulator/server.$(OBJEXT) \
@TESTING_TRUE@ emulator/vhci.$(OBJEXT) emulator/btdev.$(OBJEXT) \
@TESTING_TRUE@ emulator/bthost.$(OBJEXT) emulator/smp.$(OBJEXT) \
@TESTING_TRUE@ emulator/phy.$(OBJEXT) emulator/amp.$(OBJEXT) \
@TESTING_TRUE@ emulator/le.$(OBJEXT)
emulator_btvirt_OBJECTS = $(am_emulator_btvirt_OBJECTS)
@TESTING_TRUE@emulator_btvirt_DEPENDENCIES = \
@TESTING_TRUE@ lib/libbluetooth-internal.la \
@TESTING_TRUE@ src/libshared-mainloop.la
am__emulator_hfp_SOURCES_DIST = emulator/hfp.c
@TESTING_TRUE@am_emulator_hfp_OBJECTS = emulator/hfp.$(OBJEXT)
emulator_hfp_OBJECTS = $(am_emulator_hfp_OBJECTS)
@TESTING_TRUE@emulator_hfp_DEPENDENCIES = src/libshared-mainloop.la
am__monitor_btmon_SOURCES_DIST = monitor/main.c monitor/bt.h \
monitor/display.h monitor/display.c monitor/hcidump.h \
monitor/hcidump.c monitor/ellisys.h monitor/ellisys.c \
monitor/control.h monitor/control.c monitor/packet.h \
monitor/packet.c monitor/vendor.h monitor/vendor.c \
monitor/lmp.h monitor/lmp.c monitor/crc.h monitor/crc.c \
monitor/ll.h monitor/ll.c monitor/l2cap.h monitor/l2cap.c \
monitor/sdp.h monitor/sdp.c monitor/avctp.h monitor/avctp.c \
monitor/avdtp.h monitor/avdtp.c monitor/a2dp.h monitor/a2dp.c \
monitor/rfcomm.h monitor/rfcomm.c monitor/bnep.h \
monitor/bnep.c monitor/uuid.h monitor/uuid.c monitor/hwdb.h \
monitor/hwdb.c monitor/keys.h monitor/keys.c monitor/analyze.h \
monitor/analyze.c monitor/intel.h monitor/intel.c \
monitor/broadcom.h monitor/broadcom.c monitor/tty.h
@MONITOR_TRUE@am_monitor_btmon_OBJECTS = monitor/main.$(OBJEXT) \
@MONITOR_TRUE@ monitor/display.$(OBJEXT) \
@MONITOR_TRUE@ monitor/hcidump.$(OBJEXT) \
@MONITOR_TRUE@ monitor/ellisys.$(OBJEXT) \
@MONITOR_TRUE@ monitor/control.$(OBJEXT) \
@MONITOR_TRUE@ monitor/packet.$(OBJEXT) \
@MONITOR_TRUE@ monitor/vendor.$(OBJEXT) monitor/lmp.$(OBJEXT) \
@MONITOR_TRUE@ monitor/crc.$(OBJEXT) monitor/ll.$(OBJEXT) \
@MONITOR_TRUE@ monitor/l2cap.$(OBJEXT) monitor/sdp.$(OBJEXT) \
@MONITOR_TRUE@ monitor/avctp.$(OBJEXT) monitor/avdtp.$(OBJEXT) \
@MONITOR_TRUE@ monitor/a2dp.$(OBJEXT) monitor/rfcomm.$(OBJEXT) \
@MONITOR_TRUE@ monitor/bnep.$(OBJEXT) monitor/uuid.$(OBJEXT) \
@MONITOR_TRUE@ monitor/hwdb.$(OBJEXT) monitor/keys.$(OBJEXT) \
@MONITOR_TRUE@ monitor/analyze.$(OBJEXT) \
@MONITOR_TRUE@ monitor/intel.$(OBJEXT) \
@MONITOR_TRUE@ monitor/broadcom.$(OBJEXT)
monitor_btmon_OBJECTS = $(am_monitor_btmon_OBJECTS)
@MONITOR_TRUE@monitor_btmon_DEPENDENCIES = \
@MONITOR_TRUE@ lib/libbluetooth-internal.la \
@MONITOR_TRUE@ src/libshared-mainloop.la
am__obexd_src_obexd_SOURCES_DIST = btio/btio.h btio/btio.c \
gobex/gobex.h gobex/gobex.c gobex/gobex-defs.h \
gobex/gobex-defs.c gobex/gobex-packet.c gobex/gobex-packet.h \
gobex/gobex-header.c gobex/gobex-header.h \
gobex/gobex-transfer.c gobex/gobex-debug.h \
gobex/gobex-apparam.c gobex/gobex-apparam.h \
obexd/plugins/filesystem.c obexd/plugins/filesystem.h \
obexd/plugins/bluetooth.c obexd/plugins/pcsuite.c \
obexd/plugins/opp.c obexd/plugins/ftp.c obexd/plugins/ftp.h \
obexd/plugins/irmc.c obexd/plugins/pbap.c \
obexd/plugins/vcard.h obexd/plugins/vcard.c \
obexd/plugins/phonebook.h obexd/plugins/phonebook-dummy.c \
obexd/plugins/mas.c obexd/src/map_ap.h \
obexd/plugins/messages.h obexd/plugins/messages-dummy.c \
obexd/client/mns.c obexd/client/map-event.h obexd/src/main.c \
obexd/src/obexd.h obexd/src/plugin.h obexd/src/plugin.c \
obexd/src/log.h obexd/src/log.c obexd/src/manager.h \
obexd/src/manager.c obexd/src/obex.h obexd/src/obex.c \
obexd/src/obex-priv.h obexd/src/mimetype.h \
obexd/src/mimetype.c obexd/src/service.h obexd/src/service.c \
obexd/src/transport.h obexd/src/transport.c obexd/src/server.h \
obexd/src/server.c obexd/client/manager.h \
obexd/client/manager.c obexd/client/session.h \
obexd/client/session.c obexd/client/bluetooth.h \
obexd/client/bluetooth.c obexd/client/sync.h \
obexd/client/sync.c obexd/client/pbap.h obexd/client/pbap.c \
obexd/client/ftp.h obexd/client/ftp.c obexd/client/opp.h \
obexd/client/opp.c obexd/client/map.h obexd/client/map.c \
obexd/client/map-event.c obexd/client/transfer.h \
obexd/client/transfer.c obexd/client/transport.h \
obexd/client/transport.c obexd/client/dbus.h \
obexd/client/dbus.c obexd/client/driver.h \
obexd/client/driver.c
am__objects_5 = btio/obexd-btio.$(OBJEXT)
am__objects_6 = gobex/obexd-gobex.$(OBJEXT) \
gobex/obexd-gobex-defs.$(OBJEXT) \
gobex/obexd-gobex-packet.$(OBJEXT) \
gobex/obexd-gobex-header.$(OBJEXT) \
gobex/obexd-gobex-transfer.$(OBJEXT) \
gobex/obexd-gobex-apparam.$(OBJEXT)
@EXPERIMENTAL_TRUE@am__objects_7 = \
@EXPERIMENTAL_TRUE@ obexd/plugins/obexd-pcsuite.$(OBJEXT)
@OBEX_TRUE@am__objects_8 = obexd/plugins/obexd-irmc.$(OBJEXT) \
@OBEX_TRUE@ obexd/plugins/obexd-pbap.$(OBJEXT) \
@OBEX_TRUE@ obexd/plugins/obexd-vcard.$(OBJEXT) \
@OBEX_TRUE@ obexd/plugins/obexd-phonebook-dummy.$(OBJEXT)
am__objects_9 = obexd/plugins/obexd-filesystem.$(OBJEXT) \
obexd/plugins/obexd-bluetooth.$(OBJEXT) $(am__objects_7) \
obexd/plugins/obexd-opp.$(OBJEXT) \
obexd/plugins/obexd-ftp.$(OBJEXT) $(am__objects_8) \
obexd/plugins/obexd-mas.$(OBJEXT) \
obexd/plugins/obexd-messages-dummy.$(OBJEXT) \
obexd/client/obexd-mns.$(OBJEXT)
am_obexd_src_obexd_OBJECTS = $(am__objects_5) $(am__objects_6) \
$(am__objects_9) obexd/src/obexd-main.$(OBJEXT) \
obexd/src/obexd-plugin.$(OBJEXT) obexd/src/obexd-log.$(OBJEXT) \
obexd/src/obexd-manager.$(OBJEXT) \
obexd/src/obexd-obex.$(OBJEXT) \
obexd/src/obexd-mimetype.$(OBJEXT) \
obexd/src/obexd-service.$(OBJEXT) \
obexd/src/obexd-transport.$(OBJEXT) \
obexd/src/obexd-server.$(OBJEXT) \
obexd/client/obexd-manager.$(OBJEXT) \
obexd/client/obexd-session.$(OBJEXT) \
obexd/client/obexd-bluetooth.$(OBJEXT) \
obexd/client/obexd-sync.$(OBJEXT) \
obexd/client/obexd-pbap.$(OBJEXT) \
obexd/client/obexd-ftp.$(OBJEXT) \
obexd/client/obexd-opp.$(OBJEXT) \
obexd/client/obexd-map.$(OBJEXT) \
obexd/client/obexd-map-event.$(OBJEXT) \
obexd/client/obexd-transfer.$(OBJEXT) \
obexd/client/obexd-transport.$(OBJEXT) \
obexd/client/obexd-dbus.$(OBJEXT) \
obexd/client/obexd-driver.$(OBJEXT)
am__objects_10 = $(am__objects_1)
nodist_obexd_src_obexd_OBJECTS = $(am__objects_10)
obexd_src_obexd_OBJECTS = $(am_obexd_src_obexd_OBJECTS) \
$(nodist_obexd_src_obexd_OBJECTS)
obexd_src_obexd_DEPENDENCIES = lib/libbluetooth-internal.la \
gdbus/libgdbus-internal.la
obexd_src_obexd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(obexd_src_obexd_CFLAGS) $(CFLAGS) $(obexd_src_obexd_LDFLAGS) \
$(LDFLAGS) -o $@
am__peripheral_btsensor_SOURCES_DIST = peripheral/main.c \
peripheral/efivars.h peripheral/efivars.c peripheral/attach.h \
peripheral/attach.c peripheral/log.h peripheral/log.c \
peripheral/gap.h peripheral/gap.c peripheral/gatt.h \
peripheral/gatt.c
@TESTING_TRUE@am_peripheral_btsensor_OBJECTS = \
@TESTING_TRUE@ peripheral/main.$(OBJEXT) \
@TESTING_TRUE@ peripheral/efivars.$(OBJEXT) \
@TESTING_TRUE@ peripheral/attach.$(OBJEXT) \
@TESTING_TRUE@ peripheral/log.$(OBJEXT) \
@TESTING_TRUE@ peripheral/gap.$(OBJEXT) \
@TESTING_TRUE@ peripheral/gatt.$(OBJEXT)
peripheral_btsensor_OBJECTS = $(am_peripheral_btsensor_OBJECTS)
@TESTING_TRUE@peripheral_btsensor_DEPENDENCIES = \
@TESTING_TRUE@ src/libshared-mainloop.la \
@TESTING_TRUE@ lib/libbluetooth-internal.la
am__profiles_cups_bluetooth_SOURCES_DIST = profiles/cups/main.c \
profiles/cups/cups.h profiles/cups/sdp.c profiles/cups/spp.c \
profiles/cups/hcrp.c
@CUPS_TRUE@am_profiles_cups_bluetooth_OBJECTS = \
@CUPS_TRUE@ profiles/cups/main.$(OBJEXT) \
@CUPS_TRUE@ profiles/cups/sdp.$(OBJEXT) \
@CUPS_TRUE@ profiles/cups/spp.$(OBJEXT) \
@CUPS_TRUE@ profiles/cups/hcrp.$(OBJEXT)
profiles_cups_bluetooth_OBJECTS = \
$(am_profiles_cups_bluetooth_OBJECTS)
@CUPS_TRUE@profiles_cups_bluetooth_DEPENDENCIES = \
@CUPS_TRUE@ lib/libbluetooth-internal.la \
@CUPS_TRUE@ gdbus/libgdbus-internal.la
am__profiles_iap_iapd_SOURCES_DIST = profiles/iap/main.c
@TOOLS_TRUE@am_profiles_iap_iapd_OBJECTS = \
@TOOLS_TRUE@ profiles/iap/main.$(OBJEXT)
profiles_iap_iapd_OBJECTS = $(am_profiles_iap_iapd_OBJECTS)
@TOOLS_TRUE@profiles_iap_iapd_DEPENDENCIES = \
@TOOLS_TRUE@ gdbus/libgdbus-internal.la
am__src_bluetoothd_SOURCES_DIST = plugins/hostname.c plugins/wiimote.c \
plugins/autopair.c plugins/policy.c plugins/neard.c \
profiles/sap/main.c profiles/sap/manager.h \
profiles/sap/manager.c profiles/sap/server.h \
profiles/sap/server.c profiles/sap/sap.h \
profiles/sap/sap-dummy.c profiles/audio/source.h \
profiles/audio/source.c profiles/audio/sink.h \
profiles/audio/sink.c profiles/audio/a2dp.h \
profiles/audio/a2dp.c profiles/audio/avdtp.h \
profiles/audio/avdtp.c profiles/audio/media.h \
profiles/audio/media.c profiles/audio/transport.h \
profiles/audio/transport.c profiles/audio/a2dp-codecs.h \
profiles/audio/control.h profiles/audio/control.c \
profiles/audio/avctp.h profiles/audio/avctp.c \
profiles/audio/avrcp.h profiles/audio/avrcp.c \
profiles/audio/player.h profiles/audio/player.c \
profiles/network/manager.c profiles/network/bnep.h \
profiles/network/bnep.c profiles/network/server.h \
profiles/network/server.c profiles/network/connection.h \
profiles/network/connection.c profiles/input/manager.c \
profiles/input/server.h profiles/input/server.c \
profiles/input/device.h profiles/input/device.c \
profiles/input/hidp_defs.h profiles/input/hog.c \
profiles/input/uhid_copy.h profiles/input/hog-lib.c \
profiles/input/hog-lib.h profiles/deviceinfo/dis.c \
profiles/deviceinfo/dis.h profiles/battery/bas.c \
profiles/battery/bas.h profiles/scanparam/scpp.c \
profiles/scanparam/scpp.h profiles/input/suspend.h \
profiles/input/suspend-none.c profiles/health/mcap.h \
profiles/health/mcap.c profiles/health/hdp_main.c \
profiles/health/hdp_types.h profiles/health/hdp_manager.h \
profiles/health/hdp_manager.c profiles/health/hdp.h \
profiles/health/hdp.c profiles/health/hdp_util.h \
profiles/health/hdp_util.c profiles/gap/gas.c \
profiles/scanparam/scan.c profiles/deviceinfo/deviceinfo.c \
profiles/midi/midi.c profiles/midi/libmidi.h \
profiles/midi/libmidi.c attrib/att.h attrib/att-database.h \
attrib/att.c attrib/gatt.h attrib/gatt.c attrib/gattrib.h \
attrib/gattrib.c attrib/gatt-service.h attrib/gatt-service.c \
btio/btio.h btio/btio.c src/bluetooth.ver src/main.c src/log.h \
src/log.c src/backtrace.h src/backtrace.c src/systemd.h \
src/systemd.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/gatt-database.h src/gatt-database.c src/sdp-xml.h \
src/sdp-xml.c src/sdp-client.h src/sdp-client.c src/textfile.h \
src/textfile.c src/uuid-helper.h src/uuid-helper.c \
src/uinput.h src/plugin.h src/plugin.c src/storage.h \
src/storage.c src/advertising.h src/advertising.c src/agent.h \
src/agent.c src/error.h src/error.c src/adapter.h \
src/adapter.c src/profile.h src/profile.c src/service.h \
src/service.c src/gatt-client.h src/gatt-client.c src/device.h \
src/device.c src/dbus-common.c src/dbus-common.h src/eir.h \
src/eir.c
@NFC_TRUE@am__objects_11 = plugins/bluetoothd-neard.$(OBJEXT)
@SAP_TRUE@am__objects_12 = profiles/sap/bluetoothd-main.$(OBJEXT) \
@SAP_TRUE@ profiles/sap/bluetoothd-manager.$(OBJEXT) \
@SAP_TRUE@ profiles/sap/bluetoothd-server.$(OBJEXT) \
@SAP_TRUE@ profiles/sap/bluetoothd-sap-dummy.$(OBJEXT)
@A2DP_TRUE@am__objects_13 = \
@A2DP_TRUE@ profiles/audio/bluetoothd-source.$(OBJEXT) \
@A2DP_TRUE@ profiles/audio/bluetoothd-sink.$(OBJEXT) \
@A2DP_TRUE@ profiles/audio/bluetoothd-a2dp.$(OBJEXT) \
@A2DP_TRUE@ profiles/audio/bluetoothd-avdtp.$(OBJEXT) \
@A2DP_TRUE@ profiles/audio/bluetoothd-media.$(OBJEXT) \
@A2DP_TRUE@ profiles/audio/bluetoothd-transport.$(OBJEXT)
@AVRCP_TRUE@am__objects_14 = \
@AVRCP_TRUE@ profiles/audio/bluetoothd-control.$(OBJEXT) \
@AVRCP_TRUE@ profiles/audio/bluetoothd-avctp.$(OBJEXT) \
@AVRCP_TRUE@ profiles/audio/bluetoothd-avrcp.$(OBJEXT) \
@AVRCP_TRUE@ profiles/audio/bluetoothd-player.$(OBJEXT)
@NETWORK_TRUE@am__objects_15 = \
@NETWORK_TRUE@ profiles/network/bluetoothd-manager.$(OBJEXT) \
@NETWORK_TRUE@ profiles/network/bluetoothd-bnep.$(OBJEXT) \
@NETWORK_TRUE@ profiles/network/bluetoothd-server.$(OBJEXT) \
@NETWORK_TRUE@ profiles/network/bluetoothd-connection.$(OBJEXT)
@HID_TRUE@am__objects_16 = \
@HID_TRUE@ profiles/input/bluetoothd-manager.$(OBJEXT) \
@HID_TRUE@ profiles/input/bluetoothd-server.$(OBJEXT) \