mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-08 12:50:52 +00:00
18 lines
630 B
Makefile
18 lines
630 B
Makefile
bin_PROGRAMS = test mitm
|
|
|
|
test_SOURCES = test.c \
|
|
../src/btstack.c \
|
|
../src/hci_cmds.c \
|
|
../src/linked_list.c \
|
|
../src/run_loop.c \
|
|
../src/socket_connection.c \
|
|
../src/utils.c
|
|
|
|
mitm_SOURCES = mitm.c \
|
|
../src/btstack.c \
|
|
../src/hci_cmds.c \
|
|
../src/linked_list.c \
|
|
../src/run_loop.c \
|
|
../src/socket_connection.c \
|
|
../src/utils.c
|