xref: /btstack/port/windows-h4-zephyr/Makefile (revision a1a856590c8ea50174e7b233540f2ccb7331bb12)
1*a1a85659SMatthias Ringwald# Makefile for windows-h4 examples
2*a1a85659SMatthias RingwaldBTSTACK_ROOT = ../..
3*a1a85659SMatthias Ringwald
4*a1a85659SMatthias RingwaldCORE += main.c btstack_stdin_windows.c
5*a1a85659SMatthias Ringwald
6*a1a85659SMatthias RingwaldCOMMON  += \
7*a1a85659SMatthias Ringwald			btstack_chipset_zephyr.c     \
8*a1a85659SMatthias Ringwald			btstack_link_key_db_fs.c     \
9*a1a85659SMatthias Ringwald			btstack_run_loop_windows.c   \
10*a1a85659SMatthias Ringwald			btstack_uart_block_windows.c \
11*a1a85659SMatthias Ringwald			hci_transport_h4.c           \
12*a1a85659SMatthias Ringwald			le_device_db_fs.c            \
13*a1a85659SMatthias Ringwald
14*a1a85659SMatthias Ringwald# examples
15*a1a85659SMatthias Ringwaldinclude ${BTSTACK_ROOT}/example/Makefile.inc
16*a1a85659SMatthias Ringwald
17*a1a85659SMatthias Ringwald# CC = gcc-fsf-4.9
18*a1a85659SMatthias RingwaldCFLAGS  += -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror
19*a1a85659SMatthias Ringwald# CFLAGS += -Werror
20*a1a85659SMatthias Ringwald
21*a1a85659SMatthias RingwaldCFLAGS += -I${BTSTACK_ROOT}/platform/posix \
22*a1a85659SMatthias Ringwald		  -I${BTSTACK_ROOT}/platform/windows \
23*a1a85659SMatthias Ringwald		  -I${BTSTACK_ROOT}/platform/embedded \
24*a1a85659SMatthias Ringwald		  -I$(BTSTACK_ROOT)/chipset/zephyr \
25*a1a85659SMatthias Ringwald
26*a1a85659SMatthias RingwaldVPATH += ${BTSTACK_ROOT}/platform/windows
27*a1a85659SMatthias RingwaldVPATH += ${BTSTACK_ROOT}/platform/posix
28*a1a85659SMatthias RingwaldVPATH += ${BTSTACK_ROOT}/chipset/zephyr
29*a1a85659SMatthias Ringwald
30*a1a85659SMatthias Ringwaldall: ${EXAMPLES_USING_LE}
31