mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 01:29:00 +08:00
17 lines
312 B
Makefile
17 lines
312 B
Makefile
CWD = $(realpath $(CURDIR))
|
|
ZEPHYR_DIR ?= $(realpath ../../../../../../zephyrproject)
|
|
BOARD ?= nucleo_h743zi
|
|
|
|
example:
|
|
true
|
|
|
|
build:
|
|
cp ../../../mongoose.c ../../../mongoose.h src/
|
|
cd $(ZEPHYR_DIR) && west build -b $(BOARD) -p auto $(CWD)
|
|
|
|
flash:
|
|
cd $(ZEPHYR_DIR) && west flash
|
|
|
|
clean:
|
|
rm -rf */*/mongoose.*
|