mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-27 12:49:01 +08:00
14 lines
321 B
Makefile
14 lines
321 B
Makefile
|
|
all: example
|
|
micropython/ports/unix/build-standard/micropython main.py
|
|
|
|
example: micropython
|
|
$(MAKE) -C micropython/ports/unix submodules
|
|
$(MAKE) -C micropython/ports/unix USER_C_MODULES=../../..
|
|
|
|
micropython:
|
|
git clone --depth 1 -b v1.22.2 https://github.com/micropython/micropython.git
|
|
|
|
clean:
|
|
rm -rf micropython
|