mongoose/examples/rp2040/pico-rmii/Makefile
Sergio R. Caprile 6db0a502bf Add RMII example
2023-01-09 11:16:01 -03:00

17 lines
304 B
Makefile

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