mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-13 07:59:00 +08:00
14 lines
300 B
Makefile
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)
|