mongoose/examples/stm32/stm32-nucleo-f429z/Makefile
2022-09-12 17:29:47 -03:00

18 lines
287 B
Makefile

NAME ?= $(notdir $(CURDIR))
$(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