build: move sbc related files to its own directory
authorLuiz Augusto von Dentz <luiz.dentz-von@nokia.com>
Mon, 14 Mar 2011 17:46:10 +0000 (14:46 -0300)
committerLuiz Augusto von Dentz <luiz.dentz-von@nokia.com>
Mon, 14 Mar 2011 17:52:52 +0000 (14:52 -0300)
This should make it easier to apply patches from BlueZ which also uses
sbc subdir for this files.

12 files changed:
src/Makefile.am
src/modules/bluetooth/module-bluetooth-device.c
src/modules/bluetooth/sbc/sbc.c [moved from src/modules/bluetooth/sbc.c with 100% similarity]
src/modules/bluetooth/sbc/sbc.h [moved from src/modules/bluetooth/sbc.h with 100% similarity]
src/modules/bluetooth/sbc/sbc_math.h [moved from src/modules/bluetooth/sbc_math.h with 100% similarity]
src/modules/bluetooth/sbc/sbc_primitives.c [moved from src/modules/bluetooth/sbc_primitives.c with 100% similarity]
src/modules/bluetooth/sbc/sbc_primitives.h [moved from src/modules/bluetooth/sbc_primitives.h with 100% similarity]
src/modules/bluetooth/sbc/sbc_primitives_mmx.c [moved from src/modules/bluetooth/sbc_primitives_mmx.c with 100% similarity]
src/modules/bluetooth/sbc/sbc_primitives_mmx.h [moved from src/modules/bluetooth/sbc_primitives_mmx.h with 100% similarity]
src/modules/bluetooth/sbc/sbc_primitives_neon.c [moved from src/modules/bluetooth/sbc_primitives_neon.c with 100% similarity]
src/modules/bluetooth/sbc/sbc_primitives_neon.h [moved from src/modules/bluetooth/sbc_primitives_neon.h with 100% similarity]
src/modules/bluetooth/sbc/sbc_tables.h [moved from src/modules/bluetooth/sbc_tables.h with 100% similarity]

index 2ab6355..d4a7283 100644 (file)
@@ -1820,7 +1820,7 @@ module_bluetooth_discover_la_LDFLAGS = $(MODULE_LDFLAGS)
 module_bluetooth_discover_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS) libbluetooth-util.la
 module_bluetooth_discover_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS)
 
-libbluetooth_sbc_la_SOURCES = modules/bluetooth/sbc.c modules/bluetooth/sbc.h modules/bluetooth/sbc_tables.h modules/bluetooth/sbc_math.h modules/bluetooth/sbc_primitives.h modules/bluetooth/sbc_primitives.c modules/bluetooth/sbc_primitives_mmx.h modules/bluetooth/sbc_primitives_neon.h modules/bluetooth/sbc_primitives_mmx.c modules/bluetooth/sbc_primitives_neon.c
+libbluetooth_sbc_la_SOURCES = modules/bluetooth/sbc/sbc.c modules/bluetooth/sbc/sbc.h modules/bluetooth/sbc/sbc_tables.h modules/bluetooth/sbc/sbc_math.h modules/bluetooth/sbc/sbc_primitives.h modules/bluetooth/sbc/sbc_primitives.c modules/bluetooth/sbc/sbc_primitives_mmx.h modules/bluetooth/sbc/sbc_primitives_neon.h modules/bluetooth/sbc/sbc_primitives_mmx.c modules/bluetooth/sbc/sbc_primitives_neon.c
 libbluetooth_sbc_la_LDFLAGS = -avoid-version
 libbluetooth_sbc_la_LIBADD = $(MODULE_LIBADD)
 libbluetooth_sbc_la_CFLAGS = $(AM_CFLAGS)
index 86aaa46..d29e29b 100644 (file)
@@ -51,7 +51,7 @@
 
 #include "module-bluetooth-device-symdef.h"
 #include "ipc.h"
-#include "sbc.h"
+#include "sbc/sbc.h"
 #include "rtp.h"
 #include "bluetooth-util.h"