mongoose/examples/raspberry/raspberry-pi-pico-w/Makefile
2022-10-20 11:57:00 -03:00

15 lines
320 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:
make -C $(NAME) clean
rm -rf $(NAME)