You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
374 B
Makefile
22 lines
374 B
Makefile
# Uncomment lines below if you have problems with $PATH
|
|
#SHELL := /bin/bash
|
|
#PATH := /usr/local/bin:$(PATH)
|
|
|
|
all:
|
|
pio.exe -f -c vim run
|
|
|
|
upload:
|
|
pio.exe -f -c vim run --target upload
|
|
|
|
clean:
|
|
pio.exe -f -c vim run --target clean
|
|
|
|
program:
|
|
pio.exe -f -c vim run --target program
|
|
|
|
uploadfs:
|
|
pio.exe -f -c vim run --target uploadfs
|
|
|
|
update:
|
|
pio.exe -f -c vim update
|