xref: /haiku/src/add-ons/kernel/bluetooth/hci/Jamfile (revision 820dca4df6c7bf955c46e8f6521b9408f50b2900)
1SubDir HAIKU_TOP src add-ons kernel bluetooth hci ;
2
3UsePrivateKernelHeaders ;
4UsePrivateHeaders net bluetooth ;
5UsePrivateHeaders [ FDirName kernel arch $(TARGET_KERNEL_ARCH) ] ;
6UsePrivateHeaders [ FDirName kernel boot platform $(TARGET_BOOT_PLATFORM) ] ;
7
8# disable debug output, if debugging is disabled
9if $(DEBUG) = 0 {
10	SubDirCcFlags [ FDefines DEBUG_MAX_LEVEL_FLOW=0 DEBUG_MAX_LEVEL_INFO=0  ] ;
11}
12
13KernelAddon hci :
14	bluetooth.cpp
15	acl.cpp
16;
17