mongoose/examples/pico-sdk/pico-w/Makefile
2024-11-08 14:34:33 -03:00

14 lines
300 B
Makefile

NAME = raspberry-pi-pico-w
$(NAME):
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
build: | $(NAME)
cp ./../../../mongoose.[ch] $(NAME)
cp ./../../device-dashboard/packed_fs.c $(NAME)
cp ./../../device-dashboard/net.[ch] $(NAME)
make -C $(NAME) build
clean:
rm -rf $(NAME)