1 2 3 4 5 6 7 8 9 10
#!/bin/sh set -e find src -name '*.o' -delete rm -f build/system.elf for i in info program; do make "$@" $i done