mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-05 02:49:00 +08:00
10 lines
217 B
Makefile
10 lines
217 B
Makefile
NAME ?= $(notdir $(CURDIR))
|
|
|
|
build:
|
|
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
|
|
cp ./../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
|
|
make -C $(NAME) build
|
|
|
|
clean:
|
|
rm -rf $(NAME)
|