mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-16 08:42:28 +00:00
windows-winusb-intel: add rijndael
This commit is contained in:
parent
766dffb7a9
commit
7b884c89af
@ -4,7 +4,7 @@ BTSTACK_ROOT ?= ../..
|
|||||||
CORE += main.c btstack_stdin_windows.c
|
CORE += main.c btstack_stdin_windows.c
|
||||||
|
|
||||||
COMMON += hci_transport_h2_winusb.c btstack_run_loop_windows.c le_device_db_fs.c btstack_link_key_db_fs.c wav_util.c
|
COMMON += hci_transport_h2_winusb.c btstack_run_loop_windows.c le_device_db_fs.c btstack_link_key_db_fs.c wav_util.c
|
||||||
COMMON += btstack_chipset_intel_firmware.c
|
COMMON += btstack_chipset_intel_firmware.c rijndael.c
|
||||||
|
|
||||||
include ${BTSTACK_ROOT}/example/Makefile.inc
|
include ${BTSTACK_ROOT}/example/Makefile.inc
|
||||||
include ${BTSTACK_ROOT}/chipset/intel/Makefile.inc
|
include ${BTSTACK_ROOT}/chipset/intel/Makefile.inc
|
||||||
@ -17,7 +17,8 @@ CFLAGS += -I${BTSTACK_ROOT}/platform/windows \
|
|||||||
-I${BTSTACK_ROOT}/platform/posix \
|
-I${BTSTACK_ROOT}/platform/posix \
|
||||||
-I${BTSTACK_ROOT}/chipset/intel \
|
-I${BTSTACK_ROOT}/chipset/intel \
|
||||||
-I${BTSTACK_ROOT}/platform/embedded \
|
-I${BTSTACK_ROOT}/platform/embedded \
|
||||||
-I${BTSTACK_ROOT}/3rd-party/tinydir
|
-I${BTSTACK_ROOT}/3rd-party/rijndael \
|
||||||
|
-I${BTSTACK_ROOT}/3rd-party/tinydir
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
||||||
VPATH += ${BTSTACK_ROOT}/platform/posix
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
||||||
@ -25,8 +26,6 @@ VPATH += ${BTSTACK_ROOT}/platform/windows
|
|||||||
VPATH += ${BTSTACK_ROOT}/chipset/csr
|
VPATH += ${BTSTACK_ROOT}/chipset/csr
|
||||||
VPATH += ${BTSTACK_ROOT}/chipset/intel
|
VPATH += ${BTSTACK_ROOT}/chipset/intel
|
||||||
|
|
||||||
EXAMPLES += pan_lwip_http_server
|
|
||||||
|
|
||||||
# use pkg-config for portaudio
|
# use pkg-config for portaudio
|
||||||
# CFLAGS += $(shell pkg-config portaudio-2.0 --cflags) -DHAVE_PORTAUDIO
|
# CFLAGS += $(shell pkg-config portaudio-2.0 --cflags) -DHAVE_PORTAUDIO
|
||||||
# LDFLAGS += $(shell pkg-config portaudio-2.0 --libs)
|
# LDFLAGS += $(shell pkg-config portaudio-2.0 --libs)
|
||||||
@ -36,6 +35,11 @@ EXAMPLES += pan_lwip_http_server
|
|||||||
|
|
||||||
LDFLAGS += -lsetupapi -lwinusb
|
LDFLAGS += -lsetupapi -lwinusb
|
||||||
|
|
||||||
clean: clean-intel
|
EXAMPLES = ${EXAMPLES_GENERAL} ${EXAMPLES_CLASSIC_ONLY} ${EXAMPLES_LE_ONLY} ${EXAMPLES_DUAL_MODE}
|
||||||
|
EXAMPLES += csr_set_bd_addr
|
||||||
|
EXAMPLES += pan_lwip_http_server
|
||||||
|
|
||||||
all: all-intel ${EXAMPLES}
|
csr_set_bd_addr: ${CORE_OBJ} ${COMMON_OBJ} btstack_chipset_csr.o csr_set_bd_addr.o
|
||||||
|
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
|
all: ${EXAMPLES}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user