Update Makefile as per the tutorial, enhance it

This commit is contained in:
Sergio R. Caprile 2022-09-22 11:01:40 -03:00
parent 15c5858732
commit 9373e77636

View File

@ -1,9 +1,17 @@
NAME ?= $(notdir $(CURDIR))
build:
$(NAME):
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
build: | $(NAME)
cp ./../../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
make -C $(NAME) build
clean:
rm -rf $(NAME)
flash:
make -C $(NAME) flash
.PHONY: flash