windows-winusb-intel: add rijndael

This commit is contained in:
Matthias Ringwald 2020-06-22 14:57:51 +02:00
parent 766dffb7a9
commit 7b884c89af

View File

@ -4,7 +4,7 @@ BTSTACK_ROOT ?= ../..
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 += btstack_chipset_intel_firmware.c
COMMON += btstack_chipset_intel_firmware.c rijndael.c
include ${BTSTACK_ROOT}/example/Makefile.inc
include ${BTSTACK_ROOT}/chipset/intel/Makefile.inc
@ -17,6 +17,7 @@ CFLAGS += -I${BTSTACK_ROOT}/platform/windows \
-I${BTSTACK_ROOT}/platform/posix \
-I${BTSTACK_ROOT}/chipset/intel \
-I${BTSTACK_ROOT}/platform/embedded \
-I${BTSTACK_ROOT}/3rd-party/rijndael \
-I${BTSTACK_ROOT}/3rd-party/tinydir
VPATH += ${BTSTACK_ROOT}/platform/embedded
@ -25,8 +26,6 @@ VPATH += ${BTSTACK_ROOT}/platform/windows
VPATH += ${BTSTACK_ROOT}/chipset/csr
VPATH += ${BTSTACK_ROOT}/chipset/intel
EXAMPLES += pan_lwip_http_server
# use pkg-config for portaudio
# CFLAGS += $(shell pkg-config portaudio-2.0 --cflags) -DHAVE_PORTAUDIO
# LDFLAGS += $(shell pkg-config portaudio-2.0 --libs)
@ -36,6 +35,11 @@ EXAMPLES += pan_lwip_http_server
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}