10 lines
186 B
Makefile
10 lines
186 B
Makefile
NAME ?= $(notdir $(CURDIR))
|
|
|
|
build:
|
|
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
|
|
cp ./../../../mongoose.[ch] $(NAME)
|
|
make -C $(NAME) build
|
|
|
|
clean:
|
|
rm -rf $(NAME)
|