Makefile (497cc6820f2b96c87ee960e5e6f6ed2fd997b473) Makefile (ec422a3a4976e7a9c71e76dbd16a721dd3ee46fa)
1 # Makefile for libusb based examples
2BTSTACK_ROOT = ../..
3
4ATT += \
5 att_dispatch.c \
6 att_db.c \
7 att_server.c \
8 gatt_bearer.c \

--- 24 unchanged lines hidden (view full) ---

33
34
35CFLAGS += -g -DUNIT_TEST -Wall \
36 -I$(BTSTACK_ROOT)/platform/embedded \
37 -I$(BTSTACK_ROOT)/platform/posix \
38 -I$(BTSTACK_ROOT)/3rd-party/tinydir \
39 -I$(BTSTACK_ROOT)/3rd-party/rijndael \
40
1 # Makefile for libusb based examples
2BTSTACK_ROOT = ../..
3
4ATT += \
5 att_dispatch.c \
6 att_db.c \
7 att_server.c \
8 gatt_bearer.c \

--- 24 unchanged lines hidden (view full) ---

33
34
35CFLAGS += -g -DUNIT_TEST -Wall \
36 -I$(BTSTACK_ROOT)/platform/embedded \
37 -I$(BTSTACK_ROOT)/platform/posix \
38 -I$(BTSTACK_ROOT)/3rd-party/tinydir \
39 -I$(BTSTACK_ROOT)/3rd-party/rijndael \
40
41CFLAGS += -fprofile-arcs -ftest-coverage
41CFLAGS += -fprofile-arcs -ftest-coverage -fsanitize=address,undefined
42
43CFLAGS += -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Wunused-parameter -Wredundant-decls -Wsign-compare -Wimplicit-fallthrough
44
45VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael
46VPATH += ${BTSTACK_ROOT}/src/mesh
47VPATH += ${BTSTACK_ROOT}/src/classic
48VPATH += ${BTSTACK_ROOT}/platform/posix
49VPATH += ${BTSTACK_ROOT}/platform/embedded

--- 49 unchanged lines hidden ---
42
43CFLAGS += -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Wunused-parameter -Wredundant-decls -Wsign-compare -Wimplicit-fallthrough
44
45VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael
46VPATH += ${BTSTACK_ROOT}/src/mesh
47VPATH += ${BTSTACK_ROOT}/src/classic
48VPATH += ${BTSTACK_ROOT}/platform/posix
49VPATH += ${BTSTACK_ROOT}/platform/embedded

--- 49 unchanged lines hidden ---