Revert "remove a pair of obsolete make targets"

This reverts commit d33d61d5029d03ceb20e37a7930d694e04bcf720.
tmp/arduino-cli-pre-rebase
Jesse Vincent 4 years ago
parent a93361486b
commit f8c297d19b
No known key found for this signature in database
GPG Key ID: CC228463465E40BC

@ -466,6 +466,26 @@ find_all_sketches () {
done | sort
}
build_all () {
plugins="$(find_all_sketches)"
for plugin in ${plugins}; do
export SKETCH="${plugin}"
$0 "${plugin}" build
done
}
compile_all () {
plugins="$(find_all_sketches)"
for plugin in ${plugins}; do
export SKETCH="${plugin}"
$0 "${plugin}" compile
done
}
size () {
compile

Loading…
Cancel
Save