diff --git a/port/windows-h4/Makefile b/port/windows-h4/Makefile index a88b9d2cc..a757d015a 100644 --- a/port/windows-h4/Makefile +++ b/port/windows-h4/Makefile @@ -52,6 +52,8 @@ VPATH += ${BTSTACK_ROOT}/chipset/em9301 VPATH += ${BTSTACK_ROOT}/chipset/stlc2500d VPATH += ${BTSTACK_ROOT}/chipset/tc3566x +EXAMPLES += pan_lwip_http_server + # assume portaudio is installed in /usr/local # CFLAGS += -I/usr/local/include -DHAVE_PORTAUDIO # LDFLAGS += -L/sw/lib -lportaudio diff --git a/port/windows-winusb-intel/Makefile b/port/windows-winusb-intel/Makefile index e24275322..368400f30 100644 --- a/port/windows-winusb-intel/Makefile +++ b/port/windows-winusb-intel/Makefile @@ -25,6 +25,8 @@ 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) diff --git a/port/windows-winusb/Makefile b/port/windows-winusb/Makefile index 598800466..1ec5ee58f 100644 --- a/port/windows-winusb/Makefile +++ b/port/windows-winusb/Makefile @@ -36,6 +36,8 @@ LDFLAGS += -lsetupapi -lwinusb # csr_set_bd_addr EXAMPLES += csr_set_bd_addr +EXAMPLES += pan_lwip_http_server + csr_set_bd_addr: ${CORE_OBJ} ${COMMON_OBJ} btstack_chipset_csr.o csr_set_bd_addr.o ${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@