mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-18 03:18:10 +08:00
23 lines
475 B
Makefile
23 lines
475 B
Makefile
RM = rm -rf
|
|
MKBUILD = rm -rf build && mkdir -p build # test -d build || mkdir build
|
|
ifeq ($(OS),Windows_NT)
|
|
RM = cmd /C del /Q /F /S
|
|
MKBUILD = if not exist build mkdir build
|
|
endif
|
|
|
|
all example:
|
|
true
|
|
|
|
build: pico-sdk build/firmware.uf2
|
|
|
|
build/firmware.uf2:
|
|
$(MKBUILD)
|
|
cd build && cmake -G "Unix Makefiles" .. && make
|
|
|
|
pico-sdk:
|
|
git clone --depth 1 -b 1.5.1 https://github.com/raspberrypi/pico-sdk $@
|
|
cd $@ && git submodule update --init
|
|
|
|
clean:
|
|
$(RM) pico-sdk build
|