mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-07 09:55:45 +00:00
41 lines
1.4 KiB
Makefile
41 lines
1.4 KiB
Makefile
CC = g++
|
|
|
|
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
|
|
|
BTSTACK_ROOT = ../..
|
|
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
|
|
|
CFLAGS = -g -Wall -I. -I${BTSTACK_ROOT}/example/libusb -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
|
LDFLAGS += -L$(CPPUTEST_HOME) -lCppUTest -lCppUTestExt
|
|
|
|
COMMON = \
|
|
${BTSTACK_ROOT}/src/utils.c \
|
|
${BTSTACK_ROOT}/src/btstack_memory.c \
|
|
${BTSTACK_ROOT}/src/memory_pool.c \
|
|
${BTSTACK_ROOT}/src/linked_list.c \
|
|
${BTSTACK_ROOT}/src/sdp_util.c \
|
|
${BTSTACK_ROOT}/src/remote_device_db_memory.c \
|
|
${BTSTACK_ROOT}/src/run_loop.c \
|
|
${BTSTACK_ROOT}/src/run_loop_posix.c \
|
|
${BTSTACK_ROOT}/src/hci_cmds.c \
|
|
${BTSTACK_ROOT}/ble/att_dispatch.c \
|
|
${BTSTACK_ROOT}/ble/att.c \
|
|
${BTSTACK_ROOT}/ble/ad_parser.c \
|
|
${BTSTACK_ROOT}/ble/gatt_client.c \
|
|
${BTSTACK_ROOT}/example/libusb/ble_client.c \
|
|
|
|
COMMON_OBJ = $(COMMON:.c=.o)
|
|
|
|
all: ad_parser le_central
|
|
|
|
ad_parser: ${CORE_OBJ} ${COMMON_OBJ} advertising_data_parser.c
|
|
${CC} ${CORE_OBJ} ${COMMON_OBJ} advertising_data_parser.c ${CFLAGS} ${LDFLAGS} -o $@
|
|
|
|
le_central: ${CORE_OBJ} ${COMMON_OBJ} central.c
|
|
${CC} ${CORE_OBJ} ${COMMON_OBJ} central.c ${CFLAGS} ${LDFLAGS} -o $@
|
|
|
|
clean:
|
|
rm -f ad_parser le_central
|
|
rm -f *.o ${BTSTACK_ROOT}/src/*.o
|
|
rm -rf *.dSYM
|
|
|