mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 17:20:30 +08:00
17 lines
260 B
Makefile
17 lines
260 B
Makefile
all:
|
|
platformio run --environment $(if $(E),$(E),serial_prod)
|
|
|
|
update:
|
|
platformio platform update
|
|
|
|
install: upload
|
|
upload:
|
|
platformio run --environment $(if $(E),$(E),serial_prod) --target upload
|
|
|
|
clean-all: clean
|
|
clean:
|
|
rm -rf .pio
|
|
|
|
help:
|
|
@ cat Makefile
|