mongoose/examples/rp2040/pico-rmii/Makefile

17 lines
304 B
Makefile
Raw Normal View History

2023-01-04 01:14:54 +08:00
SDK_VERSION ?= 1.4.0
SDK_REPO ?= https://github.com/raspberrypi/pico-sdk
all example:
true
build: pico-sdk
test -d build || mkdir build
cd build && cmake .. && make
pico-sdk:
git clone --depth 1 -b $(SDK_VERSION) $(SDK_REPO) $@
cd $@ && git submodule update --init
clean:
rm -rf pico-sdk build