mongoose/examples/zephyr/Makefile

16 lines
303 B
Makefile
Raw Normal View History

2022-03-31 23:58:27 +08:00
CWD = $(realpath $(CURDIR))
ZEPHYR_DIR ?= $(realpath ../../../zephyrproject)
example:
true
build:
cp ../../mongoose.c ../../mongoose.h http-server/src/
cd $(ZEPHYR_DIR) && west build -b nucleo_f746zg -p auto $(CWD)/http-server
2022-04-01 00:26:58 +08:00
flash:
cd $(ZEPHYR_DIR) && west flash
2022-04-01 00:42:09 +08:00
clean:
2022-04-03 07:04:58 +08:00
rm -rf */*/mongoose.*