mongoose/examples/rp2040/pico-w/Makefile
2023-05-26 20:45:08 -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)