mongoose/examples/rp2040/pico-w/Makefile
2023-01-20 15:27:37 -03:00

14 lines
297 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.c $(NAME)
make -C $(NAME) build
clean:
rm -rf $(NAME)