mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-01 09:08:06 +00:00
13 lines
513 B
Makefile
13 lines
513 B
Makefile
|
BTSTACK_ROOT=../../../../
|
||
|
|
||
|
all: btstack/command_builder.py btstack/event_factory.py
|
||
|
|
||
|
btstack/command_builder.py: ${BTSTACK_ROOT}/tool/python_generator.py ${BTSTACK_ROOT}/src/bluetooth.h ${BTSTACK_ROOT}/src/btstack_defines.h
|
||
|
${BTSTACK_ROOT}/tool/python_generator.py
|
||
|
|
||
|
btstack/event_factory.py: ${BTSTACK_ROOT}/tool/python_generator.py ${BTSTACK_ROOT}/src/bluetooth.h ${BTSTACK_ROOT}/src/btstack_defines.h
|
||
|
${BTSTACK_ROOT}/tool/python_generator.py
|
||
|
|
||
|
clean:
|
||
|
rm -f btstack/command_builder.py btstack/event_factory.py
|