diff --git a/example/Makefile.in b/example/Makefile.in index e0aa3af3b..aa9351a1c 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -1,6 +1,6 @@ CC = @CC@ LDFLAGS = @LDFLAGS@ -lBTstack -L../src -CPPFLAGS = @CPPFLAGS@ -I../include +CPPFLAGS = @CPPFLAGS@ -I.. -I../include prefix = @prefix@ all: test rfcomm-cat rfcomm-echo rfcomm-test inquiry l2cap-server l2cap-throughput diff --git a/src/Makefile.in b/src/Makefile.in index 49f9a3fe5..656d15809 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -2,7 +2,7 @@ prefix = @prefix@ CC = @CC@ LDFLAGS = @LDFLAGS@ -CPPFLAGS = @CPPFLAGS@ -I../include +CPPFLAGS = @CPPFLAGS@ -I.. -I../include BTSTACK_LIB_LDFLAGS = @BTSTACK_LIB_LDFLAGS@ BTSTACK_LIB_EXTENSION = @BTSTACK_LIB_EXTENSION@ diff --git a/src/bt_control_iphone.m b/src/bt_control_iphone.m index adc3e1af6..ec80707f8 100644 --- a/src/bt_control_iphone.m +++ b/src/bt_control_iphone.m @@ -40,7 +40,7 @@ * Bluetooth Toggle by BigBoss */ -#include "../config.h" +#include "config.h" #include "bt_control_iphone.h" #include "hci_transport.h" diff --git a/src/btstack_memory.c b/src/btstack_memory.c index e6962bdf1..40a41b129 100644 --- a/src/btstack_memory.c +++ b/src/btstack_memory.c @@ -43,7 +43,7 @@ #include -#include "../config.h" +#include "config.h" #include "hci.h" #include "l2cap.h" #include "rfcomm.h" diff --git a/src/daemon.c b/src/daemon.c index fdfad9e5a..3a46c1256 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -38,7 +38,7 @@ * */ -#include "../config.h" +#include "config.h" #include #include diff --git a/src/debug.h b/src/debug.h index b67de966c..6ae913e3c 100644 --- a/src/debug.h +++ b/src/debug.h @@ -35,7 +35,7 @@ * allow to funnel debug & error messages */ -#include "../config.h" +#include "config.h" #include diff --git a/src/hci.c b/src/hci.c index d9311d762..769cfe131 100644 --- a/src/hci.c +++ b/src/hci.c @@ -36,7 +36,7 @@ * */ -#include "../config.h" +#include "config.h" #include "hci.h" diff --git a/src/hci.h b/src/hci.h index 9169a231b..b330ee2a3 100644 --- a/src/hci.h +++ b/src/hci.h @@ -38,7 +38,7 @@ #pragma once -#include "../config.h" +#include "config.h" #include #include diff --git a/src/hci_cmds.c b/src/hci_cmds.c index 41b852558..326c3084a 100644 --- a/src/hci_cmds.c +++ b/src/hci_cmds.c @@ -40,7 +40,7 @@ #include #include -#include "../config.h" +#include "config.h" #include "hci.h" // calculate combined ogf/ocf value diff --git a/src/hci_dump.c b/src/hci_dump.c index fa6daa421..80720ff37 100644 --- a/src/hci_dump.c +++ b/src/hci_dump.c @@ -44,7 +44,7 @@ #include "hci_dump.h" #include "hci.h" #include "hci_transport.h" -#include "../config.h" +#include "config.h" #ifndef EMBEDDED #include // open diff --git a/src/hci_transport_h4_ehcill_dma.c b/src/hci_transport_h4_ehcill_dma.c index 13cb2db9c..ebc26fe52 100644 --- a/src/hci_transport_h4_ehcill_dma.c +++ b/src/hci_transport_h4_ehcill_dma.c @@ -40,7 +40,7 @@ * Created by Matthias Ringwald on 9/16/11. */ -#include "../config.h" +#include "config.h" #include #include diff --git a/src/hci_transport_usb.c b/src/hci_transport_usb.c index 498a70be5..b95353b5b 100644 --- a/src/hci_transport_usb.c +++ b/src/hci_transport_usb.c @@ -54,7 +54,7 @@ #include -#include "../config.h" +#include "config.h" #include "debug.h" #include "hci.h" diff --git a/src/platform_iphone.m b/src/platform_iphone.m index e2c7f3ca4..59bed0aa3 100644 --- a/src/platform_iphone.m +++ b/src/platform_iphone.m @@ -37,7 +37,7 @@ #include "platform_iphone.h" -#include "../config.h" +#include "config.h" #include "../SpringBoardAccess/SpringBoardAccess.h" #include diff --git a/src/run_loop.c b/src/run_loop.c index a62220820..6c91c0ab7 100644 --- a/src/run_loop.c +++ b/src/run_loop.c @@ -43,7 +43,7 @@ #include "run_loop_private.h" #include "debug.h" -#include "../config.h" +#include "config.h" static run_loop_t * the_run_loop = NULL; diff --git a/src/sdp.h b/src/sdp.h index 332e856a8..d10d36b31 100644 --- a/src/sdp.h +++ b/src/sdp.h @@ -33,7 +33,7 @@ #include #include -#include "../config.h" +#include "config.h" typedef enum { SDP_ErrorResponse = 1, diff --git a/src/socket_connection.c b/src/socket_connection.c index 11966c050..0d0b6b15e 100644 --- a/src/socket_connection.c +++ b/src/socket_connection.c @@ -43,7 +43,7 @@ #include "hci.h" #include "debug.h" -#include "../config.h" +#include "config.h" #include diff --git a/src/utils.c b/src/utils.c index e5e7fa738..dfaa90c8c 100644 --- a/src/utils.c +++ b/src/utils.c @@ -37,7 +37,7 @@ * Created by Matthias Ringwald on 7/23/09. */ -#include "../config.h" +#include "config.h" #include #include #include "debug.h"