Add a 'compile-all target, so that smoke output can get to a single line

per sucessful compile
pull/597/head
Jesse Vincent 6 years ago
parent 8ab5aa52dd
commit 01e3793d39

@ -328,6 +328,18 @@ build_all () {
done
}
compile_all () {
plugins="$(_find_all)"
for plugin in ${plugins}; do
export SKETCH="${plugin}"
export LIBRARY="${plugin}"
$0 "${plugin}" compile
done
}
size () {
if [ ! -e "${HEX_FILE_PATH}" ]; then
compile

Loading…
Cancel
Save